diff --git a/createHelmYaml.sh b/createHelmYaml.sh index ca4e70b..fdbcab0 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 -v=8 -f - + helm template -g . --set-json="subchartData=$(yq '.dependencies[0]' Chart.yaml -ojson | jq -rc)" | kubectl apply -f - elif [[ "$action" == "debug" ]]; then echo "# dumping files" find . -type f -print -exec cat {} \;