mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
32 lines
876 B
Go Template
32 lines
876 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
|
|
*/}}
|
|
---
|
|
umcGateway:
|
|
|
|
extraVolumes:
|
|
- name: "entrypoint-swp-patches"
|
|
configMap:
|
|
name: "ums-stack-data-swp-umc-gateway-entrypoint"
|
|
defaultMode: 0555
|
|
|
|
extraVolumeMounts:
|
|
- name: "entrypoint-swp-patches"
|
|
mountPath: "/entrypoint.d/90-swp.sh"
|
|
subPath: "90-swp.sh"
|
|
|
|
image:
|
|
registry: {{ .Values.global.imageRegistry | quote }}
|
|
repository: {{ .Values.images.umsUmcGateway.repository | quote }}
|
|
pullPolicy: {{ .Values.global.imagePullPolicy | quote }}
|
|
tag: {{ .Values.images.umsUmcGateway.tag | quote }}
|
|
pullSecrets:
|
|
{{- range .Values.global.imagePullSecrets }}
|
|
- name: {{ . | quote }}
|
|
{{- end }}
|
|
|
|
resources:
|
|
{{ .Values.resources.umsUmcGateway | toYaml | nindent 2 }}
|
|
...
|