milvus/tests/python_client/chaos/scripts/install_milvus.sh
zhuwenxing 9944268ab3
[skip ci]Fix chaos test (#12031)
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
2021-11-17 20:31:14 +08:00

9 lines
348 B
Bash

release=${1:-"milvs-chaos"}
ns=${2:-"chaos-testing"}
bash uninstall_milvus.sh ${release} ${ns}|| true
helm repo add milvus https://milvus-io.github.io/milvus-helm/
helm repo update
helm install --wait --timeout 360s ${release} milvus/milvus --set service.type=NodePort -f ../cluster-values.yaml --set metrics.serviceMonitor.enabled=true -n=${ns}