From 07ba01dfdb2c7b3f1ceeacff17f18e09aa2c8732 Mon Sep 17 00:00:00 2001 From: gitea-bot Date: Sat, 20 Dec 2025 05:40:35 +0000 Subject: [PATCH] Automated Manifest Update (#2750) This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/2750 Co-authored-by: gitea-bot Co-committed-by: gitea-bot --- .../manifests/qbittorrent/ConfigMap-glutun-update-script.yaml | 2 +- .../cl01tl/manifests/vault/ConfigMap-vault-snapshot-script.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clusters/cl01tl/manifests/qbittorrent/ConfigMap-glutun-update-script.yaml b/clusters/cl01tl/manifests/qbittorrent/ConfigMap-glutun-update-script.yaml index a04348bd1..ecc52346f 100644 --- a/clusters/cl01tl/manifests/qbittorrent/ConfigMap-glutun-update-script.yaml +++ b/clusters/cl01tl/manifests/qbittorrent/ConfigMap-glutun-update-script.yaml @@ -14,7 +14,7 @@ data: SUCCESS=false 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" SUCCESS=true break diff --git a/clusters/cl01tl/manifests/vault/ConfigMap-vault-snapshot-script.yaml b/clusters/cl01tl/manifests/vault/ConfigMap-vault-snapshot-script.yaml index e87077bbe..d22df5ddf 100644 --- a/clusters/cl01tl/manifests/vault/ConfigMap-vault-snapshot-script.yaml +++ b/clusters/cl01tl/manifests/vault/ConfigMap-vault-snapshot-script.yaml @@ -13,7 +13,7 @@ data: SUCCESS=false 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"; SUCCESS=true; break;