From b9e27b5ddde21cf4feb378f975137f4d5ea87854 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Tue, 24 Mar 2020 10:41:21 -0400 Subject: Configure http client URIs via env properties The context URI path for the various actors needs to be configurable via properties specified in the OOM charts. Issue-ID: POLICY-2441 Signed-off-by: Jim Hahn Change-Id: I7348d0c4f47a33dbc806ad117f35b96c887b5394 --- .../src/main/feature/config/AAI-http-client.properties | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'controlloop/common/feature-controlloop-management/src/main/feature/config/AAI-http-client.properties') diff --git a/controlloop/common/feature-controlloop-management/src/main/feature/config/AAI-http-client.properties b/controlloop/common/feature-controlloop-management/src/main/feature/config/AAI-http-client.properties index 5a5f82f4d..2eb76007c 100644 --- a/controlloop/common/feature-controlloop-management/src/main/feature/config/AAI-http-client.properties +++ b/controlloop/common/feature-controlloop-management/src/main/feature/config/AAI-http-client.properties @@ -20,8 +20,8 @@ http.client.services=AAI http.client.services.AAI.managed=true http.client.services.AAI.https=true -http.client.services.AAI.host=${env:AAI_HOST} -http.client.services.AAI.port=${env:AAI_PORT} -http.client.services.AAI.username=${env:AAI_USERNAME} -http.client.services.AAI.password=${env:AAI_PASSWORD} -http.client.services.AAI.contextUriPath= +http.client.services.AAI.host=${envd:AAI_HOST} +http.client.services.AAI.port=${envd:AAI_PORT} +http.client.services.AAI.username=${envd:AAI_USERNAME} +http.client.services.AAI.password=${envd:AAI_PASSWORD} +http.client.services.AAI.contextUriPath=${envd:AAI_CONTEXT_URI} -- cgit 1.2.3-korg