diff --git a/charts/jellyfin/templates/deployment.yaml b/charts/jellyfin/templates/deployment.yaml index 20c8d70..212a0ee 100644 --- a/charts/jellyfin/templates/deployment.yaml +++ b/charts/jellyfin/templates/deployment.yaml @@ -48,6 +48,8 @@ spec: name: jf-longhorn-tv-2 - mountPath: /media-longhorn/tv-3 name: jf-longhorn-tv-3 + - mountPath: /media-longhorn/tv-4 + name: jf-longhorn-tv-4 tolerations: - key: face operator: Equal @@ -72,6 +74,9 @@ spec: - name: jf-longhorn-tv-3 persistentVolumeClaim: claimName: jf-longhorn-tv-3 + - name: jf-longhorn-tv-4 + persistentVolumeClaim: + claimName: jf-longhorn-tv-4 {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/charts/jellyfin/templates/volumes.yaml b/charts/jellyfin/templates/volumes.yaml index 25168a2..f4709d6 100644 --- a/charts/jellyfin/templates/volumes.yaml +++ b/charts/jellyfin/templates/volumes.yaml @@ -68,6 +68,18 @@ spec: resources: requests: storage: 50Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: jf-longhorn-tv-4 +spec: + accessModes: + - ReadWriteOnce + storageClassName: longhorn + resources: + requests: + storage: 1Ti # --- # # https://forum.jellyfin.org/t-could-not-apply-migration-migrateactivitylogdatabase # apiVersion: v1