mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
45 lines
1.5 KiB
Go Template
45 lines
1.5 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
|
|
*/}}
|
|
---
|
|
ldapServer:
|
|
ldapSecret: "{{ .Values.secrets.univentionManagementStack.ldapSecret }}"
|
|
ldapBaseDn: "dc=swp-ldap,dc=internal"
|
|
|
|
# TODO: Certificates handling
|
|
# caCert: ""
|
|
# certPem: ""
|
|
# privateKey: ""
|
|
# dhParam: ""
|
|
tlsMode: "off"
|
|
|
|
# TODO: SAML integration
|
|
# samlMetadataUrl: "http://localhost:8097/realms/ucs/protocol/saml/descriptor"
|
|
# samlMetadataUrlInternal: "http://keycloak.default/realms/ucs/protocol/saml/descriptor"
|
|
# serviceProviders: "http://localhost:8000/univention/saml/metadata,http://localhost:8000/auth/realms/ucs"
|
|
|
|
image:
|
|
registry: "{{ .Values.global.imageRegistry }}"
|
|
repository: "{{ .Values.images.umsLdapServer.repository }}"
|
|
pullPolicy: "{{ .Values.global.imagePullPolicy }}"
|
|
tag: "{{ .Values.images.umsLdapServer.tag }}"
|
|
pullSecrets:
|
|
{{- range .Values.global.imagePullSecrets }}
|
|
- name: {{ . }}
|
|
{{- end }}
|
|
|
|
# TODO: Pending upstream support, #199
|
|
persistence:
|
|
data:
|
|
storageClassName: "{{ .Values.persistence.storageClassNames.RWO }}"
|
|
size: "{{ .Values.persistence.size.univentionManagementStack.ldapServerData }}"
|
|
shared:
|
|
storageClassName: "{{ .Values.persistence.storageClassNames.RWO }}"
|
|
size: "{{ .Values.persistence.size.univentionManagementStack.ldapServerShared }}"
|
|
|
|
|
|
resources:
|
|
{{ .Values.resources.umsLdapServer | toYaml | nindent 2 }}
|
|
...
|