jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 1 | # Copyright © 2017-2018 Amdocs, Bell Canada. |
| 2 | # Modifications Copyright (C) 2018-2019 AT&T Intellectual Property. |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 3 | # |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 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 | # |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 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. |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 15 | |
Jorge Hernandez | 9459947 | 2019-03-04 08:55:43 -0600 | [diff] [blame] | 16 | # JVM options |
| 17 | |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 18 | JVM_OPTIONS={{.Values.server.jvmOpts}} |
Jorge Hernandez | 9459947 | 2019-03-04 08:55:43 -0600 | [diff] [blame] | 19 | |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 20 | # SYSTEM software configuration |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 21 | |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 22 | POLICY_HOME=/opt/app/policy |
Jorge Hernandez | 63ec8bc | 2018-04-10 19:35:13 -0500 | [diff] [blame] | 23 | POLICY_LOGS=/var/log/onap/policy/pdpd |
Jorge Hernandez | a9a4a94 | 2019-03-07 13:02:23 -0600 | [diff] [blame] | 24 | JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 25 | |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 26 | # Telemetry credentials |
| 27 | |
Jorge Hernandez | 3b49088 | 2019-01-07 10:01:08 -0600 | [diff] [blame] | 28 | TELEMETRY_PORT=9696 |
| 29 | TELEMETRY_HOST=0.0.0.0 |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 30 | |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 31 | # nexus repository |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 32 | |
Jorge Hernandez | 3b49088 | 2019-01-07 10:01:08 -0600 | [diff] [blame] | 33 | SNAPSHOT_REPOSITORY_ID=policy-nexus-snapshots |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 34 | SNAPSHOT_REPOSITORY_URL=http://{{.Values.global.nexus.nameOverride}}:{{.Values.nexus.port}}/nexus/content/repositories/snapshots/ |
Jorge Hernandez | 3b49088 | 2019-01-07 10:01:08 -0600 | [diff] [blame] | 35 | RELEASE_REPOSITORY_ID=policy-nexus-releases |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 36 | RELEASE_REPOSITORY_URL=http://{{.Values.global.nexus.nameOverride}}:{{.Values.nexus.port}}/nexus/content/repositories/releases/ |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 37 | |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 38 | # Relational (SQL) DB access |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 39 | |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 40 | SQL_HOST={{ .Values.global.mariadb.service.name }} |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 41 | |
Jorge Hernandez | 5897c18 | 2018-09-19 19:48:02 -0500 | [diff] [blame] | 42 | # AAF |
| 43 | |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 44 | AAF={{.Values.aaf.enabled}} |
Jorge Hernandez | 5897c18 | 2018-09-19 19:48:02 -0500 | [diff] [blame] | 45 | AAF_NAMESPACE=org.onap.policy |
| 46 | AAF_HOST=aaf-locate.{{.Release.Namespace}} |
| 47 | |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 48 | # PDP-D DMaaP configuration channel |
| 49 | |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 50 | PDPD_CONFIGURATION_TOPIC=PDPD-CONFIGURATION |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 51 | PDPD_CONFIGURATION_SERVERS=message-router |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 52 | PDPD_CONFIGURATION_CONSUMER_GROUP= |
| 53 | PDPD_CONFIGURATION_CONSUMER_INSTANCE= |
| 54 | PDPD_CONFIGURATION_PARTITION_KEY= |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 55 | |
Jorge Hernandez | 9459947 | 2019-03-04 08:55:43 -0600 | [diff] [blame] | 56 | # PAP-PDP configuration channel |
| 57 | |
| 58 | POLICY_PDP_PAP_TOPIC=POLICY-PDP-PAP |
Jorge Hernandez | 9459947 | 2019-03-04 08:55:43 -0600 | [diff] [blame] | 59 | |
jhh | 7ade5b8 | 2019-10-25 00:05:36 -0500 | [diff] [blame] | 60 | # Symmetric Key for encoded sensitive data |
| 61 | |
| 62 | SYMM_KEY= |
| 63 | |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 64 | # PAP |
| 65 | |
jhh | 25ffebe | 2019-05-08 22:24:51 -0500 | [diff] [blame] | 66 | PAP_HOST=policy-pap |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 67 | |
| 68 | # PDP-X |
| 69 | |
jhh | 25ffebe | 2019-05-08 22:24:51 -0500 | [diff] [blame] | 70 | PDP_HOST=policy-xacml-pdp |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 71 | |
| 72 | # DCAE DMaaP |
| 73 | |
Alexis de Talhouët | df4db0b | 2017-12-11 08:36:25 -0500 | [diff] [blame] | 74 | DCAE_TOPIC=unauthenticated.DCAE_CL_OUTPUT |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 75 | DCAE_SERVERS=message-router |
Jorge Hernandez | 4519ccc | 2018-05-09 08:50:59 -0500 | [diff] [blame] | 76 | DCAE_CONSUMER_GROUP=dcae.policy.shared |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 77 | |
| 78 | # Open DMaaP |
| 79 | |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 80 | DMAAP_SERVERS=message-router |
Alexis de Talhouët | df4db0b | 2017-12-11 08:36:25 -0500 | [diff] [blame] | 81 | |
| 82 | # AAI |
| 83 | |
Jorge Hernandez | 3ab0017 | 2018-05-23 13:59:50 -0500 | [diff] [blame] | 84 | AAI_URL=https://aai.{{.Release.Namespace}}:8443 |
Alexis de Talhouët | df4db0b | 2017-12-11 08:36:25 -0500 | [diff] [blame] | 85 | |
| 86 | # MSO |
| 87 | |
Jim Hahn | 72cb8ec | 2018-10-31 17:07:18 -0400 | [diff] [blame] | 88 | SO_URL=http://so.{{.Release.Namespace}}:8080/onap/so/infra |
Alexis de Talhouët | df4db0b | 2017-12-11 08:36:25 -0500 | [diff] [blame] | 89 | |
| 90 | # VFC |
| 91 | |
| 92 | VFC_URL= |
Jorge Hernandez | 4bf4736 | 2018-10-05 10:47:07 -0500 | [diff] [blame] | 93 | |
| 94 | # SDNC |
| 95 | |
Vidyashree Rama | 77a0e0a | 2019-05-08 01:11:32 +0530 | [diff] [blame] | 96 | SDNC_URL=http://sdnc.{{.Release.Namespace}}:8282/restconf/operations |
Rashmi Pujar | 3cfa4cc | 2019-10-17 16:05:50 -0400 | [diff] [blame] | 97 | |
| 98 | # CDS |
| 99 | |
| 100 | CDS_GRPC_HOST={{.Values.cds.grpc.svcName}} |
| 101 | CDS_GRPC_PORT={{.Values.cds.grpc.svcPort}} |