Merge "Add node availability check for deploy initinfra script"

This commit is contained in:
Zuul 2020-09-14 18:00:45 +00:00 committed by Gerrit Code Review
commit 4f6b5252c2
1 changed files with 20 additions and 1 deletions

View File

@ -15,14 +15,33 @@
set -xe
export KUBECONFIG=${KUBECONFIG:-"$HOME/.airship/kubeconfig"}
export TIMEOUT=${TIMEOUT:-60}
NODENAME="node01"
# TODO need to run another config command after use-context to update kubeconfig
echo "Switch context to target cluster and set manifest"
airshipctl config use-context target-cluster-admin@target-cluster
airshipctl config set-context target-cluster-admin@target-cluster --manifest dummy_manifest
end=$(($(date +%s) + $TIMEOUT))
echo "Waiting $TIMEOUT seconds for $NODENAME to be created."
while true; do
if (kubectl --request-timeout 10s --kubeconfig $KUBECONFIG get nodes | grep -q $NODENAME) ; then
echo -e "\n$NODENAME found"
break
else
now=$(date +%s)
if [ $now -gt $end ]; then
echo -e "\n$NODENAME was not ready before TIMEOUT."
exit 1
fi
echo -n .
sleep 10
fi
done
# TODO remove taint
kubectl --kubeconfig $KUBECONFIG taint node node01 node-role.kubernetes.io/master-
kubectl --kubeconfig $KUBECONFIG taint node $NODENAME node-role.kubernetes.io/master-
echo "Deploy infra to cluster"
airshipctl phase apply initinfra --debug --wait-timeout 1000s