We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c2b03c + 4e82b31 commit 8539544Copy full SHA for 8539544
ONVAULT
@@ -18,6 +18,15 @@ log () {
18
echo -e "${GREEN}[Dockito Vault]${NC} $@"
19
}
20
21
+if ! curl -s "${VAULT_URI}/_ping"; then
22
+ COUNTER=0
23
+ echo 'Waiting 10s for dockito/vault to be ready...'
24
+ while ! curl -s "${VAULT_URI}/_ping" && [ $COUNTER != 10 ]; do
25
+ sleep 1
26
+ COUNTER=$[$COUNTER +1]
27
+ done
28
+fi
29
+
30
if curl -s "${VAULT_URI}/_ping"; then
31
log "Downloading private keys..."
32
0 commit comments