From 4cf65b84295c15bd38f9b43db0e1f1b376b1aecd Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sun, 28 Dec 2025 19:33:30 +0900 Subject: [PATCH] FEAT(storage): create new PVC for data migration --- gitea/helm-values/gitea.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gitea/helm-values/gitea.yaml b/gitea/helm-values/gitea.yaml index 9c019ca..17e1014 100644 --- a/gitea/helm-values/gitea.yaml +++ b/gitea/helm-values/gitea.yaml @@ -119,10 +119,10 @@ deployment: # Persistence for Gitea data persistence: enabled: true - create: false # Use existing PVC (created during Longhorn migration) - claimName: gitea-shared-storage + create: true # Create new PVC managed by Helm + claimName: gitea-data # New PVC name to avoid conflict size: 10Gi - storageClass: longhorn # Migrated from local-path to Longhorn (replica=3) + storageClass: longhorn accessModes: - ReadWriteOnce