From 8593d5f2bdea685a836edc9d9034ce1976cf2e96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20Ro=C3=9Fner?= Date: Wed, 1 Oct 2025 08:53:30 +0200 Subject: [PATCH] fix(ox-connector): Use FQDN for internal service URLs --- helmfile/apps/open-xchange/values-oxconnector.yaml.gotmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helmfile/apps/open-xchange/values-oxconnector.yaml.gotmpl b/helmfile/apps/open-xchange/values-oxconnector.yaml.gotmpl index a511ed3c..98d8e0e7 100644 --- a/helmfile/apps/open-xchange/values-oxconnector.yaml.gotmpl +++ b/helmfile/apps/open-xchange/values-oxconnector.yaml.gotmpl @@ -49,11 +49,11 @@ oxConnector: oxMasterAdmin: "admin" oxMasterPassword: {{ .Values.secrets.oxAppSuite.adminPassword | quote }} oxSmtpServer: "smtp://127.0.0.1:587" - oxSoapServer: "http://open-xchange-core-mw-admin" + oxSoapServer: {{ printf "http://%s.%s.svc.%s" "open-xchange-core-mw-admin" (.Values.apps.oxAppSuite.namespace | default .Release.Namespace) .Values.cluster.networking.domain | quote }} provisioningApi: connection: - baseUrl: "http://ums-provisioning-api" + baseUrl: {{ printf "http://%s.%s.svc.%s" "ums-provisioning-api" (.Values.apps.nubus.namespace | default .Release.Namespace) .Values.cluster.networking.domain | quote }} auth: username: "ox-connector" password: {{ .Values.secrets.oxConnector.provisioningApiPassword | quote }}