update docker registry used
This commit is contained in:
parent
f726044e29
commit
3d21f0a91f
2 changed files with 12 additions and 4 deletions
|
@ -2,17 +2,25 @@
|
|||
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
echo "Must supply a docker tag"
|
||||
echo "Usage: $0 <docker_tag> <k8s_namespace>"
|
||||
echo " k8s_namesapce is set to default if not specified"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$2" ]
|
||||
then
|
||||
NAMESPACE=default
|
||||
else
|
||||
NAMESPACE=$2
|
||||
fi
|
||||
|
||||
TAG=$1
|
||||
|
||||
CONTROLLERS=`kubectl get pods -o=name | grep controller | sed "s/^.\{4\}//" | cut -d '-' -f 2`
|
||||
CONTROLLERS=`kubectl get pods -o=name --namespace=${NAMESPACE} | grep controller | sed "s/^.\{4\}//" | cut -d '-' -f 2`
|
||||
|
||||
for c in ${CONTROLLERS[@]}
|
||||
do
|
||||
kubectl set image deployment controller-${c} ztcentral-controller=gcr.io/zerotier-central/ztcentral-controller:${TAG}
|
||||
kubectl set image deployment --namespace=${NAMESPACE} controller-${c} ztcentral-controller=docker.zerotier.com/zerotier-central/ztcentral-controller:${TAG}
|
||||
echo "Sleeping for 1 minute"
|
||||
sleep 60
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue