pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
Bilal A | 9f54c00 | 2020-01-16 16:12:19 +0000 | [diff] [blame] | 2 | # Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 3 | # ================================================================================ |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # ============LICENSE_END========================================================= |
| 16 | |
| 17 | # JVM options |
| 18 | |
| 19 | JVM_OPTIONS=-server -Xms512m -Xmx512m |
| 20 | |
| 21 | # SYSTEM software configuration |
| 22 | |
a.sreekumar | 2070574 | 2020-02-14 12:03:33 +0000 | [diff] [blame] | 23 | DEBUG=y |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 24 | POLICY_HOME=/opt/app/policy |
| 25 | POLICY_LOGS=/var/log/onap/policy/pdpd |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 26 | KEYSTORE_PASSWD=Pol1cy_0nap |
| 27 | TRUSTSTORE_PASSWD=Pol1cy_0nap |
| 28 | |
| 29 | # Telemetry credentials |
| 30 | |
| 31 | TELEMETRY_PORT=9696 |
| 32 | TELEMETRY_HOST=0.0.0.0 |
| 33 | TELEMETRY_USER=demo@people.osaaf.org |
| 34 | TELEMETRY_PASSWORD=demo123456! |
| 35 | |
| 36 | # nexus repository |
| 37 | |
| 38 | SNAPSHOT_REPOSITORY_ID= |
| 39 | SNAPSHOT_REPOSITORY_URL= |
| 40 | RELEASE_REPOSITORY_ID= |
| 41 | RELEASE_REPOSITORY_URL= |
| 42 | REPOSITORY_USERNAME= |
| 43 | REPOSITORY_PASSWORD= |
a.sreekumar | 2070574 | 2020-02-14 12:03:33 +0000 | [diff] [blame] | 44 | REPOSITORY_OFFLINE=true |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 45 | |
| 46 | # Relational (SQL) DB access |
| 47 | |
a.sreekumar | 2070574 | 2020-02-14 12:03:33 +0000 | [diff] [blame] | 48 | SQL_HOST=mariadb |
| 49 | SQL_USER=policy_user |
| 50 | SQL_PASSWORD=policy_user |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 51 | |
| 52 | # AAF |
| 53 | |
| 54 | AAF=false |
| 55 | AAF_NAMESPACE=org.onap.policy |
| 56 | AAF_HOST=aaf.api.simpledemo.onap.org |
| 57 | |
| 58 | # PDP-D DMaaP configuration channel |
| 59 | |
| 60 | PDPD_CONFIGURATION_TOPIC=PDPD-CONFIGURATION |
| 61 | PDPD_CONFIGURATION_API_KEY= |
| 62 | PDPD_CONFIGURATION_API_SECRET= |
| 63 | PDPD_CONFIGURATION_CONSUMER_GROUP= |
| 64 | PDPD_CONFIGURATION_CONSUMER_INSTANCE= |
| 65 | PDPD_CONFIGURATION_PARTITION_KEY= |
| 66 | |
| 67 | # PAP-PDP configuration channel |
| 68 | |
| 69 | POLICY_PDP_PAP_TOPIC=POLICY-PDP-PAP |
| 70 | POLICY_PDP_PAP_API_KEY= |
| 71 | POLICY_PDP_PAP_API_SECRET= |
| 72 | |
| 73 | # PAP |
| 74 | |
| 75 | PAP_HOST=pap |
| 76 | PAP_USERNAME=testpap |
| 77 | PAP_PASSWORD=alpha123 |
| 78 | |
| 79 | # PDP-X |
| 80 | |
| 81 | PDP_HOST=pdp |
Jim Hahn | d248ae9 | 2020-03-17 12:18:46 -0400 | [diff] [blame] | 82 | PDP_PORT=6969 |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 83 | PDP_USERNAME=testpdp |
| 84 | PDP_PASSWORD=alpha123 |
| 85 | PDP_CLIENT_USERNAME=python |
| 86 | PDP_CLIENT_PASSWORD=test |
| 87 | PDP_ENVIRONMENT=TEST |
| 88 | |
| 89 | # DCAE DMaaP |
| 90 | |
| 91 | DCAE_TOPIC=unauthenticated.DCAE_CL_OUTPUT |
| 92 | DCAE_SERVERS=mr.api.simpledemo.onap.org |
| 93 | DCAE_CONSUMER_GROUP=dcae.policy.shared |
| 94 | |
| 95 | # Open DMaaP |
| 96 | |
| 97 | DMAAP_SERVERS=mr.api.simpledemo.onap.org |
| 98 | |
| 99 | # AAI |
| 100 | |
Jim Hahn | d248ae9 | 2020-03-17 12:18:46 -0400 | [diff] [blame] | 101 | AAI_HOST=aai.api.simpledemo.onap.org |
| 102 | AAI_PORT=8443 |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 103 | AAI_URL=https://aai.api.simpledemo.onap.org:8443 |
| 104 | AAI_USERNAME=policy@policy.onap.org |
| 105 | AAI_PASSWORD=demo123456! |
| 106 | |
| 107 | # MSO |
| 108 | |
Jim Hahn | d248ae9 | 2020-03-17 12:18:46 -0400 | [diff] [blame] | 109 | SO_HOST=vm1.mso.simpledemo.onap.org |
| 110 | SO_PORT=8080 |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 111 | SO_URL=http://vm1.mso.simpledemo.onap.org:8080/onap/so/infra |
| 112 | SO_USERNAME=InfraPortalClient |
| 113 | SO_PASSWORD=password1$ |
| 114 | |
| 115 | # VFC |
| 116 | |
Jim Hahn | d248ae9 | 2020-03-17 12:18:46 -0400 | [diff] [blame] | 117 | VFC_HOST= |
| 118 | VFC_PORT= |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 119 | VFC_URL= |
| 120 | VFC_USERNAME= |
| 121 | VFC_PASSWORD= |
| 122 | |
| 123 | # SDNC |
| 124 | |
Jim Hahn | d248ae9 | 2020-03-17 12:18:46 -0400 | [diff] [blame] | 125 | SDNC_HOST= |
| 126 | SDNC_PORT= |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 127 | SDNC_URL= |
| 128 | SDNC_USERNAME= |
| 129 | SDNC_PASSWORD= |