Update createHelmYaml.sh
All checks were successful
Build docker container / Build image (push) Successful in 12s

This commit is contained in:
ties 2024-08-27 12:31:50 +00:00
parent 3c3d1481bb
commit e8ef4cc402

View File

@ -65,6 +65,9 @@ elif [[ "$action" == "deploy" ]] && [[ -n "$KUBECONFIG_DATA" ]]; then
elif [[ "$action" == "deploy" ]]; then elif [[ "$action" == "deploy" ]]; then
echo "# no .kube/config set" echo "# no .kube/config set"
kubectl version --client=true kubectl version --client=true
elif [[ "$action" == "debug" ]]; then
echo "# dumping files"
find . -type f -print -exec cat {} \;
else else
echo "# invalid action" echo "# invalid action"
fi fi