Automated Manifest Update (#2748)

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

Reviewed-on: #2748
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 #2748.
This commit is contained in:
2025-12-20 05:04:00 +00:00
committed by Alex Lebens
parent 49107211e2
commit eb50ccea21
3 changed files with 2 additions and 21 deletions

View File

@@ -10,10 +10,9 @@ metadata:
data: data:
update.sh: | update.sh: |
API_ENDPOINT="http://localhost:8080/api/v2"; API_ENDPOINT="http://localhost:8080/api/v2";
MAX_RETRIES=5
SUCCESS=false SUCCESS=false
for ((i=1; i<=$MAX_RETRIES; i++)); do for i in {1..5}; do
if apk update --short &> /dev/null; then if apk update --short &> /dev/null; then
echo ">> Attempt $i: Repositories are reachable" echo ">> Attempt $i: Repositories are reachable"
SUCCESS=true SUCCESS=true

View File

@@ -9,10 +9,9 @@ metadata:
app.kubernetes.io/part-of: vault app.kubernetes.io/part-of: vault
data: data:
snapshot.sh: | snapshot.sh: |
MAX_RETRIES=5
SUCCESS=false SUCCESS=false
for ((i=1; i<=$MAX_RETRIES; i++)); do for i in {1..5}; do
if apk update --short &> /dev/null; then if apk update --short &> /dev/null; then
echo ">> Attempt $i: Repositories are reachable"; echo ">> Attempt $i: Repositories are reachable";
SUCCESS=true; SUCCESS=true;

View File

@@ -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