mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
![feisar-bot[bot]](/assets/img/avatar_default.png)
| datasource | package | from | to | | ---------- | ------------------------- | ------- | ------- | | docker | ghcr.io/jellyfin/jellyfin | 10.10.6 | 10.10.7 |
154 lines
4.3 KiB
YAML
154 lines
4.3 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: &app jellyfin
|
|
namespace: default
|
|
spec:
|
|
interval: 1h
|
|
chartRef:
|
|
kind: OCIRepository
|
|
name: app-template
|
|
namespace: flux-system
|
|
install:
|
|
remediation:
|
|
retries: 3
|
|
upgrade:
|
|
cleanupOnFail: true
|
|
remediation:
|
|
strategy: rollback
|
|
retries: 3
|
|
values:
|
|
defaultPodOptions:
|
|
# affinity:
|
|
# nodeAffinity:
|
|
# preferredDuringSchedulingIgnoredDuringExecution:
|
|
# - weight: 1
|
|
# preference:
|
|
# matchExpressions:
|
|
# # Intel N100
|
|
# - key: feature.node.kubernetes.io/cpu-model.id
|
|
# operator: In
|
|
# values:
|
|
# - "190"
|
|
# requiredDuringSchedulingIgnoredDuringExecution:
|
|
# nodeSelectorTerms:
|
|
# - matchExpressions:
|
|
# # Intel N100
|
|
# - key: feature.node.kubernetes.io/cpu-model.id
|
|
# operator: In
|
|
# values:
|
|
# - "190"
|
|
# - key: intel.feature.node.kubernetes.io/gpu
|
|
# operator: In
|
|
# values:
|
|
# - "true"
|
|
enableServiceLinks: false
|
|
securityContext:
|
|
runAsUser: 568
|
|
runAsGroup: 568
|
|
fsGroup: 568
|
|
fsGroupChangePolicy: OnRootMismatch
|
|
controllers:
|
|
jellyfin:
|
|
annotations:
|
|
reloader.stakater.com/auto: "true"
|
|
secret.reloader.stakater.com/reload: authelia-secret
|
|
containers:
|
|
app:
|
|
image:
|
|
repository: ghcr.io/jellyfin/jellyfin
|
|
tag: 10.10.7@sha256:e4d1dc5374344446a3a78e43dd211247f22afba84ea2e5a13cbe1a94e1ff2141
|
|
env:
|
|
DOTNET_SYSTEM_IO_DISABLEFILELOCKING: "true"
|
|
JELLYFIN_FFmpeg__probesize: 50000000
|
|
JELLYFIN_FFmpeg__analyzeduration: 50000000
|
|
JELLYFIN_PublishedServerUrl: &loadBalancerIP ${CLUSTER_LB_JELLYFIN}
|
|
TZ: ${TIMEZONE}
|
|
probes:
|
|
liveness: &probes
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
httpGet:
|
|
path: /health
|
|
port: &port 8096
|
|
initialDelaySeconds: 0
|
|
periodSeconds: 10
|
|
timeoutSeconds: 1
|
|
failureThreshold: 3
|
|
readiness: *probes
|
|
startup:
|
|
enabled: false
|
|
resources:
|
|
requests:
|
|
gpu.intel.com/i915: 1
|
|
cpu: 100m
|
|
memory: 512Mi
|
|
limits:
|
|
gpu.intel.com/i915: 1
|
|
memory: 4Gi
|
|
service:
|
|
app:
|
|
controller: *app
|
|
type: LoadBalancer
|
|
loadBalancerIP: 192.168.169.110
|
|
externalTrafficPolicy: Local
|
|
ports:
|
|
http:
|
|
port: 8096
|
|
ingress:
|
|
app:
|
|
enabled: true
|
|
className: external
|
|
annotations:
|
|
hajimari.io/icon: simple-icons:jellyfin
|
|
hosts:
|
|
- host: &host "{{ .Release.Name }}.${SECRET_EXTERNAL_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
service:
|
|
identifier: app
|
|
port: http
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
existingClaim: *app
|
|
globalMounts:
|
|
- path: /config
|
|
music:
|
|
enabled: true
|
|
type: nfs
|
|
server: 192.168.9.10
|
|
path: /var/mnt/vol1/music
|
|
globalMounts:
|
|
- path: /mnt/storage/music
|
|
photo:
|
|
enabled: true
|
|
type: nfs
|
|
server: 192.168.9.10
|
|
path: /var/mnt/vol1/photo
|
|
globalMounts:
|
|
- path: /mnt/storage/photo
|
|
video:
|
|
enabled: true
|
|
type: nfs
|
|
server: 192.168.9.10
|
|
path: /var/mnt/vol1/video
|
|
globalMounts:
|
|
- path: /mnt/storage/video
|
|
transcode:
|
|
enabled: true
|
|
type: emptyDir
|
|
globalMounts:
|
|
- path: /transcode
|
|
cache:
|
|
enabled: true
|
|
type: emptyDir
|
|
globalMounts:
|
|
- path: /cache
|