From b60f2a7407bb8688e01b27a83a37a7de55fc4070 Mon Sep 17 00:00:00 2001 From: Jonny Ervine Date: Wed, 27 Sep 2023 21:20:42 +0800 Subject: [PATCH] Add ingress --- jellyfin/templates/ingress.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jellyfin/templates/ingress.yaml b/jellyfin/templates/ingress.yaml index 3d979cf..edf527c 100644 --- a/jellyfin/templates/ingress.yaml +++ b/jellyfin/templates/ingress.yaml @@ -1,12 +1,12 @@ {{- if .Values.ingress.external.enabled -}} -{{- $fullName := include "emby.fullname" . -}} +{{- $fullName := include "jellyfin.fullname" . -}} {{- $svcPort := .Values.service.port -}} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: {{ $fullName }}-ext labels: - {{- include "emby.labels" . | nindent 4 }} + {{- include "jellyfin.labels" . | nindent 4 }} {{- with .Values.ingress.external.annotations }} annotations: {{- toYaml . | nindent 4 }} @@ -40,14 +40,14 @@ spec: {{- end }} --- {{- if .Values.ingress.internal.enabled -}} -{{- $fullName := include "emby.fullname" . -}} +{{- $fullName := include "jellyfin.fullname" . -}} {{- $svcPort := .Values.service.port -}} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: {{ $fullName }}-int labels: - {{- include "emby.labels" . | nindent 4 }} + {{- include "jellyfin.labels" . | nindent 4 }} {{- with .Values.ingress.external.annotations }} annotations: {{- toYaml . | nindent 4 }}