From 9aacc107cc8c34aac70abc324c792dfd15504dd9 Mon Sep 17 00:00:00 2001 From: ties Date: Thu, 29 Aug 2024 09:16:52 +0000 Subject: [PATCH] Update createHelmYaml.sh --- createHelmYaml.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/createHelmYaml.sh b/createHelmYaml.sh index fdbcab0..ca4e70b 100644 --- a/createHelmYaml.sh +++ b/createHelmYaml.sh @@ -75,7 +75,7 @@ elif [[ "$action" == "helm-print" ]]; then elif [[ "$action" == "helm-deploy" ]]; then helm dependency build . helm template -g . --set-json="subchartData=$(yq '.dependencies[0]' Chart.yaml -ojson | jq -rc)" - helm template -g . --set-json="subchartData=$(yq '.dependencies[0]' Chart.yaml -ojson | jq -rc)" | kubectl apply -f - + helm template -g . --set-json="subchartData=$(yq '.dependencies[0]' Chart.yaml -ojson | jq -rc)" | kubectl apply -v=8 -f - elif [[ "$action" == "debug" ]]; then echo "# dumping files" find . -type f -print -exec cat {} \;