mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-08 00:11:38 +01:00
21 lines
626 B
Go Template
21 lines
626 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
|
|
*/}}
|
|
---
|
|
global:
|
|
imageRegistry: "{{ .Values.global.imageRegistry }}"
|
|
imagePullSecrets:
|
|
{{ .Values.global.imagePullSecrets | toYaml | nindent 4 }}
|
|
|
|
xwiki:
|
|
url: "https://{{ .Values.global.hosts.xwiki }}.{{ .Values.global.domain }}/"
|
|
superadmin:
|
|
username: "superadmin"
|
|
password: {{ .Values.secrets.xwiki.superadminpassword | quote }}
|
|
|
|
image:
|
|
repository: "{{ .Values.images.xwikiInit.repository }}"
|
|
tag: "{{ .Values.images.xwikiInit.tag }}"
|
|
...
|