feat(otterize): Update and add values

This commit is contained in:
Sven-Erik Schmidt
2025-12-04 13:01:52 +01:00
parent 54277dabae
commit c46874dee2
2 changed files with 64 additions and 3 deletions

View File

@@ -5,7 +5,10 @@ additionalAnnotations:
{{ .Values.annotations.opendeskMigrationsPre.additional | toYaml | nindent 2 }}
podAnnotations:
{{ .Values.annotations.opendeskMigrationsPre.pod | toYaml | nindent 2 }}
intents.otterize.com/service-name: "opendesk-migrations-pre"
{{- with .Values.annotations.opendeskMigrationsPre.pod }}
{{ . | toYaml | nindent 2 }}
{{- end }}
serviceAccount:
annotations:

View File

@@ -67,11 +67,69 @@ apps:
xwiki:
enabled: {{ .Values.apps.xwiki.enabled }}
ingressController:
{{ .Values.security.ingressController | toYaml | nindent 2 }}
databases:
dovecotDictmap:
host: {{ .Values.databases.dovecotDictmap.host }}
dovecotACL:
host: {{ .Values.databases.dovecotACL.host }}
keycloak:
host: {{ .Values.databases.keycloak.host }}
keycloakExtension:
host: {{ .Values.databases.keycloakExtension.host }}
nextcloud:
host: {{ .Values.databases.nextcloud.host }}
notes:
host: {{ .Values.databases.notes.host }}
openproject:
host: {{ .Values.databases.openproject.host }}
oxAppSuite:
host: {{ .Values.databases.oxAppSuite.host }}
synapse:
host: {{ .Values.databases.synapse.host }}
umsAuthSession:
host: {{ .Values.databases.umsAuthSession.host }}
umsGuardianManagementApi:
host: {{ .Values.databases.umsGuardianManagementApi.host }}
umsNotificationsApi:
host: {{ .Values.databases.umsNotificationsApi.host }}
umsSelfservice:
host: {{ .Values.databases.umsSelfservice.host }}
xwiki:
host: {{ .Values.databases.xwiki.host }}
extraApps:
clusterPostfix:
enabled: {{ .Values.security.clusterPostfix.enabled }}
namespace: {{ .Values.security.clusterPostfix.namespace }}
ingressController:
{{ .Values.security.ingressController | toYaml | nindent 2 }}
monitoring:
prometheus:
serviceMonitors:
enabled: {{ .Values.monitoring.prometheus.serviceMonitors.enabled }}
objectstores:
dovecot:
endpoint: {{ .Values.objectstores.dovecot.endpoint }}
migrations:
endpoint: {{ .Values.objectstores.migrations.endpoint }}
nextcloud:
endpoint: {{ .Values.objectstores.nextcloud.endpoint }}
notes:
endpoint: {{ .Values.objectstores.notes.endpoint }}
nubus:
endpoint: {{ .Values.objectstores.nubus.endpoint }}
openproject:
endpoint: {{ .Values.objectstores.openproject.endpoint }}
openxchange:
endpoint: {{ .Values.objectstores.openxchange.endpoint }}
smtp:
host: {{ .Values.smtp.host }}
extraIntents:
{{ .Values.extraIntents | toYaml | nindent 2 }}
...