chore: Update manifests after change
This commit is contained in:
@@ -10,10 +10,9 @@ metadata:
|
|||||||
data:
|
data:
|
||||||
update.sh: |
|
update.sh: |
|
||||||
API_ENDPOINT="http://localhost:8080/api/v2";
|
API_ENDPOINT="http://localhost:8080/api/v2";
|
||||||
MAX_RETRIES=5
|
|
||||||
SUCCESS=false
|
SUCCESS=false
|
||||||
|
|
||||||
for ((i=1; i<=$MAX_RETRIES; i++)); do
|
for i in {1..5}; do
|
||||||
if apk update --short &> /dev/null; then
|
if apk update --short &> /dev/null; then
|
||||||
echo ">> Attempt $i: Repositories are reachable"
|
echo ">> Attempt $i: Repositories are reachable"
|
||||||
SUCCESS=true
|
SUCCESS=true
|
||||||
|
|||||||
@@ -9,10 +9,9 @@ metadata:
|
|||||||
app.kubernetes.io/part-of: vault
|
app.kubernetes.io/part-of: vault
|
||||||
data:
|
data:
|
||||||
snapshot.sh: |
|
snapshot.sh: |
|
||||||
MAX_RETRIES=5
|
|
||||||
SUCCESS=false
|
SUCCESS=false
|
||||||
|
|
||||||
for ((i=1; i<=$MAX_RETRIES; i++)); do
|
for i in {1..5}; do
|
||||||
if apk update --short &> /dev/null; then
|
if apk update --short &> /dev/null; then
|
||||||
echo ">> Attempt $i: Repositories are reachable";
|
echo ">> Attempt $i: Repositories are reachable";
|
||||||
SUCCESS=true;
|
SUCCESS=true;
|
||||||
|
|||||||
Reference in New Issue
Block a user