From dbcd964802a7b156323062a54d3363a122d1af0a Mon Sep 17 00:00:00 2001 From: sd109 Date: Wed, 26 Jun 2024 15:15:07 +0100 Subject: [PATCH] Use distinct name for frontend and backend ingress certs --- chart/templates/api/ingress.yml | 2 +- chart/templates/ui/ingress.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chart/templates/api/ingress.yml b/chart/templates/api/ingress.yml index 5588688..f03f198 100644 --- a/chart/templates/api/ingress.yml +++ b/chart/templates/api/ingress.yml @@ -27,6 +27,6 @@ spec: tls: - hosts: - {{ (required "ingress.host is required when ingress.tls is true" .Values.ingress.host) | quote }} - secretName: {{ .Release.Name }}-tls + secretName: {{ .Release.Name }}-api-tls {{- end -}} {{- end -}} diff --git a/chart/templates/ui/ingress.yml b/chart/templates/ui/ingress.yml index a598f85..e9e6e02 100644 --- a/chart/templates/ui/ingress.yml +++ b/chart/templates/ui/ingress.yml @@ -27,6 +27,6 @@ spec: tls: - hosts: - {{ (required "ingress.host is required when ingress.tls is true" .Values.ingress.host) | quote }} - secretName: {{ .Release.Name }}-tls + secretName: {{ .Release.Name }}-ui-tls {{- end -}} {{- end -}}