mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
9 lines
255 B
Bash
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}
|