From f99bfb5653aa4f77c884cc481059c0b9e32da2e9 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Fri, 1 Apr 2022 21:23:39 -0500 Subject: [PATCH] Secrets should be quiet. --- vars/declarativeFunctions.groovy | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vars/declarativeFunctions.groovy b/vars/declarativeFunctions.groovy index 57a5ed8..f5daf1d 100644 --- a/vars/declarativeFunctions.groovy +++ b/vars/declarativeFunctions.groovy @@ -40,7 +40,10 @@ def createSecret (Map config) { serverUrl: config.kubeURL, namespace: config.namespace ]) { - sh "printf '%s\n' \"" + config.secret + "\" | kubectl apply -f -" + sh """ + set +x + printf '%s\n' \"" + config.secret + "\" | kubectl apply -f -" + """ } }