1
0
Fork 0
mirror of https://github.com/honestbee/drone-kubernetes.git synced 2025-06-13 09:23:18 +00:00

Merge pull request from razorpay/rollout

script: adds command to check deployment rollout status
This commit is contained in:
Rahul Menon 2018-01-19 13:56:18 +05:30 committed by GitHub
commit 193a8e5539
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,4 +71,6 @@ for DEPLOY in ${DEPLOYMENTS[@]}; do
kubectl -n ${NAMESPACE} set image deployment/${DEPLOY} \
${CONTAINER}="${PLUGIN_REPO}:${PLUGIN_TAG}" --record
done
# wait on deployment rollout status
kubectl -n ${NAMESPACE} rollout status deployment/${DEPLOY}
done