Compare commits

...

2 commits

Author SHA1 Message Date
0df7c1cec5 try to fix bootstrap timing issues 2023-04-24 12:57:25 -05:00
336fdb13b1 update gitignore 2023-04-24 12:57:03 -05:00
2 changed files with 6 additions and 1 deletions

4
.gitignore vendored
View file

@ -13,3 +13,7 @@ terraform.rc
ssh_private_key_packer.pem
*.auto.pkrvars.hcl
*.cer
# misc local configs
env.sh

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..."