diff --git a/test/start-up-with-containers/action.yaml b/test/start-up-with-containers/action.yaml index 873aad6a3..e077eec6b 100644 --- a/test/start-up-with-containers/action.yaml +++ b/test/start-up-with-containers/action.yaml @@ -59,8 +59,6 @@ runs: echo "${private_pem}" >"${private_path}" echo "${cert_pem}" >"${cert_path}" - - cat "${private_path}" "${cert_path}" chmod a+r "${private_path}" "${cert_path}" keylist_command="$(printf '{kid, alg, private: "%s", cert: "%s"}' "${private_path}" "${cert_path}")" @@ -83,7 +81,7 @@ runs: cat kas-private.pem - printf 'adding the following extra keys: %s-%s\n' "${extra_keys}" "${extra_keyring}" + printf 'adding the following extra keys:\n [%s]\n[%s] \n' "${extra_keys}" "${extra_keyring}" yq_command=$(printf '(.services.kas.keyring = [{"kid":"ec1","alg":"ec:secp256r1"},{"kid":"r1","alg":"rsa:2048"}] + %s) | (.server.cryptoProvider.standard.keys = [{"kid":"ec1","alg":"ec:secp256r1","private":"kas-ec-private.pem","cert":"kas-ec-cert.pem"},{"kid":"r1","alg":"rsa:2048","private":"kas-private.pem","cert":"kas-cert.pem"}] + %s)' "${extra_keyring}" "${extra_keys}")