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,35 @@
apiVersion: v1
kind: PersistentVolume
metadata:
name: jellyfin-config
spec:
capacity:
storage: 30Gi
accessModes:
- ReadWriteOnce
storageClassName: ""
persistentVolumeReclaimPolicy: Retain
mountOptions:
- hard
- nointr
nfs:
server: synology.storage.lviv
path: /volume3/k8s-storage/jellyfin-config
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: jellyfin-cache
spec:
capacity:
storage: 20Gi
accessModes:
- ReadWriteOnce
storageClassName: ""
persistentVolumeReclaimPolicy: Retain
mountOptions:
- hard
- nointr
nfs:
server: synology.storage.lviv
path: /volume3/k8s-storage/jellyfin-cache