diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-30 23:53:25 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-30 23:53:25 +0200 |
| commit | 0144f3e49162fcba6fb15f41cb8b3831ab8c1e37 (patch) | |
| tree | 623d6aa28a3db92c6d6059f44c625e45e3dacb0f | |
| parent | 3d0c5116ad633b91a4aacefa44183c806ff3040a (diff) | |
fx
| -rw-r--r-- | f3s/jellyfin/helm-chart/templates/persistent-volume.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/f3s/jellyfin/helm-chart/templates/persistent-volume.yaml b/f3s/jellyfin/helm-chart/templates/persistent-volume.yaml index a8374cd..515e07e 100644 --- a/f3s/jellyfin/helm-chart/templates/persistent-volume.yaml +++ b/f3s/jellyfin/helm-chart/templates/persistent-volume.yaml @@ -11,7 +11,7 @@ spec: - ReadWriteOnce persistentVolumeReclaimPolicy: Retain hostPath: - path: /data/nfs/k3svolumes/jellyfin + path: /data/nfs/k3svolumes/jellyfin/config type: Directory --- apiVersion: v1 @@ -27,11 +27,11 @@ spec: requests: storage: 50Gi --- -# Jellyfin PersistentVolume - Libraries storage +# Jellyfin PersistentVolume - data storage apiVersion: v1 kind: PersistentVolume metadata: - name: jellyfin-libraries-pv + name: jellyfin-data-pv spec: capacity: storage: 500Gi @@ -40,13 +40,13 @@ spec: - ReadWriteOnce persistentVolumeReclaimPolicy: Retain hostPath: - path: /data/nfs/k3svolumes/jellyfin/libraries + path: /data/nfs/k3svolumes/jellyfin/data type: Directory --- apiVersion: v1 kind: PersistentVolumeClaim metadata: - name: jellyfin-libraries-pvc + name: jellyfin-data-pvc namespace: services spec: storageClassName: "" |
