mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
45 lines
1.6 KiB
Go Template
45 lines
1.6 KiB
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
|
|
*/}}
|
|
---
|
|
udmRestApi:
|
|
apiLogLevel: "4"
|
|
authGroups:
|
|
dcBackup: "cn=DC Backup Hosts,cn=groups,dc=swp-ldap,dc=internal"
|
|
dcSlaves: "cn=DC Slave Hosts,cn=groups,dc=swp-ldap,dc=internal"
|
|
domainAdmins: "cn=Domain Admins,cn=groups,dc=swp-ldap,dc=internal"
|
|
ldapHost: "ums-ldap-server"
|
|
ldapBaseDn: "dc=swp-ldap,dc=internal"
|
|
# TODO: This should not be required, the machine account is not there
|
|
# ldapHostDn: cn=stub-value,cn=dc,cn=computers,dc=swp-ldap,dc=internal
|
|
ldapHostDn: "cn=admin,dc=swp-ldap,dc=internal"
|
|
# TODO: Secret should be entered without b64enc
|
|
ldapSecret: "{{ .Values.secrets.univentionManagementStack.ldapSecret | b64enc }}"
|
|
# TODO: Secret should be entered without b64enc
|
|
machineSecret: "{{ .Values.secrets.univentionManagementStack.ldapSecret | b64enc }}"
|
|
# TODO: why do we need this many subprocesses?
|
|
numberOfSubprocesses: 8
|
|
# TODO: Stub value currently
|
|
caCert: ""
|
|
# TODO: This should not be part of the udm-rest-api anymore
|
|
loadJoinData:
|
|
enabled: true
|
|
# TODO: configurable
|
|
tlsMode: "off"
|
|
|
|
image:
|
|
registry: "{{ .Values.global.imageRegistry }}"
|
|
repository: "{{ .Values.images.umsUdmRestApi.repository }}"
|
|
pullPolicy: "{{ .Values.global.imagePullPolicy }}"
|
|
tag: "{{ .Values.images.umsUdmRestApi.tag }}"
|
|
pullSecrets:
|
|
{{- range .Values.global.imagePullSecrets }}
|
|
- name: {{ . }}
|
|
{{- end }}
|
|
|
|
resources:
|
|
{{ .Values.resources.umsUdmRestApi | toYaml | nindent 2 }}
|
|
|
|
...
|