feat(open-xchange): Use internal endpoint for provisioning and support for optionally spinning up a dedicated internal Pod just for provisioning (see technial.oxAppSuite.provisioning.dedicatedCoreMwPod for details)

This commit is contained in:
Thomas Kaltenbrunner
2025-07-22 12:49:20 +02:00
committed by Thorsten Roßner
parent bdc7331cb5
commit 31b7ec7827
4 changed files with 53 additions and 2 deletions

View File

@@ -407,7 +407,7 @@ charts:
registry: "registry.opencode.de"
repository: "bmi/opendesk/components/platform-development/charts/opendesk-open-xchange-bootstrap"
name: "opendesk-open-xchange-bootstrap"
version: "4.0.0"
version: "4.0.1"
verify: true
oxConnector:
# providerCategory: "Supplier"

View File

@@ -6,4 +6,12 @@ technical:
collabora:
# Defines the value for the start parameter `-o:num_prespawn_children`
numPrespawnChildren: 4
# Groupware related technical settings
oxAppSuite:
provisioning:
# In environments with a large number of users and groups, we offer the option to enable a
# dedicated Pod for the OX App Suite Core Middleware, exclusively handling provisioning tasks.
# This approach ensures that heavy provisioning workloads do not negatively impact the user
# experience, such as by slowing down pods that serve end-user sessions.
dedicatedCoreMwPod: false
...