milvus/tests/python_client/chaos/scripts/uninstall_milvus.sh
Jenny Li ce24795511
[skip ci] Add comment for uninstall_milvus.sh (#11896)
Signed-off-by: Jenny Li <jing.li@zilliz.com>
2021-11-16 15:09:10 +08:00

9 lines
255 B
Bash

# Exit immediately for non zero status
set -e
release=${1:-"milvus-chaos"}
ns=${2:-"chaos-testing"}
helm uninstall ${release} -n=${ns}
kubectl delete pvc -l release=${release} -n=${ns}
kubectl delete pvc -l app.kubernetes.io/instance=${release} -n=${ns}