Skip to content
Snippets Groups Projects
Commit fc7900d5 authored by Sheng Wang's avatar Sheng Wang
Browse files

Update azure.yml

parent e06ee8f2
No related tags found
No related merge requests found
......@@ -205,9 +205,9 @@ azure_deploy:
fi
# Install Service
- helm upgrade -i osdu-gitlab-$AZURE_SERVICE chart --set image.repository=${AZURE_REGISTRY}.azurecr.io --set image.branch=$BRANCH --set image.tag=$TAG
- helm upgrade -i osdu-gitlab-$CI_PROJECT_NAME chart --set image.repository=${AZURE_REGISTRY}.azurecr.io --set image.branch=$BRANCH --set image.tag=$TAG
# Increasing to 900s as rolling updates are happening and each service is expected to have minimum 2 containers.
- kubectl rollout status deployment.v1.apps/osdu-gitlab-$AZURE_SERVICE -n osdu --timeout=900s
- kubectl rollout status deployment.v1.apps/osdu-gitlab-$CI_PROJECT_NAME -n osdu --timeout=900s
- pod=$(kubectl get pod -n osdu|grep $AZURE_SERVICE |tail -1 |awk '{print $1}')
- status=$(kubectl wait -n osdu --for=condition=Ready pod/$pod --timeout=300s)
- if [[ "$status" != *"met"* ]]; then echo "POD didn't start correctly" ; exit 1 ; fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment