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

View File

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