This commit is contained in:
Hyatt 2023-10-22 14:06:28 -05:00
parent 209ed2e264
commit 4353e44d2c
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -69,7 +69,7 @@ def readSecret (Map config) {
returnStdout: true,
script: """#Read Secret
set -x
kubectl get secret "${config.secret}" -o jsonpath={".data.${safeSecretID}"} | base64 -d
kubectl get secret "${config.secretName}" -o jsonpath={".data.${safeSecretID}"} | base64 -d
"""
)
return output