summaryrefslogtreecommitdiff
path: root/f3s
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-31 00:10:29 +0200
committerPaul Buetow <paul@buetow.org>2026-01-31 00:10:29 +0200
commit2da529d9d9c4eb22574ef06b548e75d19394eae5 (patch)
tree9368e9dd51547ef2a74efe44b7c935ab3866d442 /f3s
parentc21cd42add28bb24c6131e7b6e6764f9836200b7 (diff)
fix
Diffstat (limited to 'f3s')
-rw-r--r--f3s/jellyfin/helm-chart/templates/deployment.yaml2
-rw-r--r--f3s/jellyfin/helm-chart/templates/persistent-volume.yaml12
2 files changed, 7 insertions, 7 deletions
diff --git a/f3s/jellyfin/helm-chart/templates/deployment.yaml b/f3s/jellyfin/helm-chart/templates/deployment.yaml
index c6d94e7..a90bbed 100644
--- a/f3s/jellyfin/helm-chart/templates/deployment.yaml
+++ b/f3s/jellyfin/helm-chart/templates/deployment.yaml
@@ -36,7 +36,7 @@ spec:
volumes:
- name: jellyfin-config
persistentVolumeClaim:
- claimName: jellyfin-pvc
+ claimName: jellyfin-config-pvc
- name: jellyfin-libraries
persistentVolumeClaim:
claimName: jellyfin-libraries-pvc
diff --git a/f3s/jellyfin/helm-chart/templates/persistent-volume.yaml b/f3s/jellyfin/helm-chart/templates/persistent-volume.yaml
index 515e07e..f32783e 100644
--- a/f3s/jellyfin/helm-chart/templates/persistent-volume.yaml
+++ b/f3s/jellyfin/helm-chart/templates/persistent-volume.yaml
@@ -2,7 +2,7 @@
apiVersion: v1
kind: PersistentVolume
metadata:
- name: jellyfin-pv
+ name: jellyfin-config-pv
spec:
capacity:
storage: 50Gi
@@ -17,7 +17,7 @@ spec:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
- name: jellyfin-pvc
+ name: jellyfin-config-pvc
namespace: services
spec:
storageClassName: ""
@@ -27,11 +27,11 @@ spec:
requests:
storage: 50Gi
---
-# Jellyfin PersistentVolume - data storage
+# Jellyfin PersistentVolume - Libraries storage
apiVersion: v1
kind: PersistentVolume
metadata:
- name: jellyfin-data-pv
+ name: jellyfin-libraries-pv
spec:
capacity:
storage: 500Gi
@@ -40,13 +40,13 @@ spec:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
hostPath:
- path: /data/nfs/k3svolumes/jellyfin/data
+ path: /data/nfs/k3svolumes/jellyfin/libraries
type: Directory
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
- name: jellyfin-data-pvc
+ name: jellyfin-libraries-pvc
namespace: services
spec:
storageClassName: ""