Automated Manifest Update (#2752)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: #2752 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 #2752.
This commit is contained in:
@@ -14,7 +14,7 @@ data:
|
||||
SUCCESS=false
|
||||
|
||||
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"
|
||||
SUCCESS=true
|
||||
break
|
||||
@@ -29,8 +29,7 @@ data:
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! command -v curl 2>&1 >/dev/null
|
||||
then
|
||||
if ! command -v curl 2>&1 >/dev/null; then
|
||||
echo "curl could not be found, installing";
|
||||
apk add --no-cache curl;
|
||||
if [ $? -eq 0 ]; then
|
||||
@@ -41,8 +40,7 @@ data:
|
||||
fi
|
||||
fi;
|
||||
|
||||
if ! command -v jq 2>&1 >/dev/null
|
||||
then
|
||||
if ! command -v jq 2>&1 >/dev/null; then
|
||||
echo "jq could not be found, installing";
|
||||
apk add --no-cache jq;
|
||||
if [ $? -eq 0 ]; then
|
||||
|
||||
@@ -12,10 +12,8 @@ data:
|
||||
MAX_RETRIES=5
|
||||
SUCCESS=false
|
||||
|
||||
apk update --short
|
||||
|
||||
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";
|
||||
SUCCESS=true;
|
||||
break;
|
||||
@@ -30,8 +28,7 @@ data:
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
if ! command -v jq 2>&1 >/dev/null;
|
||||
then
|
||||
if ! command -v jq 2>&1 >/dev/null; then
|
||||
echo "jq could not be found, installing";
|
||||
apk add --no-cache jq;
|
||||
if [ $? -eq 0 ]; then
|
||||
|
||||
Reference in New Issue
Block a user