From 320da3bec3a49d974765e567878d5c2f2b4e93ef Mon Sep 17 00:00:00 2001 From: Johannes Bornhold Date: Fri, 1 Sep 2023 11:22:48 +0200 Subject: [PATCH] fix(univention-management-stack): Adjust Ingress configuration for umc --- .../univention-management-stack/values-umc-gateway.gotmpl | 5 +++-- .../univention-management-stack/values-umc-server.gotmpl | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl b/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl index 21ca5851..83c76a26 100644 --- a/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl +++ b/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl @@ -27,7 +27,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: "" ... diff --git a/helmfile/apps/univention-management-stack/values-umc-server.gotmpl b/helmfile/apps/univention-management-stack/values-umc-server.gotmpl index 5b554c88..53b40f17 100644 --- a/helmfile/apps/univention-management-stack/values-umc-server.gotmpl +++ b/helmfile/apps/univention-management-stack/values-umc-server.gotmpl @@ -46,7 +46,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: "" ...