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