Automated Manifest Update (#2754)

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

Reviewed-on: #2754
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 #2754.
This commit is contained in:
2025-12-20 06:17:04 +00:00
committed by Alex Lebens
parent 2b3ac8a03d
commit c07b849038
3 changed files with 50 additions and 14 deletions

View File

@@ -30,8 +30,8 @@ data:
fi
if ! command -v curl 2>&1 >/dev/null; then
echo "curl could not be found, installing";
apk add --no-cache curl;
echo ">> Command curl could not be found, installing";
apk add --no-cache -q curl;
if [ $? -eq 0 ]; then
echo ">> Installation successful"
else
@@ -42,7 +42,7 @@ data:
if ! command -v jq 2>&1 >/dev/null; then
echo "jq could not be found, installing";
apk add --no-cache jq;
apk add --no-cache -q jq;
if [ $? -eq 0 ]; then
echo ">> Installation successful"
else