From 5e1a7b19e278147d010c48dac2da111f828dd115 Mon Sep 17 00:00:00 2001 From: Johannes Bornhold Date: Thu, 31 Aug 2023 22:26:00 +0200 Subject: [PATCH] fix(univention-management-stack): Adjust Ingress configuration of notifications-api --- .../values-notifications-api.gotmpl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/helmfile/apps/univention-management-stack/values-notifications-api.gotmpl b/helmfile/apps/univention-management-stack/values-notifications-api.gotmpl index 053e3290..d9529b3f 100644 --- a/helmfile/apps/univention-management-stack/values-notifications-api.gotmpl +++ b/helmfile/apps/univention-management-stack/values-notifications-api.gotmpl @@ -40,6 +40,8 @@ ingress: host: "{{ .Values.global.hosts.univentionManagementStack }}.{{ .Values.global.domain }}" ingressClassName: "{{ .Values.ingress.ingressClassName }}" tls: - enabled: {{ .Values.ingress.tls.enabled }} - secretName: "{{ .Values.ingress.tls.secretName }}" + # The TLS configuration is on the "master" Ingress, see "portal-frontend" + enabled: false + secretName: "" + ...