mirror of https://github.com/milvus-io/milvus.git
[skip ci]Update timeout for deploy test (#12114)
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>pull/12120/head
parent
5df03dc260
commit
2d81453ee0
.github/workflows
|
@ -108,10 +108,10 @@ jobs:
|
||||||
helm repo update
|
helm repo update
|
||||||
|
|
||||||
# if the task is reinstall, install milvus with latest image in repo milvusdb/milvus-dev
|
# 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 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
|
kubectl get pods
|
||||||
sleep 20s
|
sleep 20s
|
||||||
kubectl get pods
|
kubectl get pods
|
||||||
|
@ -130,12 +130,12 @@ jobs:
|
||||||
helm uninstall deploy-testing
|
helm uninstall deploy-testing
|
||||||
|
|
||||||
- name: Seconde Milvus Deployment
|
- name: Seconde Milvus Deployment
|
||||||
timeout-minutes: 15
|
timeout-minutes: 20
|
||||||
shell: bash
|
shell: bash
|
||||||
working-directory: tests/python_client/deploy
|
working-directory: tests/python_client/deploy
|
||||||
run: |
|
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
|
kubectl get pods
|
||||||
sleep 20s
|
sleep 20s
|
||||||
kubectl get pods
|
kubectl get pods
|
||||||
|
|
Loading…
Reference in New Issue