feat(k8s/storage): convert all stateful PVCs to static NFS PVs

This commit is contained in:
2026-03-10 22:36:35 +02:00
parent 83970f5d56
commit a3601cc7e5
14 changed files with 294 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
apiVersion: v1
kind: PersistentVolume
metadata:
name: immich-db
spec:
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
storageClassName: ""
persistentVolumeReclaimPolicy: Retain
mountOptions:
- hard
- nointr
nfs:
server: synology.storage.lviv
path: /volume3/k8s-storage/immich-db

View File

@@ -20,7 +20,8 @@ metadata:
spec:
accessModes:
- ReadWriteOnce
storageClassName: nfs-synology-ssd
storageClassName: ""
volumeName: immich-db
resources:
requests:
storage: 10Gi