mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
# SPDX-FileCopyrightText: 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
---
|
|
repositories:
|
|
# openDesk Migrations
|
|
# Source:
|
|
- name: "openproject-migrations-repo"
|
|
keyring: "../../files/gpg-pubkeys/opencode.gpg"
|
|
verify: {{ .Values.charts.migrations.verify }}
|
|
username: {{ env "OD_PRIVATE_REGISTRY_USERNAME" | quote }}
|
|
password: {{ env "OD_PRIVATE_REGISTRY_PASSWORD" | quote }}
|
|
oci: true
|
|
url: "{{ .Values.global.helmRegistry | default .Values.charts.migrations.registry }}/\
|
|
{{ .Values.charts.migrations.repository }}"
|
|
|
|
releases:
|
|
- name: "opendesk-migrations-post"
|
|
chart: "openproject-migrations-repo/{{ .Values.charts.migrations.name }}"
|
|
version: "{{ .Values.charts.migrations.version }}"
|
|
wait: true
|
|
waitForJobs: true
|
|
values:
|
|
- "values.yaml.gotmpl"
|
|
- "../../shared/migrations.yaml.gotmpl"
|
|
installed: {{ .Values.migrations.enabled }}
|
|
timeout: 900
|
|
|
|
commonLabels:
|
|
deploy-stage: "component-0"
|
|
component: "opendesk-migrations"
|
|
...
|