Add loop on containers
This commit is contained in:
parent
880302ffbe
commit
82c3b38c42
|
@ -29,9 +29,12 @@ kubectl config set-context default --cluster=default --user=default
|
||||||
kubectl config use-context default
|
kubectl config use-context default
|
||||||
|
|
||||||
# kubectl version
|
# kubectl version
|
||||||
IFS=',' read -r -a DEPLOYMENTS <<< "$PLUGIN_DEPLOYMENT"
|
IFS=',' read -r -a DEPLOYMENTS <<< "${PLUGIN_DEPLOYMENT}"
|
||||||
|
IFS=',' read -r -a CONTAINERS <<< "${PLUGIN_CONTAINER}"
|
||||||
for DEPLOY in ${DEPLOYMENTS[@]}; do
|
for DEPLOY in ${DEPLOYMENTS[@]}; do
|
||||||
echo Deploying to $KUBERNETES_SERVER
|
echo Deploying to $KUBERNETES_SERVER
|
||||||
kubectl -n ${PLUGIN_NAMESPACE} set image deployment/${DEPLOY} \
|
for CONTAINER in ${CONTAINERS[@]}; do
|
||||||
${PLUGIN_CONTAINER}=${PLUGIN_REPO}:${PLUGIN_TAG}
|
kubectl -n ${PLUGIN_NAMESPACE} set image deployment/${DEPLOY} \
|
||||||
|
${CONTAINER}=${PLUGIN_REPO}:${PLUGIN_TAG}
|
||||||
|
done
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue