blob: aa3fdb7bf2f72a3df725e317dd4dc02f7f390aa0 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
jhhd4258672020-08-09 12:08:08 -05002# Modifications Copyright © 2018-2020 AT&T Intellectual Property
FrancescoFioraEst9c79e262022-02-22 13:12:19 +00003# Modifications Copyright (C) 2021-2022 Nordix Foundation.
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00004#
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
mayankg2703ced85142018-03-20 05:42:53 +000017#################################################################
18# Global configuration defaults.
19#################################################################
20global:
jhhd4258672020-08-09 12:08:08 -050021 aafEnabled: true
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +010022 mariadb:
23 # '&mariadbConfig' means we "store" the values for later use in the file
24 # with '*mariadbConfig' pointer.
25 config: &mariadbConfig
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +010026 mysqlDatabase: policyadmin
27 service: &mariadbService
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010028 name: &policy-mariadb policy-mariadb
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +010029 internalPort: 3306
Rashmi Pujarec452b52022-04-21 12:29:14 -040030 prometheusEnabled: false
waynedunican368aced2022-02-15 08:27:57 +000031 postgres:
32 localCluster: false
33 service:
34 name: pgset
35 name2: tcp-pgset-primary
36 name3: tcp-pgset-replica
37 container:
38 name: postgres
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +010039 kafkaBootstrap: strimzi-kafka-bootstrap
40 policyKafkaUser: policy-kafka-user
mayankg2703ced85142018-03-20 05:42:53 +000041
42#################################################################
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020043# Secrets metaconfig
44#################################################################
45secrets:
46 - uid: db-root-password
47 name: &dbRootPassSecretName '{{ include "common.release" . }}-policy-db-root-password'
48 type: password
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010049 externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "rootUser" "externalSecret")) .) (hasSuffix "policy-db-root-password" (index .Values "mariadb-galera" "rootUser" "externalSecret"))}}'
50 password: '{{ (index .Values "mariadb-galera" "rootUser" "password") }}'
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020051 policy: generate
52 - uid: db-secret
53 name: &dbSecretName '{{ include "common.release" . }}-policy-db-secret'
54 type: basicAuth
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010055 externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "db" "externalSecret")) .) (hasSuffix "policy-db-secret" (index .Values "mariadb-galera" "db" "externalSecret"))}}'
56 login: '{{ index .Values "mariadb-galera" "db" "user" }}'
57 password: '{{ index .Values "mariadb-galera" "db" "password" }}'
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020058 passwordPolicy: generate
saul.gill7124a4b2021-09-09 12:02:49 +010059 - uid: policy-app-user-creds
60 name: &policyAppCredsSecret '{{ include "common.release" . }}-policy-app-user-creds'
61 type: basicAuth
62 externalSecret: '{{ tpl (default "" .Values.config.policyAppUserExternalSecret) . }}'
63 login: '{{ .Values.config.policyAppUserName }}'
64 password: '{{ .Values.config.policyAppUserPassword }}'
65 passwordPolicy: generate
rameshiyer27ff176652021-09-21 15:19:05 +010066 - uid: policy-pap-user-creds
67 name: &policyPapCredsSecret '{{ include "common.release" . }}-policy-pap-user-creds'
68 type: basicAuth
69 externalSecret: '{{ tpl (default "" .Values.restServer.policyPapUserExternalSecret) . }}'
70 login: '{{ .Values.restServer.policyPapUserName }}'
71 password: '{{ .Values.restServer.policyPapUserPassword }}'
72 passwordPolicy: required
73 - uid: policy-api-user-creds
74 name: &policyApiCredsSecret '{{ include "common.release" . }}-policy-api-user-creds'
75 type: basicAuth
76 externalSecret: '{{ tpl (default "" .Values.restServer.policyApiUserExternalSecret) . }}'
77 login: '{{ .Values.restServer.policyApiUserName }}'
78 password: '{{ .Values.restServer.policyApiUserPassword }}'
79 passwordPolicy: required
waynedunican368aced2022-02-15 08:27:57 +000080 - uid: pg-root-pass
81 name: &pgRootPassSecretName '{{ include "common.release" . }}-policy-pg-root-pass'
82 type: password
83 externalSecret: '{{ ternary "" (tpl (default "" .Values.postgres.config.pgRootPasswordExternalSecret) .) (hasSuffix "policy-pg-root-pass" .Values.postgres.config.pgRootPasswordExternalSecret) }}'
84 password: '{{ .Values.postgres.config.pgRootpassword }}'
85 policy: generate
86 - uid: pg-user-creds
87 name: &pgUserCredsSecretName '{{ include "common.release" . }}-policy-pg-user-creds'
88 type: basicAuth
89 externalSecret: '{{ ternary "" (tpl (default "" .Values.postgres.config.pgUserExternalSecret) .) (hasSuffix "policy-pg-user-creds" .Values.postgres.config.pgUserExternalSecret) }}'
90 login: '{{ .Values.postgres.config.pgUserName }}'
91 password: '{{ .Values.postgres.config.pgUserPassword }}'
92 passwordPolicy: generate
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020093
jhhd4258672020-08-09 12:08:08 -050094db: &dbSecretsHook
95 credsExternalSecret: *dbSecretName
96
97policy-api:
98 enabled: true
99 db: *dbSecretsHook
rameshiyer27ff176652021-09-21 15:19:05 +0100100 restServer:
101 apiUserExternalSecret: *policyApiCredsSecret
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100102 config:
103 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
jhhd4258672020-08-09 12:08:08 -0500104policy-pap:
105 enabled: true
106 db: *dbSecretsHook
rameshiyer27ff176652021-09-21 15:19:05 +0100107 restServer:
108 papUserExternalSecret: *policyPapCredsSecret
109 apiUserExternalSecret: *policyApiCredsSecret
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100110 config:
111 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
jhhd4258672020-08-09 12:08:08 -0500112policy-xacml-pdp:
113 enabled: true
114 db: *dbSecretsHook
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100115 config:
116 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
jhhd4258672020-08-09 12:08:08 -0500117policy-apex-pdp:
118 enabled: true
119 db: *dbSecretsHook
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100120 config:
121 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
jhhd4258672020-08-09 12:08:08 -0500122policy-drools-pdp:
123 enabled: true
124 db: *dbSecretsHook
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100125 config:
126 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
jhhd4258672020-08-09 12:08:08 -0500127policy-distribution:
128 enabled: true
129 db: *dbSecretsHook
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100130 config:
131 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
sebdet5c449882021-01-13 11:35:56 +0100132policy-clamp-be:
133 enabled: true
134 db: *dbSecretsHook
saul.gill7124a4b2021-09-09 12:02:49 +0100135 config:
136 appUserExternalSecret: *policyAppCredsSecret
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100137 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000138policy-clamp-ac-k8s-ppnt:
rameshiyer2701b8cc02021-09-21 15:07:50 +0100139 enabled: true
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100140 config:
141 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000142policy-clamp-ac-pf-ppnt:
rameshiyer27ff176652021-09-21 15:19:05 +0100143 enabled: true
144 restServer:
145 apiUserExternalSecret: *policyApiCredsSecret
146 papUserExternalSecret: *policyPapCredsSecret
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100147 config:
148 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000149policy-clamp-ac-http-ppnt:
rameshiyer273c3402d2021-09-21 15:14:39 +0100150 enabled: true
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100151 config:
152 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
jhhd4258672020-08-09 12:08:08 -0500153policy-nexus:
jhhbf8d8a92020-09-10 14:01:49 -0500154 enabled: false
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100155 config:
156 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000157policy-clamp-runtime-acm:
saul.gill7124a4b2021-09-09 12:02:49 +0100158 enabled: true
159 db: *dbSecretsHook
160 config:
161 appUserExternalSecret: *policyAppCredsSecret
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100162 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
ktimoneyb3aef7b2021-09-13 08:27:58 +0100163policy-gui:
164 enabled: true
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100165 config:
166 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}'
jhhd4258672020-08-09 12:08:08 -0500167
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +0200168#################################################################
jhhd4258672020-08-09 12:08:08 -0500169# DB configuration defaults.
mayankg2703ced85142018-03-20 05:42:53 +0000170#################################################################
jhhd4258672020-08-09 12:08:08 -0500171
mayankg2703ced85142018-03-20 05:42:53 +0000172repository: nexus3.onap.org:10001
kerenj3b697f62017-08-23 11:21:21 +0000173pullPolicy: Always
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500174
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +0100175mariadb:
176 image: mariadb:10.5.8
177
jhhd74fe9f2021-04-15 11:04:39 -0500178dbmigrator:
jhh2a5d1bb2022-05-04 13:44:26 -0500179 image: onap/policy-db-migrator:2.4.3
jhhd74fe9f2021-04-15 11:04:39 -0500180 schema: policyadmin
181 policy_home: "/opt/app/policy"
182
mayankg2703ced85142018-03-20 05:42:53 +0000183subChartsOnly:
184 enabled: true
BorislavG5f3b6192018-03-25 18:12:38 +0300185
mayankg2703ced85142018-03-20 05:42:53 +0000186# flag to enable debugging - application support required
187debugEnabled: false
188
mayankg2703ced85142018-03-20 05:42:53 +0000189# default number of instances
190replicaCount: 1
191
192nodeSelector: {}
193
194affinity: {}
195
196# probe configuration parameters
197liveness:
198 initialDelaySeconds: 10
199 periodSeconds: 10
200 # necessary to disable liveness probe when setting breakpoints
201 # in debugger so K8s doesn't restart unresponsive container
202 enabled: true
203
204readiness:
205 initialDelaySeconds: 10
206 periodSeconds: 10
207
saul.gill7124a4b2021-09-09 12:02:49 +0100208
209config:
210 policyAppUserName: runtimeUser
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +0100211 useStrimziKafka: true
212 acRuntimeTopic:
213 name: policy-acruntime-participant
214 partitions: 10
215 retentionMs: 7200000
216 segmentBytes: 1073741824
217 consumer:
218 groupId: policy-group
219 policyPdpPapTopic:
220 name: policy-pdp-pap
221 partitions: 10
222 retentionMs: 7200000
223 segmentBytes: 1073741824
224 consumer:
225 groupId: policy-group
226 policyHeartbeatTopic:
227 name: policy-heartbeat
228 partitions: 10
229 retentionMs: 7200000
230 segmentBytes: 1073741824
231 consumer:
232 groupId: policy-group
233 policyNotificationTopic:
234 name: policy-notification
235 partitions: 10
236 retentionMs: 7200000
237 segmentBytes: 1073741824
238 consumer:
239 groupId: policy-group
Sirisha_Manchikantib402a592022-09-09 12:01:20 +0100240 someConfig: blah
saul.gill7124a4b2021-09-09 12:02:49 +0100241
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +0100242mariadb-galera:
243 # mariadb-galera.config and global.mariadb.config must be equals
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100244 db:
245 user: policy_user
246 # password:
247 externalSecret: *dbSecretName
248 name: &mysqlDbName policyadmin
249 rootUser:
250 externalSecret: *dbRootPassSecretName
251 nameOverride: *policy-mariadb
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +0100252 # mariadb-galera.service and global.mariadb.service must be equals
253 service: *mariadbService
254 replicaCount: 1
255 persistence:
256 enabled: true
257 mountSubPath: policy/maria/data
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100258 serviceAccount:
259 nameOverride: *policy-mariadb
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +0100260
waynedunican368aced2022-02-15 08:27:57 +0000261postgresImage: library/postgres:latest
262# application configuration override for postgres
263postgres:
264 nameOverride: &postgresName policy-postgres
265 service:
266 name: *postgresName
267 name2: policy-pg-primary
268 name3: policy-pg-replica
269 container:
270 name:
271 primary: policy-pg-primary
272 replica: policy-pg-replica
273 persistence:
274 mountSubPath: policy/postgres/data
275 mountInitPath: policy
276 config:
277 pgUserName: policy_user
278 pgDatabase: policyadmin
279 pgUserExternalSecret: *pgUserCredsSecretName
280 pgRootPasswordExternalSecret: *pgRootPassSecretName
281
282readinessCheck:
283 wait_for:
284 - '{{ ternary .Values.postgres.service.name "postgres" .Values.global.postgres.localCluster }}'
285
rameshiyer27ff176652021-09-21 15:19:05 +0100286restServer:
adheli.tavaresf3656cd2021-11-10 14:54:32 +0000287 policyPapUserName: policyadmin
rameshiyer27ff176652021-09-21 15:19:05 +0100288 policyPapUserPassword: zb!XztG34
adheli.tavaresf3656cd2021-11-10 14:54:32 +0000289 policyApiUserName: policyadmin
rameshiyer27ff176652021-09-21 15:19:05 +0100290 policyApiUserPassword: zb!XztG34
291
jhhbf8d8a92020-09-10 14:01:49 -0500292# Resource Limit flavor -By Default using small
293# Segregation for Different environment (small, large, or unlimited)
294flavor: small
295resources:
296 small:
297 limits:
298 cpu: 1
299 memory: 4Gi
300 requests:
301 cpu: 100m
302 memory: 1Gi
303 large:
304 limits:
305 cpu: 2
306 memory: 8Gi
307 requests:
308 cpu: 200m
309 memory: 2Gi
310 unlimited: {}
311
farida azmyc1178372021-04-11 12:55:33 +0200312#Pods Service Account
313serviceAccount:
314 nameOverride: policy
315 roles:
316 - read