escape periods in secret ids

This commit is contained in:
Hyatt 2023-10-22 13:21:04 -05:00
parent d42a310d51
commit 8dbc5150f7
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -64,11 +64,12 @@ def readSecret (Map config) {
serverUrl: config.kubeURL,
namespace: config.namespace
]) {
def safeSecretID = config.secretID.replaceAll(/\./, "\.")
def output = sh(
returnStdout: true,
script: """#Read Secret
set +x
kubectl get secret "${config.secret}" -o jsonpath={".data.${config.secretID}"} | base64 -d
kubectl get secret "${config.secret}" -o jsonpath={".data.${safeSecretID}"} | base64 -d
"""
)
return output