From f79aaced43d00872b99ff541f628f4590e3ef790 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Thu, 9 Jun 2022 20:24:07 +0800 Subject: [PATCH] [skip e2e]Increase installation wait time (#17467) Signed-off-by: zhuwenxing --- tests/python_client/chaos/scripts/install_milvus_cluster.sh | 2 +- tests/python_client/chaos/scripts/install_milvus_standalone.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/python_client/chaos/scripts/install_milvus_cluster.sh b/tests/python_client/chaos/scripts/install_milvus_cluster.sh index 4eca5881bb..9d7343683a 100644 --- a/tests/python_client/chaos/scripts/install_milvus_cluster.sh +++ b/tests/python_client/chaos/scripts/install_milvus_cluster.sh @@ -9,7 +9,7 @@ bash uninstall_milvus.sh ${release} ${ns}|| true declare -A pod_map=(["querynode"]="queryNode" ["indexnode"]="indexNode" ["datanode"]="dataNode" ["proxy"]="proxy") echo "insatll cluster" -helm install --wait --debug --timeout 360s ${RELEASE_NAME:-$release} milvus/milvus \ +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 ${pod_map[${pod}]}.replicas=$node_num \ diff --git a/tests/python_client/chaos/scripts/install_milvus_standalone.sh b/tests/python_client/chaos/scripts/install_milvus_standalone.sh index a5b834cbe8..900b3c25e1 100644 --- a/tests/python_client/chaos/scripts/install_milvus_standalone.sh +++ b/tests/python_client/chaos/scripts/install_milvus_standalone.sh @@ -5,7 +5,7 @@ release=${1:-"milvs-chaos"} ns=${2:-"chaos-testing"} bash uninstall_milvus.sh ${release} ${ns}|| true echo "insatll standalone" -helm install --wait --debug --timeout 360s ${RELEASE_NAME:-$release} milvus/milvus \ +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"} \ -f ../standalone-values.yaml -n=${ns} \ No newline at end of file