mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
32 lines
1.0 KiB
Go Template
32 lines
1.0 KiB
Go Template
# SPDX-FileCopyrightText: 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
---
|
|
repositories:
|
|
# Notes
|
|
# Source: https://github.com/numerique-gouv/impress
|
|
- name: "notes-repo"
|
|
keyring: "../../files/gpg-pubkeys/opencode.gpg"
|
|
verify: {{ .Values.charts.notes.verify }}
|
|
username: {{ env "OD_PRIVATE_REGISTRY_USERNAME" | quote }}
|
|
password: {{ env "OD_PRIVATE_REGISTRY_PASSWORD" | quote }}
|
|
oci: true
|
|
url: "{{ .Values.global.helmRegistry | default .Values.charts.notes.registry }}/{{ .Values.charts.notes.repository }}"
|
|
|
|
releases:
|
|
- name: "impress"
|
|
chart: "notes-repo/{{ .Values.charts.notes.name }}"
|
|
version: "{{ .Values.charts.notes.version }}"
|
|
wait: true
|
|
values:
|
|
- "values.yaml.gotmpl"
|
|
{{- range .Values.customization.release.notes }}
|
|
- {{ . }}
|
|
{{- end }}
|
|
installed: {{ .Values.notes.enabled }}
|
|
timeout: 1800
|
|
|
|
commonLabels:
|
|
deploy-stage: "component-1"
|
|
component: "notes"
|
|
...
|