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 + + + +