mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
57 lines
1.5 KiB
Go Template
57 lines
1.5 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
|
|
*/}}
|
|
---
|
|
## The global properties are used to configure multiple charts at once.
|
|
#
|
|
global:
|
|
|
|
## Define ingress/virtualservice host.
|
|
#
|
|
hosts:
|
|
collabora: "collabora"
|
|
dimension: "integration"
|
|
element: "chat"
|
|
etherpad: "etherpad"
|
|
intercomService: "ics"
|
|
jitsi: "meet"
|
|
keycloak: "id"
|
|
meetingWidgetsBot: "meeting-widgets-bot"
|
|
meetingWidgets: "meeting-widgets"
|
|
newWorkBoardWidget: "whiteboard-widget"
|
|
nextcloud: "fs"
|
|
openproject: "project"
|
|
openxchange: "webmail"
|
|
openxchangeProvisioning: "ox-provisioning"
|
|
pollWidget: "poll-widget"
|
|
synapse: "matrix"
|
|
univentionCorporateServer: "portal"
|
|
whiteboard: "whiteboard"
|
|
xwiki: "wiki"
|
|
|
|
## Define host
|
|
#
|
|
domain: {{ env "DOMAIN" | default "souvap.cloud" }}
|
|
|
|
## Define docker registry address.
|
|
#
|
|
imageRegistry: "external-registry.souvap-univention.de/sovereign-workplace"
|
|
|
|
## Credentials to fetch images from private registry
|
|
## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
|
|
#
|
|
imagePullSecrets:
|
|
- "external-registry"
|
|
|
|
## Define internal kubernetes domain, usually svc.cluster.local
|
|
## Workaround for calico with postfix
|
|
#
|
|
internalDomain: "svc.cluster.local"
|
|
|
|
## Define internal kubernetes network for postfix
|
|
## Attention: Mail from this network can be sent without authentication!
|
|
#
|
|
internalNetwork: "10.0.0.0/8"
|
|
...
|