From bb8b3f4ab6fff4528cf6c4047c1710111f7b52ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Sun, 16 Mar 2025 18:29:48 +0100 Subject: [PATCH] update jelly ingress --- .../{ingress.yaml => panic-ingress.yaml} | 0 deploy/jellyfin/play-ingress.yaml | 29 +++++++++++++++++++ 2 files changed, 29 insertions(+) rename deploy/jellyfin/{ingress.yaml => panic-ingress.yaml} (100%) create mode 100644 deploy/jellyfin/play-ingress.yaml diff --git a/deploy/jellyfin/ingress.yaml b/deploy/jellyfin/panic-ingress.yaml similarity index 100% rename from deploy/jellyfin/ingress.yaml rename to deploy/jellyfin/panic-ingress.yaml diff --git a/deploy/jellyfin/play-ingress.yaml b/deploy/jellyfin/play-ingress.yaml new file mode 100644 index 0000000..8b42ba0 --- /dev/null +++ b/deploy/jellyfin/play-ingress.yaml @@ -0,0 +1,29 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: jellyfin-ingress + namespace: jellyfin + annotations: + kubernetes.io/ingress.class: "nginx" + acme.cert-manager.io/disable-http01-propagation-check: "true" + cert-manager.io/cluster-issuer: "letsencrypt-prod" +spec: + tls: + - hosts: + - play.beatrice.wtf + secretName: jellyfin-bea-tls + rules: + - host: play.beatrice.wtf + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: jellyfin + port: + number: 8096 + + + +