fix tag quotes

This commit is contained in:
hashfyre 2018-01-10 05:22:05 +05:30
parent 67abd5704e
commit ad2ec49271
1 changed files with 1 additions and 1 deletions

View File

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