mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
34 lines
1.0 KiB
Go Template
34 lines
1.0 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
|
|
*/}}
|
|
---
|
|
global:
|
|
domain: {{ .Values.global.domain | quote }}
|
|
imageRegistry: {{ .Values.global.imageRegistry | quote }}
|
|
hosts:
|
|
{{ .Values.global.hosts | toYaml | nindent 4 }}
|
|
imagePullSecrets:
|
|
{{ .Values.global.imagePullSecrets | toYaml | nindent 4 }}
|
|
|
|
image:
|
|
imagePullPolicy: {{ .Values.global.imagePullPolicy | quote }}
|
|
repository: {{ .Values.images.matrixNeoBoardWidget.repository | quote }}
|
|
tag: {{ .Values.images.matrixNeoBoardWidget.tag | quote }}
|
|
|
|
ingress:
|
|
enabled: {{ .Values.ingress.enabled }}
|
|
ingressClassName: {{ .Values.ingress.ingressClassName | quote }}
|
|
tls:
|
|
enabled: {{ .Values.ingress.tls.enabled }}
|
|
secretName: {{ .Values.ingress.tls.secretName | quote }}
|
|
|
|
theme:
|
|
{{ .Values.theme | toYaml | nindent 2 }}
|
|
|
|
replicaCount: {{ .Values.replicas.matrixNeoBoardWidget }}
|
|
|
|
resources:
|
|
{{ .Values.resources.matrixNeoBoardWidget | toYaml | nindent 2 }}
|
|
...
|