From eb50ccea21a00ba64979fde3d5128d2bd81a8783 Mon Sep 17 00:00:00 2001 From: gitea-bot Date: Sat, 20 Dec 2025 05:04:00 +0000 Subject: [PATCH] Automated Manifest Update (#2748) This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/2748 Co-authored-by: gitea-bot Co-committed-by: gitea-bot --- .../ConfigMap-glutun-update-script.yaml | 3 +-- .../vault/ConfigMap-vault-snapshot-script.yaml | 3 +-- ...entVolumeClaim-vault-nfs-storage-backup.yaml | 17 ----------------- 3 files changed, 2 insertions(+), 21 deletions(-) delete mode 100644 clusters/cl01tl/manifests/vault/PersistentVolumeClaim-vault-nfs-storage-backup.yaml diff --git a/clusters/cl01tl/manifests/qbittorrent/ConfigMap-glutun-update-script.yaml b/clusters/cl01tl/manifests/qbittorrent/ConfigMap-glutun-update-script.yaml index c1550d3aa..76eed1d88 100644 --- a/clusters/cl01tl/manifests/qbittorrent/ConfigMap-glutun-update-script.yaml +++ b/clusters/cl01tl/manifests/qbittorrent/ConfigMap-glutun-update-script.yaml @@ -10,10 +10,9 @@ metadata: data: update.sh: | API_ENDPOINT="http://localhost:8080/api/v2"; - MAX_RETRIES=5 SUCCESS=false - for ((i=1; i<=$MAX_RETRIES; i++)); do + for i in {1..5}; do if apk update --short &> /dev/null; then echo ">> Attempt $i: Repositories are reachable" SUCCESS=true diff --git a/clusters/cl01tl/manifests/vault/ConfigMap-vault-snapshot-script.yaml b/clusters/cl01tl/manifests/vault/ConfigMap-vault-snapshot-script.yaml index 8caac4f76..fc40708fb 100644 --- a/clusters/cl01tl/manifests/vault/ConfigMap-vault-snapshot-script.yaml +++ b/clusters/cl01tl/manifests/vault/ConfigMap-vault-snapshot-script.yaml @@ -9,10 +9,9 @@ metadata: app.kubernetes.io/part-of: vault data: snapshot.sh: | - MAX_RETRIES=5 SUCCESS=false - for ((i=1; i<=$MAX_RETRIES; i++)); do + for i in {1..5}; do if apk update --short &> /dev/null; then echo ">> Attempt $i: Repositories are reachable"; SUCCESS=true; diff --git a/clusters/cl01tl/manifests/vault/PersistentVolumeClaim-vault-nfs-storage-backup.yaml b/clusters/cl01tl/manifests/vault/PersistentVolumeClaim-vault-nfs-storage-backup.yaml deleted file mode 100644 index ef2bb1cee..000000000 --- a/clusters/cl01tl/manifests/vault/PersistentVolumeClaim-vault-nfs-storage-backup.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: vault-nfs-storage-backup - namespace: vault - labels: - app.kubernetes.io/name: vault-nfs-storage-backup - app.kubernetes.io/instance: vault - app.kubernetes.io/part-of: vault -spec: - volumeMode: Filesystem - storageClassName: nfs-client - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 1Gi