diff --git a/tests/python_client/chaos/scripts/install_milvus_cluster.sh b/tests/python_client/chaos/scripts/install_milvus_cluster.sh index 4ce5a63433..43874d453f 100644 --- a/tests/python_client/chaos/scripts/install_milvus_cluster.sh +++ b/tests/python_client/chaos/scripts/install_milvus_cluster.sh @@ -9,4 +9,5 @@ echo "insatll cluster" helm install --wait --debug --timeout 600s ${RELEASE_NAME:-$release} milvus/milvus \ --set image.all.repository=${REPOSITORY:-"milvusdb/milvus-dev"} \ --set image.all.tag=${IMAGE_TAG:-"master-latest"} \ + --set metrics.serviceMonitor.enabled=true \ -f ../cluster-values.yaml -n=${ns} \ No newline at end of file diff --git a/tests/python_client/chaos/scripts/install_milvus_standalone.sh b/tests/python_client/chaos/scripts/install_milvus_standalone.sh index 900b3c25e1..7ccca5500f 100644 --- a/tests/python_client/chaos/scripts/install_milvus_standalone.sh +++ b/tests/python_client/chaos/scripts/install_milvus_standalone.sh @@ -8,4 +8,5 @@ echo "insatll standalone" helm install --wait --debug --timeout 600s ${RELEASE_NAME:-$release} milvus/milvus \ --set image.all.repository=${REPOSITORY:-"milvusdb/milvus-dev"} \ --set image.all.tag=${IMAGE_TAG:-"master-latest"} \ + --set metrics.serviceMonitor.enabled=true \ -f ../standalone-values.yaml -n=${ns} \ No newline at end of file