adds echo to see why its failing

This commit is contained in:
Hyatt 2023-10-22 13:54:05 -05:00
parent cf01628256
commit e43f1af83f
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

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