diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-06 09:09:13 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-06 09:09:13 +0200 |
| commit | b994a8ebc1f164be107351ae6e2539b069013efe (patch) | |
| tree | edf8f61e39ab8db40e82da7f7de97c9fe0391d76 /f3s/jellyfin/helm-chart/values.yaml | |
| parent | b1ed702825176ba93ad1ae754432cdb76765b9ff (diff) | |
fix(jellyfin): move values.yaml to helm-chart directory
Co-authored-by: Cursor <cursoragent@cursor.com>
Diffstat (limited to 'f3s/jellyfin/helm-chart/values.yaml')
| -rw-r--r-- | f3s/jellyfin/helm-chart/values.yaml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/f3s/jellyfin/helm-chart/values.yaml b/f3s/jellyfin/helm-chart/values.yaml new file mode 100644 index 0000000..abcfc26 --- /dev/null +++ b/f3s/jellyfin/helm-chart/values.yaml @@ -0,0 +1,52 @@ +# Jellyfin Helm Chart Configuration +# Deploy to services namespace with persistent storage + +# Image configuration +image: + repository: jellyfin/jellyfin + tag: "10.11.6" + pullPolicy: IfNotPresent + +# Persistence +persistence: + config: + enabled: true + type: pvc + existingClaim: jellyfin-pvc + mountPath: /config + size: 50Gi + +# Service configuration +service: + type: ClusterIP + port: 8096 + +# Ingress configuration +ingress: + enabled: true + ingressClassName: traefik + annotations: + traefik.ingress.kubernetes.io/router.entrypoints: web + hosts: + - host: jellyfin.f3s.buetow.org + paths: + - path: / + pathType: Prefix + +# Resources +resources: + requests: + cpu: 500m + memory: 512Mi + limits: + cpu: 4000m + memory: 4Gi + +# Node selector (if needed) +nodeSelector: {} + +# Tolerations (if needed) +tolerations: [] + +# Affinity rules (if needed) +affinity: {} |
