mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
88 lines
3.0 KiB
Go Template
88 lines
3.0 KiB
Go Template
{{/*
|
|
SPDX-FileCopyrightText: 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH
|
|
SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS"
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/}}
|
|
---
|
|
containerSecurityContext:
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- "ALL"
|
|
enabled: true
|
|
privileged: false
|
|
runAsUser: 1000
|
|
runAsGroup: 1000
|
|
seccompProfile:
|
|
type: "RuntimeDefault"
|
|
readOnlyRootFilesystem: true
|
|
runAsNonRoot: true
|
|
seLinuxOptions:
|
|
{{ .Values.seLinuxOptions.intercom | toYaml | nindent 4 }}
|
|
|
|
global:
|
|
domain: {{ .Values.global.domain | quote }}
|
|
hosts:
|
|
{{ .Values.global.hosts | toYaml | nindent 4 }}
|
|
imagePullSecrets:
|
|
{{ .Values.global.imagePullSecrets | toYaml | nindent 4 }}
|
|
|
|
ics:
|
|
secret: {{ .Values.secrets.intercom.secret | quote }}
|
|
issuerBaseUrl: "https://{{ .Values.global.hosts.keycloak }}.{{ .Values.global.domain }}/realms/{{ .Values.platform.realm }}"
|
|
originRegex: "{{ .Values.global.domain }}"
|
|
keycloak:
|
|
realm: {{ .Values.platform.realm | quote }}
|
|
default:
|
|
domain: {{ .Values.global.domain | quote }}
|
|
oidc:
|
|
id: "opendesk-intercom"
|
|
secret: {{ .Values.secrets.keycloak.clientSecret.intercom | quote }}
|
|
matrix:
|
|
asSecret: {{ .Values.secrets.intercom.synapseAsToken | quote }}
|
|
subdomain: {{ .Values.global.hosts.synapse | quote }}
|
|
serverName: "{{ .Values.global.hosts.synapse }}.{{ .Values.global.domain }}"
|
|
nordeck:
|
|
subdomain: {{ .Values.global.hosts.matrixNeoDateFixBot | quote }}
|
|
portal:
|
|
apiKey: {{ .Values.secrets.centralnavigation.apiKey | quote }}
|
|
redis:
|
|
host: {{ .Values.cache.intercomService.host | quote }}
|
|
port: {{ .Values.cache.intercomService.port }}
|
|
password: {{ .Values.cache.intercomService.password | default .Values.secrets.redis.password | quote }}
|
|
openxchange:
|
|
oci: true
|
|
url: "https://{{ .Values.global.hosts.openxchange }}.{{ .Values.global.domain }}"
|
|
audience: "opendesk-oxappsuite"
|
|
nextcloud:
|
|
origin: {{ .Values.global.hosts.nextcloud | quote }}
|
|
subdomain: {{ .Values.global.hosts.nextcloud | quote }}
|
|
audience: "opendesk-nextcloud"
|
|
image:
|
|
imagePullPolicy: {{ .Values.global.imagePullPolicy | quote }}
|
|
registry: {{ coalesce .Values.repositories.image.registryOpencodeDe .Values.global.imageRegistry .Values.images.intercom.registry | quote }}
|
|
repository: {{ .Values.images.intercom.repository | quote }}
|
|
tag: {{ .Values.images.intercom.tag | quote }}
|
|
|
|
ingress:
|
|
host: "{{ .Values.global.hosts.intercomService }}.{{ .Values.global.domain }}"
|
|
enabled: {{ .Values.ingress.enabled }}
|
|
ingressClassName: {{ .Values.ingress.ingressClassName | quote }}
|
|
tls:
|
|
enabled: {{ .Values.ingress.tls.enabled }}
|
|
secretName: {{ .Values.ingress.tls.secretName | quote }}
|
|
|
|
podAnnotations: {}
|
|
|
|
podSecurityContext:
|
|
enabled: true
|
|
fsGroup: 1000
|
|
fsGroupChangePolicy: "Always"
|
|
|
|
replicaCount: {{ .Values.replicas.intercomService }}
|
|
|
|
resources:
|
|
{{ .Values.resources.intercomService | toYaml | nindent 2 }}
|
|
|
|
...
|