Files
turingpi/helm-values/plex_values.yml
T
argocd-image-updater 290ce6a103 build: automatic update of plex
updates image linuxserver/plex tag '1.43.1.10611-1e34174b1-ls304' to '1.43.1.10611-1e34174b1-ls305'
2026-05-11 12:31:16 +00:00

40 lines
1.0 KiB
YAML

claimToken: "claim-E_NxQDtUMMVsLCBFvybK"
image:
repository: linuxserver/plex
tag: "1.43.1.10611-1e34174b1-ls305"
pullPolicy: Always
kubePlex:
enabled: false # kubePlex (transcoder job) is disabled because not available on ARM. The transcoding will be performed by the main Plex instance instead of a separate Job.
timezone: Europe/Amsterdam
service:
type: LoadBalancer # We will use a LoadBalancer to obtain a virtual IP that can be exposed to Plex Media via our router
port: 32400 # Port to expose Plex
rbac:
create: true
nodeSelector:
kubernetes.io/arch: amd64
persistence:
transcode:
claimName: "plex-transcode"
data:
claimName: "plex-data"
config:
claimName: "plex-config"
# GPU support for hardware-accelerated transcoding
gpu:
enabled: true
hostPath: "/dev/dri"
mountPath: "/dev/dri"
resources:
requests:
memory: "2Gi"
cpu: "1"
ephemeral-storage: "50Mi"
limits:
memory: "10Gi"
cpu: "3"
ephemeral-storage: "1Gi"
podAnnotations: {}
proxy:
enable: false