summaryrefslogtreecommitdiffstats
path: root/kubernetes/policy/charts/pap/resources/config/config.json
diff options
context:
space:
mode:
authorKrzysztof Opasiak <k.opasiak@samsung.com>2020-04-20 19:43:58 +0000
committerGerrit Code Review <gerrit@onap.org>2020-04-20 19:43:58 +0000
commitfe2a953cec6f76c7a08470bdc08a3a3033bb7d36 (patch)
treee5b8bc94aa25513065620d14f43e2e866a5eacf9 /kubernetes/policy/charts/pap/resources/config/config.json
parente5dd0a0d3686271379a909be94d4fb9615f60649 (diff)
parent389fca1b6613b63203b865044540c0228c7b813e (diff)
Merge "[Policy] Remove hardcoded credentials from pap"
Diffstat (limited to 'kubernetes/policy/charts/pap/resources/config/config.json')
-rw-r--r--kubernetes/policy/charts/pap/resources/config/config.json12
1 files changed, 6 insertions, 6 deletions
diff --git a/kubernetes/policy/charts/pap/resources/config/config.json b/kubernetes/policy/charts/pap/resources/config/config.json
index 544ecdfc32..5c02ce0f12 100644
--- a/kubernetes/policy/charts/pap/resources/config/config.json
+++ b/kubernetes/policy/charts/pap/resources/config/config.json
@@ -20,8 +20,8 @@
"restServerParameters":{
"host":"0.0.0.0",
"port":6969,
- "userName":"healthcheck",
- "password":"zb!XztG34",
+ "userName":"${RESTSERVER_USER}",
+ "password":"${RESTSERVER_PASSWORD}",
"https": true,
"aaf": false
},
@@ -69,8 +69,8 @@
"clientName": "api",
"hostname": "policy-api",
"port": 6969,
- "userName": "healthcheck",
- "password": "zb!XztG34",
+ "userName": "${API_USER}",
+ "password": "${API_PASSWORD}",
"useHttps": true,
"basePath": "policy/api/v1/healthcheck"
},
@@ -78,8 +78,8 @@
"clientName": "distribution",
"hostname": "policy-distribution",
"port": 6969,
- "userName": "healthcheck",
- "password": "zb!XztG34",
+ "userName": "${DISTRIBUTION_USER}",
+ "password": "${DISTRIBUTION_PASSWORD}",
"useHttps": true,
"basePath": "healthcheck"
}]