fix(openproject): Add seederJob intent

This commit is contained in:
Dominik Kaminski
2023-11-25 17:11:11 +01:00
parent 82be996d97
commit 05cc82d7c5
5 changed files with 66 additions and 1 deletions

View File

@@ -27,4 +27,8 @@ image:
resources:
{{ .Values.resources.keycloakBootstrap | toYaml | nindent 2 }}
additionalAnnotations:
annotations:
intents.otterize.com/service-name: "keycloak-bootstrap"
...

View File

@@ -12,6 +12,8 @@ repositories:
url: >-
{{ env "PRIVATE_CHART_REPOSITORY_URL" |
default "https://charts.openproject.org" }}
verify: true
keyring: "../../files/gpg-pubkeys/openproject-com.gpg"
releases:
# renovate:
@@ -21,7 +23,7 @@ releases:
# dependencyType=vendor
- name: "openproject"
chart: "openproject-repo/openproject"
version: "2.4.0"
version: "2.6.1"
wait: true
waitForJobs: true
values:

View File

@@ -82,4 +82,8 @@ environment:
# Define an admin mapping from the claim
# The attribute mapping cannot currently be defined in the value
OPENPROJECT_OPENID__CONNECT_KEYCLOAK_ATTRIBUTE__MAP_ADMIN: "openproject_admin"
seederJob:
annotations:
intents.otterize.com/service-name: "openproject-seeder"
...