Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
Jim Hahn | e43792b | 2021-08-24 17:13:35 -0400 | [diff] [blame] | 2 | # Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. |
a.sreekumar | 60d6a08 | 2021-08-20 17:39:53 +0100 | [diff] [blame] | 3 | # Modifications Copyright (C) 2021 Bell Canada. All rights reserved. |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [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 | # ============LICENSE_END========================================================= |
| 17 | |
| 18 | # JVM options |
| 19 | |
| 20 | JVM_OPTIONS=-server -Xms512m -Xmx512m |
| 21 | |
| 22 | # SYSTEM software configuration |
| 23 | |
| 24 | DEBUG=y |
| 25 | POLICY_HOME=/opt/app/policy |
| 26 | POLICY_LOGS=/var/log/onap/policy/pdpd |
| 27 | KEYSTORE_PASSWD=Pol1cy_0nap |
| 28 | TRUSTSTORE_PASSWD=Pol1cy_0nap |
| 29 | |
| 30 | # Telemetry credentials |
| 31 | |
| 32 | TELEMETRY_PORT=9696 |
| 33 | TELEMETRY_HOST=0.0.0.0 |
| 34 | TELEMETRY_USER=demo@people.osaaf.org |
| 35 | TELEMETRY_PASSWORD=demo123456! |
| 36 | |
| 37 | # nexus repository |
| 38 | |
| 39 | SNAPSHOT_REPOSITORY_ID=policy-nexus-snapshots |
| 40 | SNAPSHOT_REPOSITORY_URL=http://nexus:8081/nexus/content/repositories/snapshots/ |
| 41 | RELEASE_REPOSITORY_ID=policy-nexus-releases |
| 42 | RELEASE_REPOSITORY_URL=http://nexus:8081/nexus/content/repositories/releases/ |
| 43 | REPOSITORY_USERNAME=admin |
| 44 | REPOSITORY_PASSWORD=admin123 |
| 45 | REPOSITORY_OFFLINE=false |
| 46 | |
| 47 | # Relational (SQL) DB access |
| 48 | |
| 49 | SQL_HOST=mariadb |
| 50 | SQL_USER=policy_user |
| 51 | SQL_PASSWORD=policy_user |
| 52 | |
| 53 | # AAF |
| 54 | |
| 55 | AAF=false |
| 56 | AAF_NAMESPACE=org.onap.policy |
| 57 | AAF_HOST=aaf.api.simpledemo.onap.org |
| 58 | |
Jim Hahn | e43792b | 2021-08-24 17:13:35 -0400 | [diff] [blame] | 59 | # HTTP Servers https enabled |
| 60 | |
| 61 | HTTP_SERVER_HTTPS=true |
| 62 | |
a.sreekumar | 60d6a08 | 2021-08-20 17:39:53 +0100 | [diff] [blame] | 63 | # Prometheus |
| 64 | |
| 65 | PROMETHEUS=true |
| 66 | |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 67 | # PDP-D DMaaP configuration channel |
| 68 | |
| 69 | PDPD_CONFIGURATION_TOPIC=PDPD-CONFIGURATION |
| 70 | PDPD_CONFIGURATION_API_KEY= |
| 71 | PDPD_CONFIGURATION_API_SECRET= |
| 72 | PDPD_CONFIGURATION_CONSUMER_GROUP= |
| 73 | PDPD_CONFIGURATION_CONSUMER_INSTANCE= |
| 74 | PDPD_CONFIGURATION_PARTITION_KEY= |
| 75 | |
| 76 | # PAP-PDP configuration channel |
| 77 | |
| 78 | POLICY_PDP_PAP_TOPIC=POLICY-PDP-PAP |
| 79 | POLICY_PDP_PAP_API_KEY= |
| 80 | POLICY_PDP_PAP_API_SECRET= |
| 81 | |
| 82 | # PAP |
| 83 | |
| 84 | PAP_HOST= |
| 85 | PAP_USERNAME= |
| 86 | PAP_PASSWORD= |
| 87 | |
| 88 | # PDP-X |
| 89 | |
| 90 | PDP_HOST= |
| 91 | PDP_PORT= |
| 92 | PDP_CONTEXT_URI=policy/pdpx/v1/ |
| 93 | PDP_USERNAME= |
| 94 | PDP_PASSWORD= |
| 95 | PDP_CLIENT_USERNAME= |
| 96 | PDP_CLIENT_PASSWORD= |
| 97 | PDP_ENVIRONMENT= |
| 98 | GUARD_DISABLED=false |
| 99 | |
| 100 | # DCAE DMaaP |
| 101 | |
| 102 | DCAE_TOPIC=unauthenticated.DCAE_CL_OUTPUT |
| 103 | DCAE_SERVERS= |
| 104 | DCAE_CONSUMER_GROUP=dcae.policy.shared |
| 105 | |
| 106 | # Open DMaaP |
| 107 | |
| 108 | DMAAP_SERVERS=mr.api.simpledemo.onap.org |
| 109 | |
| 110 | # AAI |
| 111 | |
| 112 | AAI_HOST=aai.api.simpledemo.onap.org |
| 113 | AAI_PORT=8443 |
| 114 | AAI_CONTEXT_URI= |
| 115 | AAI_USERNAME=policy@policy.onap.org |
| 116 | AAI_PASSWORD=demo123456! |
| 117 | |
| 118 | # MSO |
| 119 | |
| 120 | SO_HOST=vm1.mso.simpledemo.onap.org |
| 121 | SO_PORT=8080 |
| 122 | SO_CONTEXT_URI=onap/so/infra/ |
| 123 | SO_URL=http://vm1.mso.simpledemo.onap.org:8080/onap/so/infra |
| 124 | SO_USERNAME=InfraPortalClient |
| 125 | SO_PASSWORD=password1$ |
| 126 | |
| 127 | # VFC |
| 128 | |
| 129 | VFC_HOST= |
| 130 | VFC_PORT= |
| 131 | VFC_CONTEXT_URI=api/nslcm/v1/ |
| 132 | VFC_USERNAME= |
| 133 | VFC_PASSWORD= |
| 134 | |
| 135 | # SDNC |
| 136 | |
| 137 | SDNC_HOST= |
| 138 | SDNC_PORT= |
| 139 | SDNC_CONTEXT_URI=restconf/operations/ |
| 140 | SDNC_USERNAME= |
| 141 | SDNC_PASSWORD= |