From 7107706003eaacfe789470d16e179589013046bb Mon Sep 17 00:00:00 2001 From: Morgan Kleene Date: Tue, 7 Jan 2025 12:37:44 -0500 Subject: [PATCH 1/3] Update action.yaml --- test/start-up-with-containers/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/start-up-with-containers/action.yaml b/test/start-up-with-containers/action.yaml index 939de0e76..4305002c6 100644 --- a/test/start-up-with-containers/action.yaml +++ b/test/start-up-with-containers/action.yaml @@ -79,7 +79,7 @@ runs: printf 'adding the following keys:\n [%s]\n[%s] \n' "${keys}" "${keyring}" - yq_command=$(printf '(.services.kas.keyring |= . + %s) | (.server.cryptoProvider.standard.keys |= . + %s)' "${keyring}" "${keys}") + yq_command=$(printf '(.services.kas.keyring = . + %s) | (.server.cryptoProvider.standard.keys = . + %s)' "${keyring}" "${keys}") opentdf.yaml yq e "${yq_command}" From 51f8c50aa610e73b1a880368ef1b80704f3900c3 Mon Sep 17 00:00:00 2001 From: Morgan Kleene Date: Tue, 7 Jan 2025 13:10:28 -0500 Subject: [PATCH 2/3] Update action.yaml --- test/start-up-with-containers/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/start-up-with-containers/action.yaml b/test/start-up-with-containers/action.yaml index 4305002c6..29d63fc42 100644 --- a/test/start-up-with-containers/action.yaml +++ b/test/start-up-with-containers/action.yaml @@ -79,7 +79,7 @@ runs: printf 'adding the following keys:\n [%s]\n[%s] \n' "${keys}" "${keyring}" - yq_command=$(printf '(.services.kas.keyring = . + %s) | (.server.cryptoProvider.standard.keys = . + %s)' "${keyring}" "${keys}") + yq_command="$(printf '(.services.kas.keyring = . + %s) | (.server.cryptoProvider.standard.keys = . + %s)' "${keyring}" "${keys}")" opentdf.yaml yq e "${yq_command}" From db8f4d117b4561bfe19028415976f6f15746d5d8 Mon Sep 17 00:00:00 2001 From: Morgan Kleene Date: Tue, 7 Jan 2025 13:16:09 -0500 Subject: [PATCH 3/3] Update action.yaml --- test/start-up-with-containers/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/start-up-with-containers/action.yaml b/test/start-up-with-containers/action.yaml index 29d63fc42..6130bb842 100644 --- a/test/start-up-with-containers/action.yaml +++ b/test/start-up-with-containers/action.yaml @@ -79,7 +79,7 @@ runs: printf 'adding the following keys:\n [%s]\n[%s] \n' "${keys}" "${keyring}" - yq_command="$(printf '(.services.kas.keyring = . + %s) | (.server.cryptoProvider.standard.keys = . + %s)' "${keyring}" "${keys}")" + yq_command="$(printf '(.services.kas.keyring = %s) | (.server.cryptoProvider.standard.keys = %s)' "${keyring}" "${keys}")" opentdf.yaml yq e "${yq_command}"