Fix separator in string to array conversion

This commit is contained in:
Charles Martinot 2017-02-08 15:55:51 +08:00
parent 18bb02bede
commit 0378bbb9d9
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ kubectl config set-cluster default --server=${KUBERNETES_SERVER} --insecure-skip
kubectl config set-context default --cluster=default --user=default
kubectl config use-context default
IFS=', ' read -r -a DEPLOYMENTS <<< "$PLUGIN_DEPLOYMENT"
IFS=',' read -r -a DEPLOYMENTS <<< "$PLUGIN_DEPLOYMENT"
for DEPLOY in ${DEPLOYMENTS[@]}; do
echo Deploying to $KUBERNETES_SERVER
kubectl -n ${PLUGIN_NAMESPACE} set image deployment/${DEPLOY} \