[skip e2e]Refine the command of helm install (#14884)

Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
pull/14889/head
zhuwenxing 2022-01-05 23:01:21 +08:00 committed by GitHub
parent 851794598e
commit 3749597640
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -36,13 +36,13 @@ echo "install milvus"
if [ ${pod} != "standalone" ];
then
echo "insatll cluster"
helm install --wait --timeout 360s ${release} milvus/milvus --set ${pod_map[${pod}]}.replicas=$node_num -f ../cluster-values.yaml -n=${ns}
helm install --wait --timeout 360s ${release} milvus/milvus --set image.all.tag=${image_tag:-"master-latest"} --set ${pod_map[${pod}]}.replicas=$node_num -f ../cluster-values.yaml -n=${ns}
fi
if [ ${pod} == "standalone" ];
then
echo "install standalone"
helm install --wait --timeout 360s ${release} milvus/milvus -f ../standalone-values.yaml -n=${ns}
helm install --wait --timeout 360s ${release} milvus/milvus --set image.all.tag=${image_tag:-"master-latest"} -f ../standalone-values.yaml -n=${ns}
fi
# wait all pod ready