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
|
|
---
|
|
containerSecurityContext:
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- "ALL"
|
|
enabled: true
|
|
privileged: false
|
|
readOnlyRootFilesystem: false
|
|
runAsGroup: 0
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
seccompProfile:
|
|
type: "RuntimeDefault"
|
|
|
|
extraEnvVars:
|
|
- name: "UVS_ACCESS_TOKEN"
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: "opendesk-matrix-user-verification-service-account"
|
|
key: "access_token"
|
|
- name: "UVS_DISABLE_IP_BLACKLIST"
|
|
value: "true"
|
|
|
|
global:
|
|
domain: {{ .Values.global.domain | quote }}
|
|
hosts:
|
|
{{ .Values.global.hosts | toYaml | nindent 4 }}
|
|
imagePullSecrets:
|
|
{{ .Values.global.imagePullSecrets | toYaml | nindent 4 }}
|
|
|
|
image:
|
|
imagePullPolicy: {{ .Values.global.imagePullPolicy | quote }}
|
|
registry: {{ .Values.global.imageRegistry | default .Values.images.matrixUserVerificationService.registry | quote }}
|
|
repository: {{ .Values.images.matrixUserVerificationService.repository | quote }}
|
|
tag: {{ .Values.images.matrixUserVerificationService.tag | quote }}
|
|
|
|
podSecurityContext:
|
|
enabled: true
|
|
fsGroup: 101
|
|
|
|
replicaCount: {{ .Values.replicas.matrixUserVerificationService }}
|
|
|
|
resources:
|
|
{{ .Values.resources.matrixUserVerificationService | toYaml | nindent 2 }}
|
|
|
|
...
|