Update cluster-withdraw

This commit is contained in:
Torma Kristóf 2019-03-16 16:47:28 +01:00 committed by GitHub
parent 8f03967d84
commit d0e19aac90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 6 deletions

View File

@ -17,7 +17,6 @@ WORKER_LIST="worker.list"
#FIXME Write usage message
function usage {
cat << EOF
EOF
}
@ -28,15 +27,21 @@ function echo_err {
}
## Check files from parameters
## Check file from parameters
if [ ! -f $WORKER_LIST ]; then
echo_err "Worker list file ($WORKER_LIST) not exists."
exit 1
else if [ ! -s $WORKER_LIST ]; then
echo_err "Worker list file ($WORKER_LIST) is empty."
fi
fi
## Check the file contents
if [ ! -s $WORKER_LIST ]; then
echo_err "Worker list file ($WORKER_LIST) is empty."
exit 1
fi
## Create WORKER array from file
readarray WORKER < $WORKER_LIST
# Reset Master node
./withdraw/node_reset.sh
rm -rf ~/.kube
@ -55,4 +60,4 @@ for LINE in $(cat $WORKER_LIST | grep -vE "^#"); do
# ssh $WORKERNAME -o "StrictHostKeyChecking no" "bash -s" < ./deploy/docker_registry_setup.sh $IP:5000
echo "[worker:$WORKERNAME] Eviction is completed."
done
done