mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
17 lines
504 B
Go Template
17 lines
504 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
|
|
*/}}
|
|
---
|
|
image:
|
|
registry: "{{ .Values.global.imageRegistry }}"
|
|
url: "{{ .Values.images.openxchangeBootstrap.repository }}"
|
|
digest: "{{ .Values.images.openxchangeBootstrap.digest }}"
|
|
imagePullPolicy: "{{ .Values.global.imagePullPolicy }}"
|
|
|
|
imagePullSecrets:
|
|
{{- range .Values.global.imagePullSecrets }}
|
|
- name: {{ . }}
|
|
{{- end }}
|
|
...
|