mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
25 lines
838 B
Go Template
25 lines
838 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
|
|
*/}}
|
|
---
|
|
## The global properties are used to configure multiple charts at once.
|
|
#
|
|
global:
|
|
|
|
## Define host
|
|
#
|
|
domain: {{ env "DOMAIN" | default "souvap.cloud" }}
|
|
|
|
|
|
## Define LDAP service (supports "ums_eval" from the CI pipeline)
|
|
ldap:
|
|
host: {{ if eq (env "DEPLOY_UCS") "ums-eval" }} "ums-ldap-server" {{ else }} "univention-corporate-container" {{ end }}
|
|
notifierHost: {{ if eq (env "DEPLOY_UCS") "ums-eval" }} "ums-ldap-notifier" {{ else }} "univention-corporate-container" {{ end }}
|
|
|
|
## Define docker registry address.
|
|
#
|
|
imageRegistry: {{ env "PRIVATE_IMAGE_REGISTRY_URL" | default "external-registry.souvap-univention.de/sovereign-workplace" }}
|
|
|
|
...
|