feat(k8s/jellyfin): add internal HTTP ingress for LAN access without TLS

This commit is contained in:
2026-02-22 22:47:16 +02:00
parent e146238ce7
commit 931d95224d
2 changed files with 24 additions and 2 deletions

View File

@@ -22,3 +22,24 @@ spec:
name: jellyfin
port:
number: 8096
---
# Internal HTTP-only ingress for LAN access (no TLS overhead for heavy video streams)
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: jellyfin-internal
namespace: jellyfin
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: web
spec:
rules:
- host: ${JELLYFIN_INTERNAL_HOST}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: jellyfin
port:
number: 8096