From 0a043f04a3e212b50b8fda152b671a79ac960df1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Sun, 16 Mar 2025 02:29:21 +0100 Subject: [PATCH] fix jelly --- deploy/jellyfin/ingress.yaml | 44 ++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/deploy/jellyfin/ingress.yaml b/deploy/jellyfin/ingress.yaml index 2bddd61..adc457e 100644 --- a/deploy/jellyfin/ingress.yaml +++ b/deploy/jellyfin/ingress.yaml @@ -1,24 +1,28 @@ -# For microk8s default nginx ingress controller (enable by running 'microk8s enable ingress') - apiVersion: networking.k8s.io/v1 kind: Ingress metadata: - name: jellyfin-ingress + name: jellyfin-ingress + namespace: jellyfin annotations: - cert-manager.io/cluster-issuer: letsencrypt-prod -spec - tls: - - hosts: - - play.panic.haus - secretName: jellyfin-tls - rules: - - host: play.panic.haus - http: - paths: - - backend: - service: - name: jellyfin - port: - number: 8096 - path: / - pathType: Prefix + kubernetes.io/ingress.class: "nginx" + cert-manager.io/cluster-issuer: "letsencrypt-prod" +spec: + tls: + - hosts: + - play.panic.haus + secretName: jellyfin-tls + rules: + - host: play.panic.haus + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: jellyfin + port: + number: 80 + + + +