mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 23:41:43 +01:00
Compare commits
1 Commits
trossner/m
...
ntretkowsk
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e720ef1bdb |
@@ -17,14 +17,7 @@ application_config:
|
|||||||
# - "diagram"
|
# - "diagram"
|
||||||
|
|
||||||
autoscaling:
|
autoscaling:
|
||||||
enabled: {{ .Values.technical.cryptpad.autoscaling.enabled }}
|
enabled: false
|
||||||
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
|
enableEmbedding: true
|
||||||
|
|
||||||
|
|||||||
@@ -53,8 +53,6 @@ global:
|
|||||||
configUcr:
|
configUcr:
|
||||||
directory:
|
directory:
|
||||||
manager:
|
manager:
|
||||||
mail-address:
|
|
||||||
uniqueness: "True"
|
|
||||||
rest:
|
rest:
|
||||||
authorized-groups:
|
authorized-groups:
|
||||||
domain-admins: __DELETE_KEY__
|
domain-admins: __DELETE_KEY__
|
||||||
@@ -69,9 +67,9 @@ global:
|
|||||||
description:
|
description:
|
||||||
syntax: "TextArea"
|
syntax: "TextArea"
|
||||||
firstname:
|
firstname:
|
||||||
required: "True"
|
required: "true"
|
||||||
mailPrimaryAddress:
|
mailPrimaryAddress:
|
||||||
required: "True"
|
required: "true"
|
||||||
username:
|
username:
|
||||||
syntax: "uid"
|
syntax: "uid"
|
||||||
search:
|
search:
|
||||||
|
|||||||
@@ -266,9 +266,6 @@ appsuite:
|
|||||||
com.openexchange.mail.filter.passwordSource: global
|
com.openexchange.mail.filter.passwordSource: global
|
||||||
com.openexchange.mail.filter.masterPassword: {{ .Values.secrets.oxAppSuite.migrationsMasterPassword | quote }}
|
com.openexchange.mail.filter.masterPassword: {{ .Values.secrets.oxAppSuite.migrationsMasterPassword | quote }}
|
||||||
com.openexchange.mail.filter.preferredSaslMech: ""
|
com.openexchange.mail.filter.preferredSaslMech: ""
|
||||||
# Loosen API the rate limit
|
|
||||||
com.openexchange.servlet.maxRateTimeWindow: "60000"
|
|
||||||
com.openexchange.servlet.maxRate: "3000"
|
|
||||||
propertiesFiles:
|
propertiesFiles:
|
||||||
/opt/open-xchange/etc/masterpassword-authentication.properties:
|
/opt/open-xchange/etc/masterpassword-authentication.properties:
|
||||||
com.openexchange.authentication.masterpassword.password: {{ .Values.secrets.oxAppSuite.migrationsMasterPassword | quote }}
|
com.openexchange.authentication.masterpassword.password: {{ .Values.secrets.oxAppSuite.migrationsMasterPassword | quote }}
|
||||||
@@ -635,12 +632,6 @@ appsuite:
|
|||||||
com.openexchange.share.cryptKey: {{ .Values.secrets.oxAppSuite.shareCryptKey | quote }}
|
com.openexchange.share.cryptKey: {{ .Values.secrets.oxAppSuite.shareCryptKey | quote }}
|
||||||
com.openexchange.conference.element.authToken: {{ .Values.secrets.oxAppSuite.synapseAsToken | quote }}
|
com.openexchange.conference.element.authToken: {{ .Values.secrets.oxAppSuite.synapseAsToken | quote }}
|
||||||
propertiesFiles:
|
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:
|
/opt/open-xchange/etc/AdminDaemon.properties:
|
||||||
MASTER_ACCOUNT_OVERRIDE: "true"
|
MASTER_ACCOUNT_OVERRIDE: "true"
|
||||||
/opt/open-xchange/etc/AdminUser.properties:
|
/opt/open-xchange/etc/AdminUser.properties:
|
||||||
|
|||||||
@@ -92,13 +92,12 @@ containerSecurityContext:
|
|||||||
drop:
|
drop:
|
||||||
- "ALL"
|
- "ALL"
|
||||||
enabled: true
|
enabled: true
|
||||||
privileged: false
|
|
||||||
readOnlyRootFilesystem: true
|
|
||||||
runAsNonRoot: true
|
|
||||||
runAsGroup: 101
|
|
||||||
runAsUser: 101
|
runAsUser: 101
|
||||||
|
runAsGroup: 101
|
||||||
seccompProfile:
|
seccompProfile:
|
||||||
type: "RuntimeDefault"
|
type: "RuntimeDefault"
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
|
runAsNonRoot: true
|
||||||
seLinuxOptions:
|
seLinuxOptions:
|
||||||
{{ .Values.seLinuxOptions.opendeskStaticFiles | toYaml | nindent 4 }}
|
{{ .Values.seLinuxOptions.opendeskStaticFiles | toYaml | nindent 4 }}
|
||||||
|
|
||||||
|
|||||||
@@ -139,7 +139,7 @@ charts:
|
|||||||
registry: "registry.opencode.de"
|
registry: "registry.opencode.de"
|
||||||
repository: "bmi/opendesk/components/supplier/univention/charts-mirror"
|
repository: "bmi/opendesk/components/supplier/univention/charts-mirror"
|
||||||
name: "intercom-service"
|
name: "intercom-service"
|
||||||
version: "2.19.5"
|
version: "2.22.0"
|
||||||
verify: true
|
verify: true
|
||||||
jitsi:
|
jitsi:
|
||||||
# providerCategory: "Platform"
|
# providerCategory: "Platform"
|
||||||
|
|||||||
@@ -158,7 +158,7 @@ images:
|
|||||||
# upstreamMirrorStartFrom: ["2", "1", "0"]
|
# upstreamMirrorStartFrom: ["2", "1", "0"]
|
||||||
registry: "registry.opencode.de"
|
registry: "registry.opencode.de"
|
||||||
repository: "bmi/opendesk/components/supplier/univention/images-mirror/intercom-service"
|
repository: "bmi/opendesk/components/supplier/univention/images-mirror/intercom-service"
|
||||||
tag: "2.19.5@sha256:4f1bccfd29889e1edd093c8e35c9486919984faf55ca92b787a6a7aca3729e47"
|
tag: "2.22.0@sha256:0049fc70c03d42780630c2b9915172086ce0cf8f936daeb04e625270a50d0126"
|
||||||
jibri:
|
jibri:
|
||||||
# providerCategory: "Supplier"
|
# providerCategory: "Supplier"
|
||||||
# providerResponsible: "Nordeck"
|
# providerResponsible: "Nordeck"
|
||||||
|
|||||||
@@ -3,28 +3,9 @@
|
|||||||
---
|
---
|
||||||
technical:
|
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 related technical settings
|
||||||
collabora:
|
collabora:
|
||||||
# Set the value for the start parameter `-o:num_prespawn_children` to define how many child processes
|
# Defines the value for the start parameter `-o:num_prespawn_children`
|
||||||
# are initially spawned, even without any user accessing Collabora.
|
|
||||||
numPrespawnChildren: 4
|
numPrespawnChildren: 4
|
||||||
|
|
||||||
# Dovecot EE related settings
|
# Dovecot EE related settings
|
||||||
|
|||||||
Reference in New Issue
Block a user