Files
Kubernetes-Manifests/applications/jellyfin/jellyfin-statefulset.yaml
T
Jeffrey f53e8f5b00 jellyfin: upgrade to 12.0
All five installed plugins have 12.0.0.0 targetAbi builds available. The
archived 9p4 SSO Authentication plugin has been removed, since it has no
v12 build and is being replaced by an OIDC plugin later.

Plugins must be updated from the Jellyfin dashboard after the rollout;
the container upgrade does not touch /config/plugins.
2026-09-13 12:56:38 +02:00

43 lines
894 B
YAML

apiVersion: apps/v1
kind: StatefulSet
metadata:
namespace: jellyfin
name: jellyfin
spec:
replicas: 1
selector:
matchLabels:
app: jellyfin
serviceName: jellyfin
template:
metadata:
labels:
app: jellyfin
spec:
restartPolicy: Always
terminationGracePeriodSeconds: 60
nodeSelector:
gpu: "true"
containers:
- name: jellyfin
image: jellyfin/jellyfin:12.0
ports:
- containerPort: 8096
resources:
limits:
gpu.intel.com/i915: "1"
volumeMounts:
- name: config
mountPath: /config
- name: media
mountPath: /media
readOnly: true
volumes:
- name: config
persistentVolumeClaim:
claimName: jellyfin-pvc
- name: media
persistentVolumeClaim:
claimName: smb-media-pvc