1
0
Fork 0
mirror of https://github.com/honestbee/drone-kubernetes.git synced 2025-05-15 22:53:19 +00:00

Merge pull request from IssueSquare/master

show detail image rolling update detail
This commit is contained in:
Charles Martinot 2017-05-11 10:24:11 +08:00 committed by GitHub
commit bd4ff1ddf0

View file

@ -35,6 +35,6 @@ for DEPLOY in ${DEPLOYMENTS[@]}; do
echo Deploying to $KUBERNETES_SERVER echo Deploying to $KUBERNETES_SERVER
for CONTAINER in ${CONTAINERS[@]}; do for CONTAINER in ${CONTAINERS[@]}; do
kubectl -n ${PLUGIN_NAMESPACE} set image deployment/${DEPLOY} \ kubectl -n ${PLUGIN_NAMESPACE} set image deployment/${DEPLOY} \
${CONTAINER}=${PLUGIN_REPO}:${PLUGIN_TAG} ${CONTAINER}=${PLUGIN_REPO}:${PLUGIN_TAG} --record
done done
done done