From d42a310d51f2495a046e3559ec3980b48924d88b Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sun, 22 Oct 2023 12:42:51 -0500 Subject: [PATCH] corrects valuable names --- vars/declarativeFunctions.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/declarativeFunctions.groovy b/vars/declarativeFunctions.groovy index 0f66070..06763ba 100644 --- a/vars/declarativeFunctions.groovy +++ b/vars/declarativeFunctions.groovy @@ -68,7 +68,7 @@ def readSecret (Map config) { returnStdout: true, script: """#Read Secret set +x - kubectl get secret "${config.secretName}" -o jsonpath={".data.${configSecretID}"} | base64 -d + kubectl get secret "${config.secret}" -o jsonpath={".data.${config.secretID}"} | base64 -d """ ) return output