blob: abcfc26b973467aa528076d4b1b36baeb6a028c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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: {}
|