add jellyfin

This commit is contained in:
Bart Geesink 2023-09-17 11:10:18 +02:00
parent fa5e2869ec
commit 86b55d67d0
2 changed files with 36 additions and 0 deletions

25
jellyfin/jellyingress.yml Normal file
View File

@ -0,0 +1,25 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: jellyfin
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
haproxy.org/whitelist: "192.168.86.0/24,10.233.71.0/24"
spec:
ingressClassName: haproxy
rules:
- host: "jellyfin.geesink.org"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: jellyfin
port:
number: 8096
tls:
- hosts:
- home.geesink.org
secretName: jelly-cert-prod

11
jellyfin/pvc.yaml Normal file
View File

@ -0,0 +1,11 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: jellyfin-config
spec:
accessModes:
- ReadWriteOnce
storageClassName: longhorn
resources:
requests:
storage: 1Gi