Automated Manifest Update #2748

Merged
alexlebens merged 2 commits from auto/update-manifests into manifests 2025-12-20 05:04:04 +00:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit 0f39aa6416 - Show all commits

View File

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

View File

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