blob: 189248ffb33290467700f9f1ea452f1f80b3e8dc [file] [log] [blame]
jhhdf5484e2020-04-06 15:08:35 -05001###
2# ============LICENSE_START=======================================================
3# feature-healthcheck
4# ================================================================================
5# Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6# ================================================================================
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18# ============LICENSE_END=========================================================
19###
20
21http.server.services=HEALTHCHECK
22http.server.services.HEALTHCHECK.host=0.0.0.0
23http.server.services.HEALTHCHECK.port=6969
24http.server.services.HEALTHCHECK.restClasses=org.onap.policy.drools.healthcheck.RestHealthCheck
25http.server.services.HEALTHCHECK.managed=false
26http.server.services.HEALTHCHECK.swagger=true
27http.server.services.HEALTHCHECK.userName=${envd:HEALTHCHECK_USER}
28http.server.services.HEALTHCHECK.password=${envd:HEALTHCHECK_PASSWORD}
29http.server.services.HEALTHCHECK.https=true
30http.server.services.HEALTHCHECK.aaf=${envd:AAF:false}
31http.server.services.HEALTHCHECK.serialization.provider=org.onap.policy.common.gson.JacksonHandler,org.onap.policy.common.endpoints.http.server.YamlJacksonHandler
32
jhh5f4deac2020-04-17 14:12:29 -050033http.client.services=PAP
jhhdf5484e2020-04-06 15:08:35 -050034
35http.client.services.PAP.host={{ .Values.global.pap.nameOverride }}
36http.client.services.PAP.port=9091
37http.client.services.PAP.contextUriPath=pap/test
38http.client.services.PAP.https=true
39http.client.services.PAP.userName=${envd:PAP_LEGACY_USERNAME}
40http.client.services.PAP.password=${envd:PAP_LEGACY_PASSWORD}
41
42http.client.services.PDP.host={{ .Values.global.pdp.nameOverride }}
43http.client.services.PDP.port=8081
44http.client.services.PDP.contextUriPath=pdp/test
45http.client.services.PDP.https=true
46http.client.services.PDP.userName=${envd:PDP_LEGACY_USERNAME}
47http.client.services.PDP.password=${envd:PDP_LEGACY_PASSWORD}