debug
All checks were successful
lint-test-helm / lint-helm (push) Successful in 14s
render-manifests-push / render-manifests-push (push) Successful in 49s
renovate / renovate (push) Successful in 53s

This commit is contained in:
2025-12-19 23:55:17 -06:00
parent 5597d42030
commit 10d659077c
2 changed files with 5 additions and 10 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 2>&1; then if apk update 2>&1 >/dev/null; then
echo ">> Attempt $i: Repositories are reachable" echo ">> Attempt $i: Repositories are reachable"
SUCCESS=true SUCCESS=true
break break
@@ -29,8 +29,7 @@ data:
exit 1 exit 1
fi fi
if ! command -v curl 2>&1 >/dev/null if ! command -v curl 2>&1 >/dev/null; then
then
echo "curl could not be found, installing"; echo "curl could not be found, installing";
apk add --no-cache curl; apk add --no-cache curl;
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
@@ -41,8 +40,7 @@ data:
fi fi
fi; fi;
if ! command -v jq 2>&1 >/dev/null if ! command -v jq 2>&1 >/dev/null; then
then
echo "jq could not be found, installing"; echo "jq could not be found, installing";
apk add --no-cache jq; apk add --no-cache jq;
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then

View File

@@ -12,10 +12,8 @@ data:
MAX_RETRIES=5 MAX_RETRIES=5
SUCCESS=false SUCCESS=false
apk update --short
for i in $(seq 1 "$MAX_RETRIES"); do for i in $(seq 1 "$MAX_RETRIES"); do
if apk update --short > /dev/null 2>&1; then if apk update 2>&1 >/dev/null; then
echo ">> Attempt $i: Repositories are reachable"; echo ">> Attempt $i: Repositories are reachable";
SUCCESS=true; SUCCESS=true;
break; break;
@@ -30,8 +28,7 @@ data:
exit 1; exit 1;
fi fi
if ! command -v jq 2>&1 >/dev/null; if ! command -v jq 2>&1 >/dev/null; then
then
echo "jq could not be found, installing"; echo "jq could not be found, installing";
apk add --no-cache jq; apk add --no-cache jq;
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then