mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
29 lines
1.0 KiB
Go Template
29 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:
|
|
# openDesk Jitsi
|
|
# Source: https://gitlab.opencode.de/bmi/opendesk/components/platform-development/charts/opendesk-jitsi
|
|
- name: "jitsi-repo"
|
|
keyring: "../../files/gpg-pubkeys/opencode.gpg"
|
|
verify: {{ .Values.charts.jitsi.verify }}
|
|
username: {{ env "OD_PRIVATE_REGISTRY_USERNAME" | quote }}
|
|
password: {{ env "OD_PRIVATE_REGISTRY_PASSWORD" | quote }}
|
|
oci: true
|
|
url: "{{ .Values.global.helmRegistry | default .Values.charts.jitsi.registry }}/{{ .Values.charts.jitsi.repository }}"
|
|
|
|
releases:
|
|
- name: "jitsi"
|
|
chart: "jitsi-repo/{{ .Values.charts.jitsi.name }}"
|
|
version: "{{ .Values.charts.jitsi.version }}"
|
|
values:
|
|
- "values-jitsi.yaml.gotmpl"
|
|
- {{ .Values.customization.release.jitsi | default "additionalValues: false" }}
|
|
installed: {{ .Values.jitsi.enabled }}
|
|
timeout: 900
|
|
|
|
commonLabels:
|
|
deploy-stage: "component-1"
|
|
component: "jitsi"
|
|
...
|