try to fix bootstrap timing issues

This commit is contained in:
John Bowdre 2023-04-24 12:57:25 -05:00
parent 336fdb13b1
commit 0df7c1cec5
1 changed files with 2 additions and 1 deletions

View File

@ -383,10 +383,11 @@ else
done
echo ">> Continuing after $((attempt*10)) seconds."
echo ">> Retrieving cluster discovery config..."
sleep 2
attempts_max=6
attempt=0
until [ -f ~/discovery.yaml ] || [ ${attempt} -eq ${attempts_max} ]; do
wget "http://${K8S_CONTROLPLANE_VIP}:8000/discovery.yaml"
curl -o discovery.yaml --fail "http://${K8S_CONTROLPLANE_VIP}:8000/discovery.yaml" 2>/dev/null
sleep 2
if ! [ -f ~/discovery.yaml ]; then
echo ">> Unable to retrieve config..."