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
|
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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user