a29fa5b8cc
Deploys the jellyfin-ha fork (git.unkin.net/unkin/jellyfin-ha) to au-syd1 via ArgoCD, under a dedicated media AppProject/ApplicationSet rather than extending platform. - New media AppProject + media-apps ApplicationSet (watches apps/overlays/*/jellyfin); registered in the argocd kustomizations - apps/base/jellyfin: namespace, deployment (single replica to start), service, in-namespace Redis (transcode session store), gateway + httproute at jellyfin.k8s.syd1.au.unkin.net - Storage: RWO config (cephrbd), RWX transcode scratch and RWX media library (cephfs) per the HA fork's pod-takeover requirement - au-syd1 overlay
18 lines
446 B
YAML
18 lines
446 B
YAML
---
|
|
# Media library, shared read-many across replicas. Retain — this holds the
|
|
# actual media and must survive PVC deletion. Empty on first deploy; populating
|
|
# it is out of scope for this app.
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: jellyfin-media
|
|
namespace: jellyfin
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteMany
|
|
resources:
|
|
requests:
|
|
storage: 1Ti
|
|
storageClassName: cephfs-raid6-retain
|
|
volumeMode: Filesystem
|