Skip to content
Snippets Groups Projects
values.yaml 641 B
replicaCount: 1

image:
  repository: jellyfin/jellyfin
  pullPolicy: IfNotPresent
  tag: ""

imagePullSecrets: [ ]
nameOverride: ""
fullnameOverride: ""

service:
  type: ClusterIP

ingress:
  host: "example.com"
  path: "/"
  annotations: {}

volumes:
  data: |-
    emptyDir: {}
  config: |-
    emptyDir: {}
  media: |-
    emptyDir: {}

podAnnotations: { }

podSecurityContext:
  fsGroup: 2000

securityContext:
  capabilities:
    drop:
      - ALL
  runAsNonRoot: true
  runAsUser: 1000

resources:
  limits:
    cpu: "2"
    memory: 2Gi
  requests:
    cpu: 400m
    memory: 512Mi

nodeSelector: { }

tolerations: [ ]

affinity: { }