mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
29 lines
889 B
YAML
29 lines
889 B
YAML
# SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS"
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
---
|
|
bases:
|
|
- "../../bases/environments.yaml"
|
|
---
|
|
repositories:
|
|
# CryptPad
|
|
# Source: https://github.com/cryptpad/helm
|
|
- name: "cryptpad-repo"
|
|
username: {{ .Values.charts.cryptpad.username | quote }}
|
|
password: {{ .Values.charts.cryptpad.password | quote }}
|
|
oci: {{ .Values.charts.cryptpad.oci }}
|
|
url: "{{ .Values.charts.cryptpad.registry }}/{{ .Values.charts.cryptpad.repository }}"
|
|
|
|
releases:
|
|
- name: "cryptpad"
|
|
chart: "cryptpad-repo/{{ .Values.charts.cryptpad.name }}"
|
|
version: "{{ .Values.charts.cryptpad.version }}"
|
|
values:
|
|
- "values.yaml"
|
|
- "values.gotmpl"
|
|
installed: {{ .Values.cryptpad.enabled }}
|
|
|
|
commonLabels:
|
|
deploy-stage: "component-1"
|
|
component: "cryptpad"
|
|
...
|