diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-05-13 14:04:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-05-13 14:04:56 +0000 |
commit | 97ff31b6cf9384401042d223902c9d5078657627 (patch) | |
tree | b3a28345ca5699afe08b356bedcd719fe3f96e14 /kubernetes/policy/charts/policy-distribution/resources/config | |
parent | 1b8e5ab5581c078ae732f844304162de1f05a320 (diff) | |
parent | 4aa534fa3920335f1ec899331b435ac6b8c8521b (diff) |
Merge "[POLICY] Remove hardcoded credentials from policy-distribution"
Diffstat (limited to 'kubernetes/policy/charts/policy-distribution/resources/config')
-rw-r--r-- | kubernetes/policy/charts/policy-distribution/resources/config/config.json | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kubernetes/policy/charts/policy-distribution/resources/config/config.json b/kubernetes/policy/charts/policy-distribution/resources/config/config.json index 906263343a..4c42ed2353 100644 --- a/kubernetes/policy/charts/policy-distribution/resources/config/config.json +++ b/kubernetes/policy/charts/policy-distribution/resources/config/config.json @@ -21,8 +21,8 @@ "restServerParameters":{ "host":"0.0.0.0", "port":6969, - "userName":"healthcheck", - "password":"zb!XztG34", + "userName":"${RESTSERVER_USER}", + "password":"${RESTSERVER_PASSWORD}", "https":true }, "receptionHandlerParameters":{ @@ -61,8 +61,8 @@ "messageBusAddress": [ "message-router" ], - "user": "policy", - "password": "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U", + "user": "${SDCBE_USER}", + "password": "${SDCBE_PASSWORD}", "pollingInterval":20, "pollingTimeout":30, "consumerId": "policy-id", @@ -107,14 +107,14 @@ "apiParameters": { "hostName": "policy-api", "port": 6969, - "userName": "healthcheck", - "password": "zb!XztG34" + "userName": "${API_USER}", + "password": "${API_PASSWORD}" }, "papParameters": { "hostName": "policy-pap", "port": 6969, - "userName": "healthcheck", - "password": "zb!XztG34" + "userName": "${PAP_USER}", + "password": "${PAP_PASSWORD}" }, "isHttps": true, "deployPolicies": true |