diff options
author | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2020-10-16 14:23:02 -0400 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-10-20 06:54:41 +0000 |
commit | a5fbdecdd15c07b716b71cc1735f7d3571e58080 (patch) | |
tree | 3ca9ca25dfa115518f168578fd1110028cfbe7bb /kubernetes/policy/components/policy-distribution/resources | |
parent | df44d8757fcaf8579ebd45cede1d6bfc99dd727d (diff) |
[POLICY] Change policy-distribution configuration
policy-distribution was failing to connect with SDC. After debugging, we found that SDC has been changed recently to expect common.namespace appended with the "message-router" host name. Example - "message-router.onap". Hence, updated the policy-distribution configuration to append common.namespace with the message-router host name.
The fix is tested in PFPP lab.
Issue-ID: POLICY-2861
Change-Id: I898b24199fdfc06ab63813f5df78f51b2f141e94
Signed-off-by: Ram Krishna Verma <ram_krishna.verma@bell.ca>
Diffstat (limited to 'kubernetes/policy/components/policy-distribution/resources')
-rwxr-xr-x | kubernetes/policy/components/policy-distribution/resources/config/config.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/policy/components/policy-distribution/resources/config/config.json b/kubernetes/policy/components/policy-distribution/resources/config/config.json index 9b9a7a5a93..8d31575a3f 100755 --- a/kubernetes/policy/components/policy-distribution/resources/config/config.json +++ b/kubernetes/policy/components/policy-distribution/resources/config/config.json @@ -54,7 +54,7 @@ "parameters":{ "asdcAddress": "sdc-be:8443", "messageBusAddress": [ - "message-router" + "message-router.{{ include "common.namespace" . }}" ], "user": "${SDCBE_USER}", "password": "${SDCBE_PASSWORD}", |