Files
helm-charts/jellyfin/values.yaml
T
sha 0e727ff2a8 fix(jellyfin): use v-prefixed tag to match actual ghcr.io tags
Image tags are v10.11.x not 10.11.x — the version-pattern stripping v
caused the pulled tag to not exist. Drop version-pattern and keep v prefix
in both appVersion and image.tag so hs node can pull the image again.
2026-06-19 01:01:07 +03:00

118 lines
2.5 KiB
YAML

# Default values for jellyfin.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: ghcr.io/rogly-net/jellyfin-postgresql
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v10.11.11"
nameOverride: ""
fullnameOverride: ""
namespaceOverride: ""
service:
type: ClusterIP
port: 80
ingress:
enabled: false
className: ""
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
traefik.ingress.kubernetes.io/router.tls: "true"
traefik.ingress.kubernetes.io/router.tls.certresolver: letsencrypt
traefik.ingress.kubernetes.io/router.middlewares: traefik-redirect-to-https@kubernetescrd
hosts:
- host: jellyfin.lan
paths:
- path: /
pathType: Prefix
tls: []
# - secretName: jellyfin-tls
# hosts:
# - jellyfin.lan
resources:
requests:
cpu: 250m
memory: 512Mi
limits:
cpu: "8"
memory: 4Gi
persistence:
config:
enabled: true
type: hostPath # or pvc
hostPath: /srv/data/jellyfin
# existingClaim: jellyfin-config
mountPath: /config
size: 10Gi
accessModes:
- ReadWriteOnce
storageClass: ""
media:
enabled: true
type: hostPath
hostPath: /storage/media
mountPath: /storage/media
dri:
enabled: true
type: hostPath
hostPath: /dev/dri
mountPath: /dev/dri
# Additional volumes (like sas14, sas16, etc. in jellyfin-hs)
extraVolumes: []
# - name: sas14
# hostPath:
# path: /storage/sas14
# type: DirectoryOrCreate
extraVolumeMounts: []
# - name: sas14
# mountPath: /storage/sas14
postgres:
host: postgres-tcp.postgres.svc.cluster.local
port: 5432
db: jellyfin
user: jellyfin
adminUser: postgres
existingSecret: jellyfin-secret
adminSecret: "" # If empty, existingSecret is used
adminSecretKey: POSTGRES_ADMIN_PASSWORD
adminUserKey: "" # If empty, .Values.postgres.adminUser is used
# Keys in the secret:
# JELLYFIN_POSTGRESQL_PASSWORD
# POSTGRES_ADMIN_PASSWORD
dbInit:
enabled: true
image: postgres:15-alpine
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 100m
memory: 128Mi
backup:
enabled: true
schedule: "0 2 * * *"
image: postgres:16
retentionDays: 10
storagePath: /storage/backups/postgres
resources: {}
# Node to run backup on (hostname). If set, overrides global affinity/tolerations for the backup CronJob.
node: ""
nodeSelector: {}
tolerations: []
affinity: {}