From 2d81453ee055b9bd216805ebd3548c55eecd6db8 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Thu, 18 Nov 2021 22:37:13 +0800 Subject: [PATCH] [skip ci]Update timeout for deploy test (#12114) Signed-off-by: zhuwenxing --- .github/workflows/deploy-test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-test.yaml b/.github/workflows/deploy-test.yaml index 9351507f69..dd893289f6 100644 --- a/.github/workflows/deploy-test.yaml +++ b/.github/workflows/deploy-test.yaml @@ -108,10 +108,10 @@ jobs: helm repo update # if the task is reinstall, install milvus with latest image in repo milvusdb/milvus-dev - if [ ${{ matrix.task }} == "reinstall" ]; then helm install --wait --timeout 300s deploy-testing milvus/milvus -f cluster-values.yaml; fi + if [ ${{ matrix.task }} == "reinstall" ]; then helm install --wait --timeout 720s deploy-testing milvus/milvus -f cluster-values.yaml; fi # if the task is upgrade, install milvus with latest rc image in repo milvusdb/milvus - if [ ${{ matrix.task }} == "upgrade" ]; then helm install --wait --timeout 300s deploy-testing milvus/milvus --set image.all.repository=milvusdb/milvus --set image.all.tag=latest -f cluster-values.yaml; fi + if [ ${{ matrix.task }} == "upgrade" ]; then helm install --wait --timeout 720s deploy-testing milvus/milvus --set image.all.repository=milvusdb/milvus --set image.all.tag=latest -f cluster-values.yaml; fi kubectl get pods sleep 20s kubectl get pods @@ -130,12 +130,12 @@ jobs: helm uninstall deploy-testing - name: Seconde Milvus Deployment - timeout-minutes: 15 + timeout-minutes: 20 shell: bash working-directory: tests/python_client/deploy run: | # - helm install --wait --timeout 300s deploy-testing milvus/milvus -f cluster-values.yaml + helm install --wait --timeout 720s deploy-testing milvus/milvus -f cluster-values.yaml kubectl get pods sleep 20s kubectl get pods