2024-08-14 20:24:36 +00:00
|
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json
|
2024-06-15 19:37:56 +00:00
|
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
2023-04-09 05:49:28 +00:00
|
|
|
kind: HelmRelease
|
|
|
|
metadata:
|
|
|
|
name: jellyfin
|
|
|
|
namespace: media
|
|
|
|
spec:
|
|
|
|
interval: 5m
|
|
|
|
chart:
|
|
|
|
spec:
|
|
|
|
chart: app-template
|
2024-08-14 20:24:36 +00:00
|
|
|
version: 3.3.2
|
2023-04-09 05:49:28 +00:00
|
|
|
sourceRef:
|
|
|
|
kind: HelmRepository
|
|
|
|
name: bjws-charts
|
|
|
|
namespace: flux-system
|
|
|
|
|
|
|
|
values:
|
2024-08-14 20:24:36 +00:00
|
|
|
controllers:
|
|
|
|
main:
|
|
|
|
containers:
|
|
|
|
app:
|
|
|
|
image:
|
|
|
|
repository: linuxserver/jellyfin
|
2024-10-26 19:09:49 +00:00
|
|
|
tag: 10.10.0
|
2024-08-14 20:24:36 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
PUID: 10000
|
|
|
|
PGID: 10000
|
|
|
|
TZ: America/New_York
|
|
|
|
|
|
|
|
resources:
|
|
|
|
# requests:
|
|
|
|
# cpu: 100m
|
|
|
|
limits:
|
|
|
|
gpu.intel.com/i915: 1
|
|
|
|
memory: 16Gi
|
2023-10-27 13:33:02 +00:00
|
|
|
|
2024-08-14 20:24:36 +00:00
|
|
|
defaultPodOptions:
|
|
|
|
nodeSelector:
|
|
|
|
intel.feature.node.kubernetes.io/gpu: "true"
|
|
|
|
|
2023-04-09 05:49:28 +00:00
|
|
|
service:
|
2024-08-14 20:24:36 +00:00
|
|
|
app:
|
|
|
|
controller: main
|
|
|
|
|
2023-04-09 05:49:28 +00:00
|
|
|
ports:
|
|
|
|
http:
|
|
|
|
port: 8096
|
2024-08-14 20:24:36 +00:00
|
|
|
|
2023-04-09 05:49:28 +00:00
|
|
|
ingress:
|
|
|
|
main:
|
|
|
|
annotations:
|
2023-04-15 05:17:55 +00:00
|
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
2023-04-09 05:49:28 +00:00
|
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
2024-08-14 20:24:36 +00:00
|
|
|
|
2023-04-09 05:49:28 +00:00
|
|
|
hosts:
|
2024-08-14 20:24:36 +00:00
|
|
|
- host: "watch.${SECRET_NEW_DOMAIN}"
|
2023-04-09 05:49:28 +00:00
|
|
|
paths:
|
|
|
|
- path: /
|
2024-08-14 20:24:36 +00:00
|
|
|
service:
|
|
|
|
identifier: app
|
|
|
|
port: http
|
|
|
|
|
2023-04-09 05:49:28 +00:00
|
|
|
persistence:
|
|
|
|
config:
|
|
|
|
type: hostPath
|
|
|
|
hostPath: /mnt/MainPool/Kubernetes/jellyfin
|
2024-08-14 20:24:36 +00:00
|
|
|
globalMounts:
|
|
|
|
- path: /config
|
|
|
|
|
|
|
|
media:
|
2023-04-09 05:49:28 +00:00
|
|
|
type: hostPath
|
|
|
|
hostPath: /mnt/MainPool/Media/Media
|
2024-08-14 20:24:36 +00:00
|
|
|
globalMounts:
|
|
|
|
- path: /storage/Media
|
|
|
|
readOnly: true
|