From 2cfbc881dc482a51d4a4030ff644e9ef3848024b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sat, 11 Jul 2026 22:57:19 +0000 Subject: [PATCH] new file: deploy/app/ingress-public.yaml modified: deploy/app/kustomization.yaml --- deploy/app/ingress-public.yaml | 18 ++++++++++++++++++ deploy/app/kustomization.yaml | 1 + 2 files changed, 19 insertions(+) create mode 100644 deploy/app/ingress-public.yaml diff --git a/deploy/app/ingress-public.yaml b/deploy/app/ingress-public.yaml new file mode 100644 index 0000000..061da3b --- /dev/null +++ b/deploy/app/ingress-public.yaml @@ -0,0 +1,18 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: jellyfin + annotations: + kubernetes.io/ingress.class: traefik-public +spec: + entryPoints: + - websecure + routes: + - match: Host(`media.casa.limbosolutions.com`) + kind: Rule + services: + - name: jellyfin + port: 8096 + tls: + secretName: casa-limbosolutions-com-tls + diff --git a/deploy/app/kustomization.yaml b/deploy/app/kustomization.yaml index d1f3400..7c9efed 100644 --- a/deploy/app/kustomization.yaml +++ b/deploy/app/kustomization.yaml @@ -5,6 +5,7 @@ resources: - deployment.yaml - service.yaml - ingress.yaml + - ingress-public.yaml - volumes.music.yaml - volumes.tv-shows.yaml - volumes.movies.yaml