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. |
rameshiyer27 | f2e4da7 | 2024-01-13 21:26:09 +0000 | [diff] [blame] | 4 | # Modification Copyright 2024 Nordix Foundation. |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 5 | # ================================================================================ |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # ============LICENSE_END========================================================= |
| 18 | |
| 19 | # JVM options |
| 20 | |
| 21 | JVM_OPTIONS=-server -Xms512m -Xmx512m |
| 22 | |
| 23 | # SYSTEM software configuration |
| 24 | |
| 25 | DEBUG=y |
| 26 | POLICY_HOME=/opt/app/policy |
| 27 | POLICY_LOGS=/var/log/onap/policy/pdpd |
| 28 | KEYSTORE_PASSWD=Pol1cy_0nap |
| 29 | TRUSTSTORE_PASSWD=Pol1cy_0nap |
| 30 | |
| 31 | # Telemetry credentials |
| 32 | |
| 33 | TELEMETRY_PORT=9696 |
| 34 | TELEMETRY_HOST=0.0.0.0 |
| 35 | TELEMETRY_USER=demo@people.osaaf.org |
| 36 | TELEMETRY_PASSWORD=demo123456! |
| 37 | |
| 38 | # nexus repository |
| 39 | |
| 40 | SNAPSHOT_REPOSITORY_ID=policy-nexus-snapshots |
| 41 | SNAPSHOT_REPOSITORY_URL=http://nexus:8081/nexus/content/repositories/snapshots/ |
| 42 | RELEASE_REPOSITORY_ID=policy-nexus-releases |
| 43 | RELEASE_REPOSITORY_URL=http://nexus:8081/nexus/content/repositories/releases/ |
| 44 | REPOSITORY_USERNAME=admin |
| 45 | REPOSITORY_PASSWORD=admin123 |
| 46 | REPOSITORY_OFFLINE=false |
| 47 | |
| 48 | # Relational (SQL) DB access |
| 49 | |
| 50 | SQL_HOST=mariadb |
| 51 | SQL_USER=policy_user |
| 52 | SQL_PASSWORD=policy_user |
jhh | d7c35a1 | 2021-08-30 17:24:59 -0500 | [diff] [blame] | 53 | SQL_PORT=3306 |
jhh | 98aba67 | 2022-10-01 12:55:53 -0500 | [diff] [blame] | 54 | JDBC_URL=jdbc:mariadb://mariadb:3306/ |
| 55 | JDBC_OPTS= |
| 56 | MYSQL_CMD= |
| 57 | |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 58 | |
| 59 | # AAF |
| 60 | |
| 61 | AAF=false |
| 62 | AAF_NAMESPACE=org.onap.policy |
| 63 | AAF_HOST=aaf.api.simpledemo.onap.org |
| 64 | |
jhh | d7c35a1 | 2021-08-30 17:24:59 -0500 | [diff] [blame] | 65 | # HTTP Servers |
Jim Hahn | e43792b | 2021-08-24 17:13:35 -0400 | [diff] [blame] | 66 | |
liamfallon | faac45b | 2022-09-01 12:05:47 +0100 | [diff] [blame] | 67 | HTTP_SERVER_HTTPS=false |
a.sreekumar | 60d6a08 | 2021-08-20 17:39:53 +0100 | [diff] [blame] | 68 | PROMETHEUS=true |
| 69 | |
rameshiyer27 | caa7adc | 2024-01-16 12:21:26 +0000 | [diff] [blame^] | 70 | # PDP-D Kafka configuration channel |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 71 | |
rameshiyer27 | f2e4da7 | 2024-01-13 21:26:09 +0000 | [diff] [blame] | 72 | PDPD_CONFIGURATION_TOPIC=pdpd-configuration |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 73 | PDPD_CONFIGURATION_API_KEY= |
| 74 | PDPD_CONFIGURATION_API_SECRET= |
| 75 | PDPD_CONFIGURATION_CONSUMER_GROUP= |
| 76 | PDPD_CONFIGURATION_CONSUMER_INSTANCE= |
| 77 | PDPD_CONFIGURATION_PARTITION_KEY= |
| 78 | |
| 79 | # PAP-PDP configuration channel |
| 80 | |
rameshiyer27 | f2e4da7 | 2024-01-13 21:26:09 +0000 | [diff] [blame] | 81 | POLICY_PDP_PAP_TOPIC=policy-pdp-pap |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 82 | POLICY_PDP_PAP_API_KEY= |
| 83 | POLICY_PDP_PAP_API_SECRET= |
| 84 | |
| 85 | # PAP |
| 86 | |
| 87 | PAP_HOST= |
| 88 | PAP_USERNAME= |
| 89 | PAP_PASSWORD= |
| 90 | |
| 91 | # PDP-X |
| 92 | |
| 93 | PDP_HOST= |
| 94 | PDP_PORT= |
| 95 | PDP_CONTEXT_URI=policy/pdpx/v1/ |
| 96 | PDP_USERNAME= |
| 97 | PDP_PASSWORD= |
| 98 | PDP_CLIENT_USERNAME= |
| 99 | PDP_CLIENT_PASSWORD= |
| 100 | PDP_ENVIRONMENT= |
| 101 | GUARD_DISABLED=false |
| 102 | |
rameshiyer27 | caa7adc | 2024-01-16 12:21:26 +0000 | [diff] [blame^] | 103 | # DCAE Kafka |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 104 | |
rameshiyer27 | f2e4da7 | 2024-01-13 21:26:09 +0000 | [diff] [blame] | 105 | DCAE_TOPIC=unauthenticated.dcae_cl_output |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 106 | DCAE_SERVERS= |
| 107 | DCAE_CONSUMER_GROUP=dcae.policy.shared |
| 108 | |
rameshiyer27 | caa7adc | 2024-01-16 12:21:26 +0000 | [diff] [blame^] | 109 | # kafka server |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 110 | |
rameshiyer27 | caa7adc | 2024-01-16 12:21:26 +0000 | [diff] [blame^] | 111 | KAFKA_SERVERS=kafka:9092 |
| 112 | |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 113 | |
| 114 | # AAI |
| 115 | |
| 116 | AAI_HOST=aai.api.simpledemo.onap.org |
| 117 | AAI_PORT=8443 |
| 118 | AAI_CONTEXT_URI= |
| 119 | AAI_USERNAME=policy@policy.onap.org |
| 120 | AAI_PASSWORD=demo123456! |
| 121 | |
| 122 | # MSO |
| 123 | |
| 124 | SO_HOST=vm1.mso.simpledemo.onap.org |
| 125 | SO_PORT=8080 |
| 126 | SO_CONTEXT_URI=onap/so/infra/ |
| 127 | SO_URL=http://vm1.mso.simpledemo.onap.org:8080/onap/so/infra |
| 128 | SO_USERNAME=InfraPortalClient |
liamfallon | 8d3f129 | 2022-10-18 14:04:06 +0100 | [diff] [blame] | 129 | SO_PASSWORD='password1$' |
Taka Cho | 6d188af | 2021-01-11 16:48:33 -0500 | [diff] [blame] | 130 | |
| 131 | # VFC |
| 132 | |
| 133 | VFC_HOST= |
| 134 | VFC_PORT= |
| 135 | VFC_CONTEXT_URI=api/nslcm/v1/ |
| 136 | VFC_USERNAME= |
| 137 | VFC_PASSWORD= |
| 138 | |
| 139 | # SDNC |
| 140 | |
| 141 | SDNC_HOST= |
| 142 | SDNC_PORT= |
| 143 | SDNC_CONTEXT_URI=restconf/operations/ |
| 144 | SDNC_USERNAME= |
| 145 | SDNC_PASSWORD= |