Jakub Latusek | d71d26c | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 2 | # Copyright © 2017-2018 Amdocs, Bell Canada. |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 3 | # Modifications Copyright (C) 2018-2020 AT&T Intellectual Property. |
jhh | d74fe9f | 2021-04-15 11:04:39 -0500 | [diff] [blame^] | 4 | # Modifications Copyright (C) 2021 Bell Canada. All rights reserved. |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 5 | # |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 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 | # |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 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. |
Jakub Latusek | d71d26c | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 17 | */}} |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 18 | |
Jorge Hernandez | 9459947 | 2019-03-04 08:55:43 -0600 | [diff] [blame] | 19 | # JVM options |
| 20 | |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 21 | JVM_OPTIONS={{.Values.server.jvmOpts}} |
Jorge Hernandez | 9459947 | 2019-03-04 08:55:43 -0600 | [diff] [blame] | 22 | |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 23 | # SYSTEM software configuration |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 24 | |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 25 | POLICY_HOME=/opt/app/policy |
Jorge Hernandez | 63ec8bc | 2018-04-10 19:35:13 -0500 | [diff] [blame] | 26 | POLICY_LOGS=/var/log/onap/policy/pdpd |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 27 | |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 28 | # Telemetry credentials |
| 29 | |
Jorge Hernandez | 3b49088 | 2019-01-07 10:01:08 -0600 | [diff] [blame] | 30 | TELEMETRY_PORT=9696 |
| 31 | TELEMETRY_HOST=0.0.0.0 |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 32 | |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 33 | # nexus repository |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 34 | |
Jorge Hernandez | 3b49088 | 2019-01-07 10:01:08 -0600 | [diff] [blame] | 35 | SNAPSHOT_REPOSITORY_ID=policy-nexus-snapshots |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 36 | SNAPSHOT_REPOSITORY_URL=http://{{.Values.nexus.name}}:{{.Values.nexus.port}}/nexus/content/repositories/snapshots/ |
Jorge Hernandez | 3b49088 | 2019-01-07 10:01:08 -0600 | [diff] [blame] | 37 | RELEASE_REPOSITORY_ID=policy-nexus-releases |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 38 | RELEASE_REPOSITORY_URL=http://{{.Values.nexus.name}}:{{.Values.nexus.port}}/nexus/content/repositories/releases/ |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 39 | REPOSITORY_OFFLINE={{.Values.nexus.offline}} |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 40 | |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 41 | # Relational (SQL) DB access |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 42 | |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 43 | SQL_HOST={{ .Values.db.name }} |
jhh | d74fe9f | 2021-04-15 11:04:39 -0500 | [diff] [blame^] | 44 | SQL_PORT=3306 |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 45 | |
Jorge Hernandez | 5897c18 | 2018-09-19 19:48:02 -0500 | [diff] [blame] | 46 | # AAF |
| 47 | |
jhh | 0109659 | 2019-09-04 07:47:25 -0500 | [diff] [blame] | 48 | AAF={{.Values.aaf.enabled}} |
Jorge Hernandez | 5897c18 | 2018-09-19 19:48:02 -0500 | [diff] [blame] | 49 | AAF_NAMESPACE=org.onap.policy |
| 50 | AAF_HOST=aaf-locate.{{.Release.Namespace}} |
| 51 | |
jhh | d74fe9f | 2021-04-15 11:04:39 -0500 | [diff] [blame^] | 52 | # HTTP Servers |
| 53 | |
| 54 | HTTP_SERVER_HTTPS=true |
| 55 | PROMETHEUS=true |
| 56 | |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 57 | # PDP-D DMaaP configuration channel |
| 58 | |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 59 | PDPD_CONFIGURATION_TOPIC=PDPD-CONFIGURATION |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 60 | PDPD_CONFIGURATION_SERVERS=message-router |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 61 | PDPD_CONFIGURATION_CONSUMER_GROUP= |
| 62 | PDPD_CONFIGURATION_CONSUMER_INSTANCE= |
| 63 | PDPD_CONFIGURATION_PARTITION_KEY= |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 64 | |
Jorge Hernandez | 9459947 | 2019-03-04 08:55:43 -0600 | [diff] [blame] | 65 | # PAP-PDP configuration channel |
| 66 | |
| 67 | POLICY_PDP_PAP_TOPIC=POLICY-PDP-PAP |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 68 | POLICY_PDP_PAP_GROUP=defaultGroup |
jhh | bf8d8a9 | 2020-09-10 14:01:49 -0500 | [diff] [blame] | 69 | POLICY_PDP_PAP_POLICYTYPES=onap.policies.controlloop.operational.common.Drools |
Jorge Hernandez | 9459947 | 2019-03-04 08:55:43 -0600 | [diff] [blame] | 70 | |
jhh | 7ade5b8 | 2019-10-25 00:05:36 -0500 | [diff] [blame] | 71 | # Symmetric Key for encoded sensitive data |
| 72 | |
| 73 | SYMM_KEY= |
| 74 | |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 75 | # PAP |
| 76 | |
jhh | 25ffebe | 2019-05-08 22:24:51 -0500 | [diff] [blame] | 77 | PAP_HOST=policy-pap |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 78 | |
| 79 | # PDP-X |
| 80 | |
jhh | 25ffebe | 2019-05-08 22:24:51 -0500 | [diff] [blame] | 81 | PDP_HOST=policy-xacml-pdp |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 82 | PDP_PORT=6969 |
| 83 | PDP_CONTEXT_URI=policy/pdpx/v1/ |
| 84 | GUARD_DISABLED=false |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 85 | |
| 86 | # DCAE DMaaP |
| 87 | |
Alexis de Talhouët | df4db0b | 2017-12-11 08:36:25 -0500 | [diff] [blame] | 88 | DCAE_TOPIC=unauthenticated.DCAE_CL_OUTPUT |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 89 | DCAE_SERVERS=message-router |
Jorge Hernandez | 4519ccc | 2018-05-09 08:50:59 -0500 | [diff] [blame] | 90 | DCAE_CONSUMER_GROUP=dcae.policy.shared |
Mandeep Khinda | 1261024 | 2017-09-14 11:37:33 +0000 | [diff] [blame] | 91 | |
| 92 | # Open DMaaP |
| 93 | |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 94 | DMAAP_SERVERS=message-router |
jhh | d74fe9f | 2021-04-15 11:04:39 -0500 | [diff] [blame^] | 95 | DMAAP_HTTPS=true |
Alexis de Talhouët | df4db0b | 2017-12-11 08:36:25 -0500 | [diff] [blame] | 96 | |
| 97 | # AAI |
| 98 | |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 99 | AAI_HOST=aai.{{.Release.Namespace}} |
| 100 | AAI_PORT=8443 |
| 101 | AAI_CONTEXT_URI= |
Alexis de Talhouët | df4db0b | 2017-12-11 08:36:25 -0500 | [diff] [blame] | 102 | |
| 103 | # MSO |
| 104 | |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 105 | SO_HOST=so.{{.Release.Namespace}} |
| 106 | SO_PORT=8080 |
| 107 | SO_CONTEXT_URI=onap/so/infra/ |
| 108 | SO_URL=https://so.{{.Release.Namespace}}:8080/onap/so/infra |
Alexis de Talhouët | df4db0b | 2017-12-11 08:36:25 -0500 | [diff] [blame] | 109 | |
| 110 | # VFC |
| 111 | |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 112 | VFC_HOST= |
| 113 | VFC_PORT= |
| 114 | VFC_CONTEXT_URI=api/nslcm/v1/ |
Jorge Hernandez | 4bf4736 | 2018-10-05 10:47:07 -0500 | [diff] [blame] | 115 | |
| 116 | # SDNC |
| 117 | |
jhh | d2b9ed8 | 2019-12-10 17:15:28 -0600 | [diff] [blame] | 118 | SDNC_HOST=sdnc.{{.Release.Namespace}} |
| 119 | SDNC_PORT=8282 |
| 120 | SDNC_CONTEXT_URI=restconf/operations/ |
Rashmi Pujar | 3cfa4cc | 2019-10-17 16:05:50 -0400 | [diff] [blame] | 121 | |
| 122 | # CDS |
| 123 | |
| 124 | CDS_GRPC_HOST={{.Values.cds.grpc.svcName}} |
| 125 | CDS_GRPC_PORT={{.Values.cds.grpc.svcPort}} |