diff options
author | Sebastien Premont-Tendland <sebastien.premont@bell.ca> | 2020-03-09 17:55:41 -0400 |
---|---|---|
committer | Sebastien Premont-Tendland <sebastien.premont@bell.ca> | 2020-03-09 22:02:11 +0000 |
commit | 19b2a3f19a60e4b47fd364db92ce01b412aebe86 (patch) | |
tree | c23ff9dc391b572c68eecdd875a01ede4c386149 /kubernetes | |
parent | a53b32f6eb8529777573db53e61d474363a13ef9 (diff) |
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 <sebastien.premont@bell.ca>
Change-Id: I7afabb91e43948118490455bdc6ba6a53c28a217
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/cds/charts/cds-sdc-listener/resources/config/application.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
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 |