53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: jellyfin
|
|
namespace: media
|
|
spec:
|
|
strategy:
|
|
type: Recreate
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: jellyfin
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: jellyfin
|
|
spec:
|
|
containers:
|
|
- name: jellyfin
|
|
image: jellyfin/jellyfin:10.11.3
|
|
ports:
|
|
- containerPort: 8096
|
|
volumeMounts:
|
|
- name: media
|
|
mountPath: /media
|
|
- name: config
|
|
mountPath: /config
|
|
- name: cache
|
|
mountPath: /cache
|
|
- name: i915
|
|
mountPath: /dev/dri
|
|
securityContext:
|
|
privileged: true
|
|
resources:
|
|
requests:
|
|
gpu.intel.com/i915: "1"
|
|
limits:
|
|
gpu.intel.com/i915: "1"
|
|
volumes:
|
|
- name: config
|
|
persistentVolumeClaim:
|
|
claimName: jellyfin-longhorn
|
|
- name: cache
|
|
emptyDir: {}
|
|
- name: media
|
|
nfs:
|
|
server: 10.0.0.123
|
|
path: /merge
|
|
- name: i915
|
|
hostPath:
|
|
path: /dev/dri
|