this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Hmm

+16 -3
+2 -3
k8s/media/apps/media/jellyfin/app/hr.yaml
··· 83 83 persistence: 84 84 config: 85 85 enabled: true 86 - type: hostPath 87 - hostPath: "/opt/docker/appdata/jellyfin/config" 86 + existingClaim: "jellyfin-config-v1" 88 87 advancedMounts: 89 88 main: 90 89 main: ··· 92 91 library: 93 92 enabled: true 94 93 type: hostPath 95 - hostPath: "/mnt/merge/library/" 94 + hostPath: "/var/mnt/merged/library/" 96 95 globalMounts: 97 96 - path: /media 98 97
+1
k8s/media/apps/media/jellyfin/app/kustomization.yaml
··· 3 3 kind: Kustomization 4 4 resources: 5 5 - ./hr.yaml 6 + - ./pvc.yaml
+13
k8s/media/apps/media/jellyfin/app/pvc.yaml
··· 1 + --- 2 + apiVersion: v1 3 + kind: PersistentVolumeClaim 4 + metadata: 5 + name: jellyfin-config-v1 6 + namespace: media 7 + spec: 8 + storageClassName: local-hostpath 9 + accessModes: 10 + - ReadWriteOnce 11 + resources: 12 + requests: 13 + storage: 5Gi