35 lines
834 B
YAML
35 lines
834 B
YAML
apiVersion: helm.cattle.io/v1
|
|
kind: HelmChart
|
|
metadata:
|
|
name: jellyfin
|
|
namespace: jellyfin
|
|
spec:
|
|
repo: https://jellyfin.github.io/jellyfin-helm
|
|
chart: jellyfin
|
|
targetNamespace: jellyfin
|
|
# https://github.com/jellyfin/jellyfin-helm/releases
|
|
version: 2.3.0
|
|
valuesContent: |-
|
|
timezone: "America/New_York"
|
|
ingress:
|
|
enabled: true
|
|
className: "nginx"
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "letsencrypt-cluster-issuer"
|
|
hosts:
|
|
- host: media.keligrubb.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: jellyfin-tls
|
|
hosts:
|
|
- media.keligrubb.com
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
size: 5Gi
|
|
media:
|
|
enabled: true
|
|
existingClaim: "jellyfin-nfs-media-pvc"
|