mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
take into account status codes by leveraging --fail
curl option (Refs #37)
This commit is contained in:
parent
f427590622
commit
aff0fe5c5c
@ -129,11 +129,11 @@ spec:
|
||||
# wait until validator generates priv/pub key pair
|
||||
set +e
|
||||
|
||||
curl -s "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
curl -s --fail "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
ERR=$?
|
||||
while [ "$ERR" != 0 ]; do
|
||||
sleep 5
|
||||
curl -s "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
curl -s --fail "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
ERR=$?
|
||||
done
|
||||
set -e
|
||||
|
@ -188,11 +188,11 @@ spec:
|
||||
# wait until validator generates priv/pub key pair
|
||||
set +e
|
||||
|
||||
curl -s "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
curl -s --fail "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
ERR=$?
|
||||
while [ "$ERR" != 0 ]; do
|
||||
sleep 5
|
||||
curl -s "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
curl -s --fail "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
ERR=$?
|
||||
done
|
||||
set -e
|
||||
@ -247,11 +247,11 @@ spec:
|
||||
# wait until pod starts to serve its pub_key
|
||||
set +e
|
||||
|
||||
curl -s "http://$pod.$fqdn_suffix/app_pub_key.json" > /dev/null
|
||||
curl -s --fail "http://$pod.$fqdn_suffix/app_pub_key.json" > /dev/null
|
||||
ERR=$?
|
||||
while [ "$ERR" != 0 ]; do
|
||||
sleep 5
|
||||
curl -s "http://$pod.$fqdn_suffix/app_pub_key.json" > /dev/null
|
||||
curl -s --fail "http://$pod.$fqdn_suffix/app_pub_key.json" > /dev/null
|
||||
ERR=$?
|
||||
done
|
||||
set -e
|
||||
|
@ -121,11 +121,11 @@ spec:
|
||||
# wait until validator generates priv/pub key pair
|
||||
set +e
|
||||
|
||||
curl -s "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
curl -s --fail "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
ERR=$?
|
||||
while [ "$ERR" != 0 ]; do
|
||||
sleep 5
|
||||
curl -s "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
curl -s --fail "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
ERR=$?
|
||||
done
|
||||
set -e
|
||||
|
@ -121,11 +121,11 @@ spec:
|
||||
# wait until validator generates priv/pub key pair
|
||||
set +e
|
||||
|
||||
curl -s "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
curl -s --fail "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
ERR=$?
|
||||
while [ "$ERR" != 0 ]; do
|
||||
sleep 5
|
||||
curl -s "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
curl -s --fail "http://$v.$fqdn_suffix/pub_key.json" > /dev/null
|
||||
ERR=$?
|
||||
done
|
||||
set -e
|
||||
|
Loading…
x
Reference in New Issue
Block a user