18 lines
496 B
YAML
18 lines
496 B
YAML
---
|
|
# Jellyfin config: metadata images, plugins, subtitles and config XML. Shared
|
|
# ReadWriteMany across replicas (all pods read/write the same library metadata);
|
|
# the main library DB now lives in PostgreSQL, not here (on CephFS, raid5-delete).
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: cheeztv-config
|
|
namespace: cheeztv
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteMany
|
|
resources:
|
|
requests:
|
|
storage: 20Gi
|
|
storageClassName: cephfs-raid5-delete
|
|
volumeMode: Filesystem
|