chore: Update manifests after change

This commit is contained in:
2025-12-20 05:08:50 +00:00
parent eb50ccea21
commit 12017f360d
2 changed files with 4 additions and 2 deletions

View File

@@ -10,9 +10,10 @@ metadata:
data:
update.sh: |
API_ENDPOINT="http://localhost:8080/api/v2";
MAX_RETRIES=5
SUCCESS=false
for i in {1..5}; do
for i in $(seq 1 "$MAX_RETRIES"); do
if apk update --short &> /dev/null; then
echo ">> Attempt $i: Repositories are reachable"
SUCCESS=true

View File

@@ -9,9 +9,10 @@ metadata:
app.kubernetes.io/part-of: vault
data:
snapshot.sh: |
MAX_RETRIES=5
SUCCESS=false
for i in {1..5}; do
for i in $(seq 1 "$MAX_RETRIES"); do
if apk update --short &> /dev/null; then
echo ">> Attempt $i: Repositories are reachable";
SUCCESS=true;