blob: 61532fa395129c6576e086e2e56aff3eaba6ce9c [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada
jhhd4258672020-08-09 12:08:08 -05002# Modifications Copyright © 2018-2020 AT&T Intellectual Property
mayankg2703ced85142018-03-20 05:42:53 +00003#
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
16#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020021 readinessImage: onap/oom/readiness:3.0.1
22 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24 ubuntuImage: ubuntu:16.04
jhh01096592019-09-04 07:47:25 -050025
mayankg2703ced85142018-03-20 05:42:53 +000026#################################################################
Krzysztof Opasiak68b1c922020-03-26 23:59:36 +010027# Secrets metaconfig
28#################################################################
29secrets:
30 - uid: db-secret
31 type: basicAuth
32 externalSecret: '{{ tpl (default "" .Values.db.credsExternalSecret) . }}'
33 login: '{{ .Values.db.user }}'
34 password: '{{ .Values.db.password }}'
35 passwordPolicy: required
36
37#################################################################
mayankg2703ced85142018-03-20 05:42:53 +000038# Application configuration defaults.
39#################################################################
40# application image
41repository: nexus3.onap.org:10001
Jim Hahnf98e7c62020-10-20 14:26:30 -040042image: onap/policy-pdpd-cl:1.7.4
mayankg2703ced85142018-03-20 05:42:53 +000043pullPolicy: Always
44
45# flag to enable debugging - application support required
46debugEnabled: false
47
mayankg2703ced85142018-03-20 05:42:53 +000048# default number of instances
Jorge Hernandezd9f75452018-06-04 11:18:52 -050049replicaCount: 1
mayankg2703ced85142018-03-20 05:42:53 +000050
51nodeSelector: {}
52
53affinity: {}
54
55# probe configuration parameters
56liveness:
Jorge Hernandez432aa312018-06-04 18:20:43 -050057 initialDelaySeconds: 180
mayankg2703ced85142018-03-20 05:42:53 +000058 periodSeconds: 10
59 # necessary to disable liveness probe when setting breakpoints
60 # in debugger so K8s doesn't restart unresponsive container
Jorge Hernandez328eadb2018-05-15 07:52:21 -050061 enabled: true
mayankg2703ced85142018-03-20 05:42:53 +000062
63readiness:
Jorge Hernandezd9f75452018-06-04 11:18:52 -050064 initialDelaySeconds: 60
mayankg2703ced85142018-03-20 05:42:53 +000065 periodSeconds: 10
66
67service:
jhh59ce22d2019-05-14 17:59:36 -050068 type: ClusterIP
jhhd4258672020-08-09 12:08:08 -050069 name: policy-drools-pdp
70 portName: policy-drools-pdp
jhh59ce22d2019-05-14 17:59:36 -050071 internalPort: 6969
mayankg2703ced85142018-03-20 05:42:53 +000072 externalPort: 6969
73 nodePort: 17
jhh59ce22d2019-05-14 17:59:36 -050074 internalPort2: 9696
mayankg2703ced85142018-03-20 05:42:53 +000075 externalPort2: 9696
76 nodePort2: 21
77
78ingress:
79 enabled: false
80
jhh01096592019-09-04 07:47:25 -050081# Default installation values to be overridden
82
jhhd4258672020-08-09 12:08:08 -050083certInitializer:
84 nameOverride: policy-drools-pdp-cert-initializer
85 aafDeployFqi: deployer@people.osaaf.org
86 aafDeployPass: demo123456!
87 fqdn: policy
88 fqi: policy@policy.onap.org
89 public_fqdn: policy.onap.org
90 cadi_latitude: "0.0"
91 cadi_longitude: "0.0"
92 credsPath: /opt/app/osaaf/local
93 app_ns: org.osaaf.aaf
94 uid: 1000
95 gid: 1000
96 aaf_add_config: >
97 /opt/app/aaf_config/bin/agent.sh;
98 export $(/opt/app/aaf_config/bin/agent.sh local showpass
99 {{ .Values.fqi }} {{ .Values.fqdn }} | grep "^cadi_keystore_password_p12");
100 echo "export KEYSTORE='{{ .Values.credsPath }}/org.onap.policy.p12'" >> {{ .Values.credsPath }}/.ci;
101 echo "export KEYSTORE_PASSWD='${cadi_keystore_password_p12}'" >> {{ .Values.credsPath }}/.ci;
102 chown -R {{ .Values.uid }}:{{ .Values.gid }} $(dirname {{ .Values.credsPath }});
103
jhh01096592019-09-04 07:47:25 -0500104server:
jhhed6839f2020-05-08 12:28:27 -0500105 jvmOpts: -server -XshowSettings:vm
jhh01096592019-09-04 07:47:25 -0500106
107aaf:
jhh8534fea2019-09-20 14:35:20 -0500108 enabled: "false"
jhh01096592019-09-04 07:47:25 -0500109
110keystore:
111 password: Pol1cy_0nap
112
113truststore:
114 password: Pol1cy_0nap
115
116telemetry:
117 user: demo@people.osaaf.org
118 password: demo123456!
119
120nexus:
jhhd4258672020-08-09 12:08:08 -0500121 name: policy-nexus
122 port: 8081
jhh8534fea2019-09-20 14:35:20 -0500123 user: admin
jhh01096592019-09-04 07:47:25 -0500124 password: admin123
jhhd2b9ed82019-12-10 17:15:28 -0600125 offline: true
jhh01096592019-09-04 07:47:25 -0500126
127db:
jhhd4258672020-08-09 12:08:08 -0500128 name: policy-mariadb
jhh01096592019-09-04 07:47:25 -0500129 user: policy_user
130 password: policy_user
131
132pap:
133 user: healthcheck
134 password: zb!XztG34
135
136pdp:
137 user: healthcheck
138 password: zb!XztG34
139
jhhdf5484e2020-04-06 15:08:35 -0500140papl:
141 user: testpap
142 password: alpha123
143
144pdpl:
145 user: testpdp
146 password: alpha123
147
jhh01096592019-09-04 07:47:25 -0500148aai:
149 user: policy@policy.onap.org
150 password: demo123456!
151
152so:
153 user: InfraPortalClient
154 password: password1$
155
156vfc:
157 user:
158 password:
159
160sdnc:
161 user: admin
162 password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
163
164dmaap:
165 brmsgw:
166 key:
167 password:
168 pap:
169 key:
170 password:
171
Rashmi Pujar3cfa4cc2019-10-17 16:05:50 -0400172cds:
173 grpc:
174 user: ccsdkapps
175 password: ccsdkapps
176 svcName: cds-blueprints-processor-grpc
177 svcPort: 9111
178
vaibhavjayas4136f5d2018-08-17 07:01:05 +0000179# Resource Limit flavor -By Default using small
jhhd4258672020-08-09 12:08:08 -0500180# Segregation for Different environment (small, large, or unlimited)
vaibhavjayas4136f5d2018-08-17 07:01:05 +0000181flavor: small
vaibhavjayas4136f5d2018-08-17 07:01:05 +0000182resources:
183 small:
184 limits:
185 cpu: 1
186 memory: 4Gi
187 requests:
188 cpu: 100m
189 memory: 1Gi
190 large:
191 limits:
192 cpu: 2
193 memory: 8Gi
194 requests:
195 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000196 memory: 2Gi
Pamela Dragosh54048d32018-11-09 07:09:41 -0500197 unlimited: {}