mirror of
https://github.com/jbowdre/vsphere-k8s.git
synced 2024-12-22 03:42:18 +00:00
try to fix bootstrap timing issues
This commit is contained in:
parent
336fdb13b1
commit
0df7c1cec5
1 changed files with 2 additions and 1 deletions
|
@ -383,10 +383,11 @@ else
|
||||||
done
|
done
|
||||||
echo ">> Continuing after $((attempt*10)) seconds."
|
echo ">> Continuing after $((attempt*10)) seconds."
|
||||||
echo ">> Retrieving cluster discovery config..."
|
echo ">> Retrieving cluster discovery config..."
|
||||||
|
sleep 2
|
||||||
attempts_max=6
|
attempts_max=6
|
||||||
attempt=0
|
attempt=0
|
||||||
until [ -f ~/discovery.yaml ] || [ ${attempt} -eq ${attempts_max} ]; do
|
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
|
sleep 2
|
||||||
if ! [ -f ~/discovery.yaml ]; then
|
if ! [ -f ~/discovery.yaml ]; then
|
||||||
echo ">> Unable to retrieve config..."
|
echo ">> Unable to retrieve config..."
|
||||||
|
|
Loading…
Reference in a new issue