mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
30 lines
795 B
Go Template
30 lines
795 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
|
|
*/}}
|
|
---
|
|
stackDataUms:
|
|
udmApiPassword: "univention"
|
|
udmApiUrl: "http://ums-udm-rest-api/udm/"
|
|
loadDevData: true
|
|
|
|
stackDataContext:
|
|
initialPasswordAdministrator: "univention"
|
|
|
|
# The SWP configuration brings its own UMC policies.
|
|
installUmcPolicies: false
|
|
|
|
image:
|
|
registry: "{{ .Values.global.imageRegistry }}"
|
|
repository: "{{ .Values.images.umsDataLoader.repository }}"
|
|
pullPolicy: "Always"
|
|
tag: "{{ .Values.images.umsDataLoader.tag }}"
|
|
pullSecrets:
|
|
{{- range .Values.global.imagePullSecrets }}
|
|
- name: {{ . }}
|
|
{{- end }}
|
|
|
|
resources:
|
|
{{ .Values.resources.umsStackDataUms | toYaml | nindent 2 }}
|
|
...
|