diff options
author | Patrick Brady <pb071s@att.com> | 2018-05-25 12:25:59 -0700 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-05-25 12:26:04 -0700 |
commit | 8e37837087ff419b3653b226b2c21678d86ab4c8 (patch) | |
tree | 75a3f4cc97fec2a1f53ffaa26b62b4eb5e960da5 | |
parent | 6965e6bf791c7c8316f4edb163bad42584d57f13 (diff) |
Change port to match Kubernetes port
Kubernetes uses a 302 prefix on port numbers. Going
to change the port used for cdt proxy backend to use
this port.
Change-Id: I630b101e28b8cc072166dcbcb0e8de42dfb6d513
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-ID: APPC-924
-rw-r--r-- | src/environments/environment.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/environments/environment.ts b/src/environments/environment.ts index e30faf3..6c6dcf8 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -35,9 +35,9 @@ export const environment = { checkTestStatus: 'http://' + window.location.hostname + ':8282/restconf/operations/appc-provider-lcm:action-status' */ // APIs for CORS proxy Service. - getDesigns: 'http://' + window.location.hostname + ':9090/cdtService/getDesigns', - validateTemplate: 'http://' + window.location.hostname + ':9090/cdtService/validateTemplate', - testVnf: 'http://' + window.location.hostname + ':9090/cdtService/testVnf', - checkTestStatus: 'http://' + window.location.hostname + ':9090/cdtService/checkTestStatus' + getDesigns: 'http://' + window.location.hostname + ':30290/cdtService/getDesigns', + validateTemplate: 'http://' + window.location.hostname + ':30290/cdtService/validateTemplate', + testVnf: 'http://' + window.location.hostname + ':30290/cdtService/testVnf', + checkTestStatus: 'http://' + window.location.hostname + ':30290/cdtService/checkTestStatus' };
\ No newline at end of file |