diff --git a/helmfile/apps/univention-management-stack/helmfile.yaml b/helmfile/apps/univention-management-stack/helmfile.yaml index 9086d509..7007cbc0 100644 --- a/helmfile/apps/univention-management-stack/helmfile.yaml +++ b/helmfile/apps/univention-management-stack/helmfile.yaml @@ -209,6 +209,7 @@ releases: - "values-common.gotmpl" - "values-common.yaml" - "values-umc-gateway.gotmpl" + - "values-umc-gateway.yaml" installed: {{ .Values.univentionManagementStack.enabled }} # renovate: diff --git a/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl b/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl index 57ab40bd..1dd7a667 100644 --- a/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl +++ b/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl @@ -3,28 +3,6 @@ SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG Ze SPDX-License-Identifier: Apache-2.0 */}} --- -umcGateway: - -extraVolumes: - - name: "entrypoint-swp-patches" - configMap: - name: "ums-stack-data-swp-umc-gateway-entrypoint" - defaultMode: 0555 - - name: "announcements-customization" - configMap: - name: "ums-stack-data-swp-umc-server-announcements" - defaultMode: 0444 - - -extraVolumeMounts: - - name: "entrypoint-swp-patches" - mountPath: "/entrypoint.d/90-swp.sh" - subPath: "90-swp.sh" - - name: "announcements-customization" - mountPath: "/usr/share/univention-management-console-frontend/js/dijit/themes/umc/icons/16x16/udm-portals-announcement.png" - subPath: "udm-portals-announcement.png" - - image: registry: {{ .Values.global.imageRegistry | quote }} repository: {{ .Values.images.umsUmcGateway.repository | quote }} diff --git a/helmfile/apps/univention-management-stack/values-umc-gateway.yaml b/helmfile/apps/univention-management-stack/values-umc-gateway.yaml new file mode 100644 index 00000000..21855969 --- /dev/null +++ b/helmfile/apps/univention-management-stack/values-umc-gateway.yaml @@ -0,0 +1,21 @@ +# SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS" +# SPDX-License-Identifier: Apache-2.0 +--- +extraVolumes: + - name: "entrypoint-swp-patches" + configMap: + name: "ums-stack-data-swp-umc-gateway-entrypoint" + defaultMode: 0555 + - name: "announcements-customization" + configMap: + name: "ums-stack-data-swp-umc-server-announcements" + defaultMode: 0444 + +extraVolumeMounts: + - name: "entrypoint-swp-patches" + mountPath: "/entrypoint.d/90-swp.sh" + subPath: "90-swp.sh" + - name: "announcements-customization" + mountPath: "/usr/share/univention-management-console-frontend/js/dijit/themes/umc/icons/16x16/udm-portals-announcement.png" + subPath: "udm-portals-announcement.png" +...