Fix decode command call

This commit is contained in:
2020-05-05 20:12:50 +10:00
parent 9e1c105f1f
commit 151a536d0b
+1 -1
View File
@@ -3,7 +3,7 @@
: "${KUBE_CONFIG_DATA?Must be specified}"
# Extract the base64 encoded config data and write this to the KUBECONFIG
echo "$KUBE_CONFIG_DATA" | base64 --decode > /tmp/config
echo "$KUBE_CONFIG_DATA" | base64 -d > /tmp/config
export KUBECONFIG=/tmp/config