mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
24 lines
874 B
Go Template
24 lines
874 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:
|
|
domain: {{ .Values.global.domain | quote }}
|
|
hosts:
|
|
{{ .Values.global.hosts | toYaml | nindent 4 }}
|
|
imagePullSecrets:
|
|
{{ .Values.global.imagePullSecrets | toYaml | nindent 4 }}
|
|
|
|
image:
|
|
imagePullPolicy: {{ .Values.global.imagePullPolicy | quote }}
|
|
registry: {{ .Values.global.imageRegistry | default .Values.images.matrixUserVerificationService.registry | quote }}
|
|
repository: {{ .Values.images.matrixUserVerificationService.repository | quote }}
|
|
tag: {{ .Values.images.matrixUserVerificationService.tag | quote }}
|
|
|
|
replicaCount: {{ .Values.replicas.matrixUserVerificationService }}
|
|
|
|
resources:
|
|
{{ .Values.resources.matrixUserVerificationService | toYaml | nindent 2 }}
|
|
...
|