mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
Compare commits
6 Commits
renovate/u
...
trossner/m
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
75e793ebb4 | ||
|
|
1c8ea68df1 | ||
|
|
99e640b9fc | ||
|
|
7ec8d94c6c | ||
|
|
cdeeee628c | ||
|
|
a7a6cfbb12 |
@@ -17,7 +17,14 @@ application_config:
|
||||
# - "diagram"
|
||||
|
||||
autoscaling:
|
||||
enabled: false
|
||||
enabled: {{ .Values.technical.cryptpad.autoscaling.enabled }}
|
||||
minReplicas: {{ .Values.technical.cryptpad.autoscaling.minReplicas }}
|
||||
maxReplicas: {{ .Values.technical.cryptpad.autoscaling.maxReplicas }}
|
||||
targetCPUUtilizationPercentage: {{ .Values.technical.cryptpad.autoscaling.targetCPUUtilizationPercentage }}
|
||||
targetMemoryUtilizationPercentage: {{ .Values.technical.cryptpad.autoscaling.targetMemoryUtilizationPercentage }}
|
||||
|
||||
config:
|
||||
maxWorkers: {{ .Values.technical.cryptpad.maxWorkers }}
|
||||
|
||||
enableEmbedding: true
|
||||
|
||||
|
||||
@@ -53,6 +53,8 @@ global:
|
||||
configUcr:
|
||||
directory:
|
||||
manager:
|
||||
mail-address:
|
||||
uniqueness: "True"
|
||||
rest:
|
||||
authorized-groups:
|
||||
domain-admins: __DELETE_KEY__
|
||||
@@ -67,9 +69,9 @@ global:
|
||||
description:
|
||||
syntax: "TextArea"
|
||||
firstname:
|
||||
required: "true"
|
||||
required: "True"
|
||||
mailPrimaryAddress:
|
||||
required: "true"
|
||||
required: "True"
|
||||
username:
|
||||
syntax: "uid"
|
||||
search:
|
||||
|
||||
@@ -266,6 +266,9 @@ appsuite:
|
||||
com.openexchange.mail.filter.passwordSource: global
|
||||
com.openexchange.mail.filter.masterPassword: {{ .Values.secrets.oxAppSuite.migrationsMasterPassword | quote }}
|
||||
com.openexchange.mail.filter.preferredSaslMech: ""
|
||||
# Loosen API the rate limit
|
||||
com.openexchange.servlet.maxRateTimeWindow: "60000"
|
||||
com.openexchange.servlet.maxRate: "3000"
|
||||
propertiesFiles:
|
||||
/opt/open-xchange/etc/masterpassword-authentication.properties:
|
||||
com.openexchange.authentication.masterpassword.password: {{ .Values.secrets.oxAppSuite.migrationsMasterPassword | quote }}
|
||||
@@ -632,6 +635,12 @@ appsuite:
|
||||
com.openexchange.share.cryptKey: {{ .Values.secrets.oxAppSuite.shareCryptKey | quote }}
|
||||
com.openexchange.conference.element.authToken: {{ .Values.secrets.oxAppSuite.synapseAsToken | quote }}
|
||||
propertiesFiles:
|
||||
/opt/open-xchange/etc/server.properties:
|
||||
MAX_UPLOAD_SIZE: {{ mul .Values.functional.groupware.mail.maxSize 1024 1024 | int | printf "%d" | quote }}
|
||||
/opt/open-xchange/etc/infostore.properties:
|
||||
MAX_UPLOAD_SIZE: {{ mul .Values.functional.groupware.mail.maxSize 1024 1024 | int | printf "%d" | quote }}
|
||||
/opt/open-xchange/etc/attachment.properties:
|
||||
MAX_UPLOAD_SIZE: {{ mul .Values.functional.groupware.mail.maxSize 1024 1024 | int | printf "%d" | quote }}
|
||||
/opt/open-xchange/etc/AdminDaemon.properties:
|
||||
MASTER_ACCOUNT_OVERRIDE: "true"
|
||||
/opt/open-xchange/etc/AdminUser.properties:
|
||||
|
||||
@@ -92,12 +92,13 @@ containerSecurityContext:
|
||||
drop:
|
||||
- "ALL"
|
||||
enabled: true
|
||||
runAsUser: 101
|
||||
runAsGroup: 101
|
||||
seccompProfile:
|
||||
type: "RuntimeDefault"
|
||||
privileged: false
|
||||
readOnlyRootFilesystem: true
|
||||
runAsNonRoot: true
|
||||
runAsGroup: 101
|
||||
runAsUser: 101
|
||||
seccompProfile:
|
||||
type: "RuntimeDefault"
|
||||
seLinuxOptions:
|
||||
{{ .Values.seLinuxOptions.opendeskStaticFiles | toYaml | nindent 4 }}
|
||||
|
||||
|
||||
@@ -3,9 +3,28 @@
|
||||
---
|
||||
technical:
|
||||
|
||||
# Cryptpad related technical settings
|
||||
cryptpad:
|
||||
# Define how many child processes are initially spawned, even without any user accessing Cryptpad.
|
||||
# Ref.: https://github.com/cryptpad/cryptpad/blob/0dd3c1f53d56dffb06651b86ead6b9b387920173/config/config.example.js#L111
|
||||
maxWorkers: 4
|
||||
# Autoscaling options
|
||||
autoscaling:
|
||||
# Enable the Autoscaling
|
||||
enabled: false
|
||||
# Minimal numbers of replicas
|
||||
minReplicas: 1
|
||||
# Maximum numbers of replicas
|
||||
maxReplicas: 100
|
||||
# Percentage of the targeted CPU Utilization
|
||||
targetCPUUtilizationPercentage: 80
|
||||
# Percentage of the targeted Memory Utilization
|
||||
targetMemoryUtilizationPercentage: 80
|
||||
|
||||
# Collabora related technical settings
|
||||
collabora:
|
||||
# Defines the value for the start parameter `-o:num_prespawn_children`
|
||||
# Set the value for the start parameter `-o:num_prespawn_children` to define how many child processes
|
||||
# are initially spawned, even without any user accessing Collabora.
|
||||
numPrespawnChildren: 4
|
||||
|
||||
# Dovecot EE related settings
|
||||
|
||||
Reference in New Issue
Block a user