From 19b2a3f19a60e4b47fd364db92ce01b412aebe86 Mon Sep 17 00:00:00 2001 From: Sebastien Premont-Tendland Date: Mon, 9 Mar 2020 17:55:41 -0400 Subject: CDS SDC listener crashing The environment specification for AUTO in sdc defines the UEB endpoints with the namespace appended to message-router "message-router.onap". In CDS configuration we were only specifying the hostname "message-router" causing SDC to not find a suitable environment and returning an error. Modified the sdc listener configuration in CDS to append the namespace to the configuration. Issue-ID: CCSDK-2160 Signed-off-by: Sebastien Premont-Tendland Change-Id: I7afabb91e43948118490455bdc6ba6a53c28a217 --- .../cds/charts/cds-sdc-listener/resources/config/application.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kubernetes/cds/charts/cds-sdc-listener') diff --git a/kubernetes/cds/charts/cds-sdc-listener/resources/config/application.yaml b/kubernetes/cds/charts/cds-sdc-listener/resources/config/application.yaml index cc611a129b..b3e95a2a21 100644 --- a/kubernetes/cds/charts/cds-sdc-listener/resources/config/application.yaml +++ b/kubernetes/cds/charts/cds-sdc-listener/resources/config/application.yaml @@ -1,8 +1,8 @@ listenerservice: config: - asdcAddress: sdc-be:8443 #SDC-BE - messageBusAddress: message-router #Message-Router - user: vid #SDC-username + asdcAddress: sdc-be.{{include "common.namespace" .}}:8443 #SDC-BE + messageBusAddress: message-router.{{include "common.namespace" .}} #Message-Router + user: cds #SDC-username password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U #SDC-password pollingInterval: 15 pollingTimeout: 60 -- cgit 1.2.3-korg