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