Skip to content

Commit

Permalink
jellyfin: enable intel GPU HW transcoder
Browse files Browse the repository at this point in the history
Signed-off-by: paulfantom <[email protected]>
  • Loading branch information
paulfantom committed Sep 25, 2024
1 parent 902516e commit 60cba75
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions apps/jellyfin/manifests/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@ ingress:
hosts:
- vod.krupa.net.pl

nodeSelector:
intel.feature.node.kubernetes.io/gpu: "true"
kubernetes.io/hostname: master03

securityContext:
privileged: true
runAsUser: 1000
runAsGroup: 1000
supplementalGroups:
- 109

persistence:
config:
enabled: true
Expand All @@ -45,7 +56,17 @@ persistence:
existingClaim: media-books
#readOnly: true

extraVolumes: []
#- name: renderD129
# hostPath:
# path: /dev/dri/renderD129
extraVolumes:
- name: transcodes
emptyDir:
medium: Memory
sizeLimit: 2Gi
- name: render-device
hostPath:
path: /dev/dri/renderD128

extraVolumeMounts:
- name: transcodes
mountPath: /cache/transcodes
- mountPath: /dev/dri/renderD128
name: render-device

0 comments on commit 60cba75

Please sign in to comment.