1
0
Fork 0
mirror of https://github.com/honestbee/drone-kubernetes.git synced 2025-05-16 03:13:19 +00:00

fix tag quotes

This commit is contained in:
hashfyre 2018-01-10 05:22:05 +05:30
parent 67abd5704e
commit ad2ec49271

View file

@ -64,6 +64,6 @@ for DEPLOY in ${DEPLOYMENTS[@]}; do
echo Deploying to ${KUBERNETES_ENV} echo Deploying to ${KUBERNETES_ENV}
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} --record ${CONTAINER}="${PLUGIN_REPO}:${PLUGIN_TAG}" --record
done done
done done