mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
| 2 | # Copyright (C) 2018 Ericsson. All rights reserved. |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 3 | # Modifications Copyright (C) 2020 AT&T Intellectual Property. |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 4 | # ================================================================================ |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | # SPDX-License-Identifier: Apache-2.0 |
| 18 | # ============LICENSE_END========================================================= |
| 19 | { |
| 20 | "name":"SDCDistributionGroup", |
| 21 | "restServerParameters":{ |
| 22 | "host":"0.0.0.0", |
| 23 | "port":6969, |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 24 | "userName":"${RESTSERVER_USER}", |
| 25 | "password":"${RESTSERVER_PASSWORD}", |
liboNet | 25006c7 | 2018-12-21 06:22:01 +0800 | [diff] [blame] | 26 | "https":true |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 27 | }, |
| 28 | "receptionHandlerParameters":{ |
| 29 | "SDCReceptionHandler":{ |
| 30 | "receptionHandlerType":"SDC", |
| 31 | "receptionHandlerClassName":"org.onap.policy.distribution.reception.handling.sdc.SdcReceptionHandler", |
| 32 | "receptionHandlerConfigurationName":"sdcConfiguration", |
| 33 | "pluginHandlerParameters":{ |
| 34 | "policyDecoders":{ |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 35 | "ToscaPolicyDecoder":{ |
| 36 | "decoderType":"ToscaPolicyDecoder", |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 37 | "decoderClassName":"org.onap.policy.distribution.reception.decoding.policy.file.PolicyDecoderFileInCsarToPolicy", |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 38 | "decoderConfigurationName": "toscaPolicyDecoderConfiguration" |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 39 | } |
| 40 | }, |
| 41 | "policyForwarders":{ |
ramverma | 7ad8089 | 2019-08-30 14:55:47 +0100 | [diff] [blame] | 42 | "LifeCycleApiForwarder":{ |
| 43 | "forwarderType":"LifeCycleAPI", |
| 44 | "forwarderClassName":"org.onap.policy.distribution.forwarding.lifecycle.api.LifecycleApiPolicyForwarder", |
| 45 | "forwarderConfigurationName": "lifecycleApiConfiguration" |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 46 | } |
| 47 | } |
| 48 | } |
| 49 | } |
| 50 | }, |
| 51 | "receptionHandlerConfigurationParameters":{ |
| 52 | "sdcConfiguration":{ |
| 53 | "parameterClassName":"org.onap.policy.distribution.reception.handling.sdc.SdcReceptionHandlerConfigurationParameterGroup", |
| 54 | "parameters":{ |
| 55 | "asdcAddress": "sdc-be:8443", |
| 56 | "messageBusAddress": [ |
| 57 | "message-router" |
| 58 | ], |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 59 | "user": "${SDCBE_USER}", |
| 60 | "password": "${SDCBE_PASSWORD}", |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 61 | "pollingInterval":20, |
| 62 | "pollingTimeout":30, |
| 63 | "consumerId": "policy-id", |
| 64 | "artifactTypes": [ |
| 65 | "TOSCA_CSAR", |
| 66 | "HEAT" |
| 67 | ], |
| 68 | "consumerGroup": "policy-group", |
| 69 | "environmentName": "AUTO", |
| 70 | "keystorePath": "null", |
| 71 | "keystorePassword": "null", |
| 72 | "activeserverTlsAuth": false, |
| 73 | "isFilterinEmptyResources": true, |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 74 | "isUseHttpsWithDmaap": true |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 75 | } |
| 76 | } |
| 77 | }, |
| 78 | "policyDecoderConfigurationParameters":{ |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 79 | "toscaPolicyDecoderConfiguration":{ |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 80 | "parameterClassName":"org.onap.policy.distribution.reception.decoding.policy.file.PolicyDecoderFileInCsarToPolicyParameterGroup", |
| 81 | "parameters":{ |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 82 | "policyFileName": "tosca_policy", |
| 83 | "policyTypeFileName": "tosca_policy_type" |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 84 | } |
| 85 | } |
| 86 | }, |
| 87 | "policyForwarderConfigurationParameters":{ |
ramverma | 7ad8089 | 2019-08-30 14:55:47 +0100 | [diff] [blame] | 88 | "lifecycleApiConfiguration":{ |
| 89 | "parameterClassName":"org.onap.policy.distribution.forwarding.lifecycle.api.LifecycleApiForwarderParameters", |
| 90 | "parameters":{ |
| 91 | "apiParameters": { |
| 92 | "hostName": "policy-api", |
| 93 | "port": 6969, |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 94 | "userName": "${API_USER}", |
| 95 | "password": "${API_PASSWORD}" |
ramverma | 7ad8089 | 2019-08-30 14:55:47 +0100 | [diff] [blame] | 96 | }, |
| 97 | "papParameters": { |
| 98 | "hostName": "policy-pap", |
| 99 | "port": 6969, |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 100 | "userName": "${PAP_USER}", |
| 101 | "password": "${PAP_PASSWORD}" |
ramverma | 7ad8089 | 2019-08-30 14:55:47 +0100 | [diff] [blame] | 102 | }, |
| 103 | "isHttps": true, |
| 104 | "deployPolicies": true |
| 105 | } |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 106 | } |
| 107 | } |
| 108 | } |