mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-07 16:01:37 +01:00
42 lines
1.3 KiB
Go Template
42 lines
1.3 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
|
|
*/}}
|
|
---
|
|
portalServer:
|
|
adminGroup: "cn=Domain Admins,cn=groups,dc=univention,dc=intranet"
|
|
authMode: "saml"
|
|
environment: "staging"
|
|
editable: "true"
|
|
logLevel: "DEBUG"
|
|
ucsInternalUrl: "http://portal-server:univention@ums-store-dav/portal-data"
|
|
umcGetUrl: "http://ums-umc-server/get"
|
|
umcSessionUrl: "http://ums-umc-server/get/session-info"
|
|
|
|
image:
|
|
registry: "{{ .Values.global.imageRegistry }}"
|
|
repository: "{{ .Values.images.umsPortalServer.repository }}"
|
|
pullPolicy: "Always"
|
|
tag: "{{ .Values.images.umsPortalServer.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.umsPortalServer | toYaml | nindent 2 }}
|
|
...
|