We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c6f780f + a679215 commit 19097a7Copy full SHA for 19097a7
src/integration-tests/bash/cleanup.sh
@@ -437,6 +437,12 @@ echo "@@ RESULT_ROOT=$RESULT_ROOT TMP_DIR=$TMP_DIR RESULT_DIR=$RESULT_DIR PROJEC
437
438
mkdir -p $TMP_DIR || fail No permision to create directory $TMP_DIR
439
440
+# if helm is installed, delete all installed helm charts
441
+if [ -x "$(command -v helm)" ]; then
442
+ echo @@ Deleting installed helm charts
443
+ helm list --short | xargs -L1 helm delete --purge
444
+fi
445
+
446
# first, try to delete with labels since the conversion is that all created resources need to
447
# have the proper label(s)
448
echo @@ Starting deleteWithLabels
0 commit comments