mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
25 lines
889 B
Go Template
25 lines
889 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
|
|
*/}}
|
|
---
|
|
umcServer:
|
|
# TODO: Secret should be entered without b64enc
|
|
ldapSecret: {{ .Values.secrets.univentionManagementStack.ldapSecret | b64enc | quote }}
|
|
# TODO: Secret should be entered without b64enc
|
|
machineSecret: {{ .Values.secrets.univentionManagementStack.ldapSecret | b64enc | quote }}
|
|
|
|
image:
|
|
registry: {{ .Values.global.imageRegistry | quote }}
|
|
repository: {{ .Values.images.umsUmcServer.repository | quote }}
|
|
pullPolicy: {{ .Values.global.imagePullPolicy | quote }}
|
|
tag: {{ .Values.images.umsUmcServer.tag | quote }}
|
|
pullSecrets:
|
|
{{- range .Values.global.imagePullSecrets }}
|
|
- name: {{ . | quote }}
|
|
{{- end }}
|
|
|
|
resources:
|
|
{{ .Values.resources.umsUmcServer | toYaml | nindent 2 }}
|
|
...
|