mirror of
https://github.com/jbowdre/vsphere-k8s.git
synced 2024-11-22 08:02:17 +00:00
Compare commits
2 commits
b5bbc4e7a8
...
0df7c1cec5
Author | SHA1 | Date | |
---|---|---|---|
0df7c1cec5 | |||
336fdb13b1 |
2 changed files with 6 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -13,3 +13,7 @@ terraform.rc
|
||||||
ssh_private_key_packer.pem
|
ssh_private_key_packer.pem
|
||||||
*.auto.pkrvars.hcl
|
*.auto.pkrvars.hcl
|
||||||
*.cer
|
*.cer
|
||||||
|
|
||||||
|
# misc local configs
|
||||||
|
env.sh
|
||||||
|
|
||||||
|
|
|
@ -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