Removing deprecated DMAAP library
[policy/drools-pdp.git] / feature-healthcheck / src / main / feature / config / feature-healthcheck.properties
1 #
2 # ============LICENSE_START=======================================================
3 # ONAP
4 # ================================================================================
5 # Copyright (C) 2017-2019,2022 AT&T Intellectual Property. All rights reserved.
6 # Modifications Copyright (C) 2024 Nordix Foundation.
7 # ================================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #      http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 # ============LICENSE_END=========================================================
20 #
21
22 http.server.services=HEALTHCHECK,LIVENESS
23
24 http.server.services.HEALTHCHECK.host=0.0.0.0
25 http.server.services.HEALTHCHECK.port=6969
26 http.server.services.HEALTHCHECK.restClasses=org.onap.policy.drools.healthcheck.RestHealthCheck
27 http.server.services.HEALTHCHECK.managed=false
28 http.server.services.HEALTHCHECK.swagger=true
29 http.server.services.HEALTHCHECK.userName=${envd:HEALTHCHECK_USER}
30 http.server.services.HEALTHCHECK.password=${envd:HEALTHCHECK_PASSWORD}
31 http.server.services.HEALTHCHECK.https=${envd:HTTP_SERVER_HTTPS:false}
32 http.server.services.HEALTHCHECK.serialization.provider=org.onap.policy.common.gson.JacksonHandler,org.onap.policy.common.endpoints.http.server.YamlJacksonHandler
33
34 http.server.services.LIVENESS.host=0.0.0.0
35 http.server.services.LIVENESS.port=6968
36 http.server.services.LIVENESS.restClasses=org.onap.policy.drools.healthcheck.RestHealthCheck
37 http.server.services.LIVENESS.managed=false
38 http.server.services.LIVENESS.swagger=true
39 http.server.services.LIVENESS.serialization.provider=org.onap.policy.common.gson.JacksonHandler,org.onap.policy.common.endpoints.http.server.YamlJacksonHandler
40
41 http.client.services=PAP,PDPX
42
43 http.client.services.PAP.host=${envd:PAP_HOST}
44 http.client.services.PAP.port=6969
45 http.client.services.PAP.userName=${envd:PAP_USERNAME}
46 http.client.services.PAP.password=${envd:PAP_PASSWORD}
47 http.client.services.PAP.https=${envd:HTTP_SERVER_HTTPS:false}
48 http.client.services.PAP.managed=true
49 http.client.services.PAP.contextUriPath=policy/pap/v1/healthcheck
50
51 http.client.services.PDPX.host=${envd:PDP_HOST}
52 http.client.services.PDPX.port=6969
53 http.client.services.PDPX.userName=${envd:PDP_USERNAME}
54 http.client.services.PDPX.password=${envd:PDP_PASSWORD}
55 http.client.services.PDPX.https=${envd:HTTP_SERVER_HTTPS}
56 http.client.services.PDPX.managed=true
57 http.client.services.PDPX.contextUriPath=policy/pdpx/v1/healthcheck
58
59 liveness.controllers=${envd:LIVENESS_CONTROLLERS:*}
60 liveness.controllers.timeout=${envd:LIVENESS_TIMEOUT_SECONDS:10}