mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
24 lines
717 B
Go Template
24 lines
717 B
Go Template
{{/*
|
|
SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS"
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/}}
|
|
---
|
|
umcGateway:
|
|
domainname: "{{ .Values.global.domain }}"
|
|
hostname: "{{ .Values.global.hosts.univentionManagementStack }}"
|
|
ssoFqdn: "localhost:8097"
|
|
|
|
image:
|
|
registry: "{{ .Values.global.imageRegistry }}"
|
|
repository: "{{ .Values.images.umsUmcGateway.repository }}"
|
|
pullPolicy: "{{ .Values.global.imagePullPolicy }}"
|
|
tag: "{{ .Values.images.umsUmcGateway.tag }}"
|
|
pullSecrets:
|
|
{{- range .Values.global.imagePullSecrets }}
|
|
- name: {{ . }}
|
|
{{- end }}
|
|
|
|
resources:
|
|
{{ .Values.resources.umsUmcGateway | toYaml | nindent 2 }}
|
|
...
|