mirror of
https://github.com/khuedoan/homelab.git
synced 2025-07-10 07:48:36 +07:00
refactor(jellyfin): use app-template chart
Charts from k8s-at-home repository are deprecated.
This commit is contained in:
@ -1,7 +1,6 @@
|
|||||||
apiVersion: v2
|
|
||||||
name: jellyfin
|
name: jellyfin
|
||||||
version: 0.0.0
|
version: 0.0.0
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: jellyfin
|
- name: app-template
|
||||||
version: 9.3.0
|
version: 2.5.0
|
||||||
repository: https://k8s-at-home.com/charts/
|
repository: https://bjw-s.github.io/helm-charts
|
||||||
|
@ -1,8 +1,21 @@
|
|||||||
jellyfin:
|
app-template:
|
||||||
|
controllers:
|
||||||
|
main:
|
||||||
|
containers:
|
||||||
|
main:
|
||||||
|
image:
|
||||||
|
repository: docker.io/jellyfin/jellyfin
|
||||||
|
tag: 10.8.13
|
||||||
|
service:
|
||||||
|
main:
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
|
port: 8096
|
||||||
|
protocol: HTTP
|
||||||
ingress:
|
ingress:
|
||||||
main:
|
main:
|
||||||
enabled: true
|
enabled: true
|
||||||
ingressClassName: nginx
|
className: nginx
|
||||||
annotations:
|
annotations:
|
||||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
hosts:
|
hosts:
|
||||||
@ -10,7 +23,22 @@ jellyfin:
|
|||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
|
service:
|
||||||
|
name: main
|
||||||
|
port: http
|
||||||
tls:
|
tls:
|
||||||
- secretName: jellyfin-tls-certificate
|
- secretName: jellyfin-tls-certificate
|
||||||
hosts:
|
hosts:
|
||||||
- *host
|
- *host
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
size: 1Gi
|
||||||
|
globalMounts:
|
||||||
|
- path: /config
|
||||||
|
media:
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
size: 20Gi
|
||||||
|
globalMounts:
|
||||||
|
- path: /media
|
||||||
|
Reference in New Issue
Block a user