mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
50 lines
1.4 KiB
Go Template
50 lines
1.4 KiB
Go Template
{{/*
|
|
SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS"
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/}}
|
|
---
|
|
notificationsapi:
|
|
apply_database_migrations: "True"
|
|
dev_mode: "False"
|
|
environment: "staging"
|
|
log_level: "DEBUG"
|
|
sql_echo: "False"
|
|
api_prefix: "/univention/portal/notifications-api"
|
|
|
|
postgresql:
|
|
bundled: false
|
|
connection:
|
|
host: "postgresql"
|
|
port: 5432
|
|
auth:
|
|
username: "notificationsapi_user"
|
|
database: "notificationsapi"
|
|
password: {{ .Values.secrets.postgresql.notificationsapiUser }}
|
|
|
|
image:
|
|
registry: "{{ .Values.global.imageRegistry }}"
|
|
repository: "{{ .Values.images.umsNotificationsApi.repository }}"
|
|
pullPolicy: "Always"
|
|
tag: "{{ .Values.images.umsNotificationsApi.tag }}"
|
|
pullSecrets:
|
|
{{- range .Values.global.imagePullSecrets }}
|
|
- name: {{ . }}
|
|
{{- end }}
|
|
|
|
istio:
|
|
host: "{{ .Values.global.hosts.univentionManagementStack }}.{{ .Values.global.domain }}"
|
|
enabled: {{ .Values.istio.enabled }}
|
|
|
|
ingress:
|
|
enabled: {{ .Values.ingress.enabled }}
|
|
host: "{{ .Values.global.hosts.univentionManagementStack }}.{{ .Values.global.domain }}"
|
|
ingressClassName: "{{ .Values.ingress.ingressClassName }}"
|
|
tls:
|
|
# The TLS configuration is on the "master" Ingress, see "portal-frontend"
|
|
enabled: false
|
|
secretName: ""
|
|
|
|
resources:
|
|
{{ .Values.resources.umsNotificationsApi | toYaml | nindent 2 }}
|
|
...
|