Automated Manifest Update (#2750)

This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow.

Reviewed-on: #2750
Co-authored-by: gitea-bot <gitea-bot@alexlebens.net>
Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
This commit was merged in pull request #2750.
This commit is contained in:
2025-12-20 05:40:35 +00:00
committed by Alex Lebens
parent 724fbeb6e3
commit 07ba01dfdb
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ data:
SUCCESS=false SUCCESS=false
for i in $(seq 1 "$MAX_RETRIES"); do for i in $(seq 1 "$MAX_RETRIES"); do
if apk update --short &> /dev/null; then if apk update --short > /dev/null 2>&1; then
echo ">> Attempt $i: Repositories are reachable" echo ">> Attempt $i: Repositories are reachable"
SUCCESS=true SUCCESS=true
break break

View File

@@ -13,7 +13,7 @@ data:
SUCCESS=false SUCCESS=false
for i in $(seq 1 "$MAX_RETRIES"); do for i in $(seq 1 "$MAX_RETRIES"); do
if apk update --short &> /dev/null; then if apk update --short > /dev/null 2>&1; then
echo ">> Attempt $i: Repositories are reachable"; echo ">> Attempt $i: Repositories are reachable";
SUCCESS=true; SUCCESS=true;
break; break;