mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
46 lines
1001 B
YAML
46 lines
1001 B
YAML
# SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS"
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
---
|
|
global:
|
|
keycloak:
|
|
host: "keycloak"
|
|
adminUsername: "kcadmin"
|
|
adminRealm: "master"
|
|
realm: "souvap"
|
|
|
|
handler:
|
|
appConfig:
|
|
captchaProtectionEnable: "False"
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- "ALL"
|
|
seccompProfile:
|
|
type: "RuntimeDefault"
|
|
readOnlyRootFilesystem: true
|
|
runAsUser: 1000
|
|
runAsGroup: 1000
|
|
runAsNonRoot: true
|
|
|
|
postgresql:
|
|
enabled: false
|
|
|
|
proxy:
|
|
ingress:
|
|
annotations:
|
|
nginx.org/proxy-buffer-size: "8k"
|
|
nginx.ingress.kubernetes.io/proxy-buffer-size: "8k"
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- "ALL"
|
|
seccompProfile:
|
|
type: "RuntimeDefault"
|
|
readOnlyRootFilesystem: true
|
|
runAsUser: 1000
|
|
runAsGroup: 1000
|
|
runAsNonRoot: true
|
|
...
|