{{/* SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS" SPDX-License-Identifier: Apache-2.0 */}} --- global: domain: "{{ .Values.global.domain }}" registry: "{{ .Values.global.imageRegistry }}" hosts: {{ .Values.global.hosts | toYaml | nindent 4 }} imagePullSecrets: {{ .Values.global.imagePullSecrets | toYaml | nindent 4 }} configuration: additionalConfiguration: logout_redirect_url: "https://{{ .Values.global.hosts.keycloak }}.{{ .Values.global.domain }}/realms/souvap/protocol/openid-connect/logout?client_id=matrix&post_logout_redirect_uri=https%3A%2F%2F{{ .Values.global.hosts.univentionCorporateServer }}.{{ .Values.global.domain }}" image: imagePullPolicy: "{{ .Values.global.imagePullPolicy }}" registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.element.repository }}" tag: "{{ .Values.images.element.tag }}" ingress: host: "{{ .Values.global.hosts.element }}.{{ .Values.global.domain }}" enabled: "{{ .Values.ingress.enabled }}" ingressClassName: "{{ .Values.ingress.ingressClassName }}" tls: enabled: "{{ .Values.ingress.tls.enabled }}" secretName: "{{ .Values.ingress.tls.secretName }}" theme: {{ .Values.theme | toYaml | nindent 2 }} replicaCount: {{ .Values.replicas.element }} resources: {{ .Values.resources.element | toYaml | nindent 2 }} ...