38 lines
724 B
YAML
38 lines
724 B
YAML
# Default values for Plex.
|
|
|
|
image:
|
|
repository: ghcr.io/k8s-at-home/plex
|
|
pullPolicy: IfNotPresent
|
|
tag: v1.24.3.5033-757abe6b4@sha256:23a65cc78a0aab38f26a60d38f65eefcb2db7dc4e5d99c4ac7ad8f722c677654
|
|
|
|
securityContext:
|
|
privileged: false
|
|
readOnlyRootFilesystem: false
|
|
allowPrivilegeEscalation: true
|
|
runAsNonRoot: true
|
|
|
|
# 44=video 107=render
|
|
podSecurityContext:
|
|
runAsUser: 568
|
|
runAsGroup: 568
|
|
fsGroup: 568
|
|
supplementalGroups: [44, 107]
|
|
fsGroupChangePolicy: "OnRootMismatch"
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 32400
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
type: pvc
|
|
accessMode: ReadWriteOnce
|
|
size: "100Gi"
|
|
|
|
env:
|
|
ALLOWED_NETWORKS: "172.16.0.0/16"
|