vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 2 | # Modifications Copyright © 2018-2020 AT&T Intellectual Property |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 3 | # Modifications Copyright (C) 2021-2022 Nordix Foundation. |
vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 4 | # |
| 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 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 17 | ################################################################# |
| 18 | # Global configuration defaults. |
| 19 | ################################################################# |
| 20 | global: |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 21 | aafEnabled: true |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 22 | mariadb: |
| 23 | # '&mariadbConfig' means we "store" the values for later use in the file |
| 24 | # with '*mariadbConfig' pointer. |
| 25 | config: &mariadbConfig |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 26 | mysqlDatabase: policyadmin |
| 27 | service: &mariadbService |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 28 | name: &policy-mariadb policy-mariadb |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 29 | internalPort: 3306 |
Rashmi Pujar | ec452b5 | 2022-04-21 12:29:14 -0400 | [diff] [blame] | 30 | prometheusEnabled: false |
waynedunican | 368aced | 2022-02-15 08:27:57 +0000 | [diff] [blame] | 31 | 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_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 39 | kafkaBootstrap: strimzi-kafka-bootstrap |
| 40 | policyKafkaUser: policy-kafka-user |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 41 | |
| 42 | ################################################################# |
Krzysztof Opasiak | 98a79cc | 2020-04-01 22:33:58 +0200 | [diff] [blame] | 43 | # Secrets metaconfig |
| 44 | ################################################################# |
| 45 | secrets: |
| 46 | - uid: db-root-password |
| 47 | name: &dbRootPassSecretName '{{ include "common.release" . }}-policy-db-root-password' |
| 48 | type: password |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 49 | 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 Opasiak | 98a79cc | 2020-04-01 22:33:58 +0200 | [diff] [blame] | 51 | policy: generate |
| 52 | - uid: db-secret |
| 53 | name: &dbSecretName '{{ include "common.release" . }}-policy-db-secret' |
| 54 | type: basicAuth |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 55 | 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 Opasiak | 98a79cc | 2020-04-01 22:33:58 +0200 | [diff] [blame] | 58 | passwordPolicy: generate |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 59 | - 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 |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 66 | - 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 |
waynedunican | 368aced | 2022-02-15 08:27:57 +0000 | [diff] [blame] | 80 | - 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 Opasiak | 98a79cc | 2020-04-01 22:33:58 +0200 | [diff] [blame] | 93 | |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 94 | db: &dbSecretsHook |
| 95 | credsExternalSecret: *dbSecretName |
| 96 | |
| 97 | policy-api: |
| 98 | enabled: true |
| 99 | db: *dbSecretsHook |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 100 | restServer: |
| 101 | apiUserExternalSecret: *policyApiCredsSecret |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 102 | config: |
| 103 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 104 | policy-pap: |
| 105 | enabled: true |
| 106 | db: *dbSecretsHook |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 107 | restServer: |
| 108 | papUserExternalSecret: *policyPapCredsSecret |
| 109 | apiUserExternalSecret: *policyApiCredsSecret |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 110 | config: |
| 111 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 112 | policy-xacml-pdp: |
| 113 | enabled: true |
| 114 | db: *dbSecretsHook |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 115 | config: |
| 116 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 117 | policy-apex-pdp: |
| 118 | enabled: true |
| 119 | db: *dbSecretsHook |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 120 | config: |
| 121 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 122 | policy-drools-pdp: |
| 123 | enabled: true |
| 124 | db: *dbSecretsHook |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 125 | config: |
| 126 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 127 | policy-distribution: |
| 128 | enabled: true |
| 129 | db: *dbSecretsHook |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 130 | config: |
| 131 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 132 | policy-clamp-ac-k8s-ppnt: |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 133 | enabled: true |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 134 | config: |
| 135 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 136 | policy-clamp-ac-pf-ppnt: |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 137 | enabled: true |
| 138 | restServer: |
| 139 | apiUserExternalSecret: *policyApiCredsSecret |
| 140 | papUserExternalSecret: *policyPapCredsSecret |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 141 | config: |
| 142 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 143 | policy-clamp-ac-http-ppnt: |
rameshiyer27 | 3c3402d | 2021-09-21 15:14:39 +0100 | [diff] [blame] | 144 | enabled: true |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 145 | config: |
| 146 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 147 | policy-nexus: |
jhh | bf8d8a9 | 2020-09-10 14:01:49 -0500 | [diff] [blame] | 148 | enabled: false |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 149 | config: |
| 150 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 151 | policy-clamp-runtime-acm: |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 152 | enabled: true |
| 153 | db: *dbSecretsHook |
| 154 | config: |
| 155 | appUserExternalSecret: *policyAppCredsSecret |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 156 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
ktimoney | b3aef7b | 2021-09-13 08:27:58 +0100 | [diff] [blame] | 157 | policy-gui: |
amatthews | 736bf37 | 2021-12-14 16:04:15 +0000 | [diff] [blame] | 158 | enabled: false |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 159 | config: |
| 160 | jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.policyKafkaUser }}' |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 161 | |
Krzysztof Opasiak | 98a79cc | 2020-04-01 22:33:58 +0200 | [diff] [blame] | 162 | ################################################################# |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 163 | # DB configuration defaults. |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 164 | ################################################################# |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 165 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 166 | repository: nexus3.onap.org:10001 |
kerenj | 3b697f6 | 2017-08-23 11:21:21 +0000 | [diff] [blame] | 167 | pullPolicy: Always |
Alexis de Talhouët | df4db0b | 2017-12-11 08:36:25 -0500 | [diff] [blame] | 168 | |
Sylvain Desbureaux | 7c8c686 | 2020-11-19 18:02:37 +0100 | [diff] [blame] | 169 | mariadb: |
| 170 | image: mariadb:10.5.8 |
| 171 | |
jhh | d74fe9f | 2021-04-15 11:04:39 -0500 | [diff] [blame] | 172 | dbmigrator: |
jhh | eec3da9 | 2022-09-26 11:36:11 -0500 | [diff] [blame] | 173 | image: onap/policy-db-migrator:2.5.0 |
jhh | d74fe9f | 2021-04-15 11:04:39 -0500 | [diff] [blame] | 174 | schema: policyadmin |
| 175 | policy_home: "/opt/app/policy" |
| 176 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 177 | subChartsOnly: |
| 178 | enabled: true |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 179 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 180 | # flag to enable debugging - application support required |
| 181 | debugEnabled: false |
| 182 | |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 183 | # default number of instances |
| 184 | replicaCount: 1 |
| 185 | |
| 186 | nodeSelector: {} |
| 187 | |
| 188 | affinity: {} |
| 189 | |
| 190 | # probe configuration parameters |
| 191 | liveness: |
| 192 | initialDelaySeconds: 10 |
| 193 | periodSeconds: 10 |
| 194 | # necessary to disable liveness probe when setting breakpoints |
| 195 | # in debugger so K8s doesn't restart unresponsive container |
| 196 | enabled: true |
| 197 | |
| 198 | readiness: |
| 199 | initialDelaySeconds: 10 |
| 200 | periodSeconds: 10 |
| 201 | |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 202 | |
| 203 | config: |
| 204 | policyAppUserName: runtimeUser |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 205 | useStrimziKafka: true |
| 206 | acRuntimeTopic: |
| 207 | name: policy-acruntime-participant |
| 208 | partitions: 10 |
| 209 | retentionMs: 7200000 |
| 210 | segmentBytes: 1073741824 |
| 211 | consumer: |
| 212 | groupId: policy-group |
| 213 | policyPdpPapTopic: |
| 214 | name: policy-pdp-pap |
| 215 | partitions: 10 |
| 216 | retentionMs: 7200000 |
| 217 | segmentBytes: 1073741824 |
| 218 | consumer: |
| 219 | groupId: policy-group |
| 220 | policyHeartbeatTopic: |
| 221 | name: policy-heartbeat |
| 222 | partitions: 10 |
| 223 | retentionMs: 7200000 |
| 224 | segmentBytes: 1073741824 |
| 225 | consumer: |
| 226 | groupId: policy-group |
| 227 | policyNotificationTopic: |
| 228 | name: policy-notification |
| 229 | partitions: 10 |
| 230 | retentionMs: 7200000 |
| 231 | segmentBytes: 1073741824 |
| 232 | consumer: |
| 233 | groupId: policy-group |
Sirisha_Manchikanti | b402a59 | 2022-09-09 12:01:20 +0100 | [diff] [blame] | 234 | someConfig: blah |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 235 | |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 236 | mariadb-galera: |
| 237 | # mariadb-galera.config and global.mariadb.config must be equals |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 238 | db: |
| 239 | user: policy_user |
| 240 | # password: |
| 241 | externalSecret: *dbSecretName |
| 242 | name: &mysqlDbName policyadmin |
| 243 | rootUser: |
| 244 | externalSecret: *dbRootPassSecretName |
| 245 | nameOverride: *policy-mariadb |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 246 | # mariadb-galera.service and global.mariadb.service must be equals |
| 247 | service: *mariadbService |
| 248 | replicaCount: 1 |
| 249 | persistence: |
| 250 | enabled: true |
| 251 | mountSubPath: policy/maria/data |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 252 | serviceAccount: |
| 253 | nameOverride: *policy-mariadb |
Sylvain Desbureaux | 4898dc0 | 2019-11-14 13:35:13 +0100 | [diff] [blame] | 254 | |
waynedunican | 368aced | 2022-02-15 08:27:57 +0000 | [diff] [blame] | 255 | postgresImage: library/postgres:latest |
| 256 | # application configuration override for postgres |
| 257 | postgres: |
| 258 | nameOverride: &postgresName policy-postgres |
| 259 | service: |
| 260 | name: *postgresName |
| 261 | name2: policy-pg-primary |
| 262 | name3: policy-pg-replica |
| 263 | container: |
| 264 | name: |
| 265 | primary: policy-pg-primary |
| 266 | replica: policy-pg-replica |
| 267 | persistence: |
| 268 | mountSubPath: policy/postgres/data |
| 269 | mountInitPath: policy |
| 270 | config: |
| 271 | pgUserName: policy_user |
| 272 | pgDatabase: policyadmin |
| 273 | pgUserExternalSecret: *pgUserCredsSecretName |
| 274 | pgRootPasswordExternalSecret: *pgRootPassSecretName |
| 275 | |
| 276 | readinessCheck: |
| 277 | wait_for: |
| 278 | - '{{ ternary .Values.postgres.service.name "postgres" .Values.global.postgres.localCluster }}' |
| 279 | |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 280 | restServer: |
adheli.tavares | f3656cd | 2021-11-10 14:54:32 +0000 | [diff] [blame] | 281 | policyPapUserName: policyadmin |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 282 | policyPapUserPassword: zb!XztG34 |
adheli.tavares | f3656cd | 2021-11-10 14:54:32 +0000 | [diff] [blame] | 283 | policyApiUserName: policyadmin |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 284 | policyApiUserPassword: zb!XztG34 |
| 285 | |
jhh | bf8d8a9 | 2020-09-10 14:01:49 -0500 | [diff] [blame] | 286 | # Resource Limit flavor -By Default using small |
| 287 | # Segregation for Different environment (small, large, or unlimited) |
| 288 | flavor: small |
| 289 | resources: |
| 290 | small: |
| 291 | limits: |
| 292 | cpu: 1 |
| 293 | memory: 4Gi |
| 294 | requests: |
| 295 | cpu: 100m |
| 296 | memory: 1Gi |
| 297 | large: |
| 298 | limits: |
| 299 | cpu: 2 |
| 300 | memory: 8Gi |
| 301 | requests: |
| 302 | cpu: 200m |
| 303 | memory: 2Gi |
| 304 | unlimited: {} |
| 305 | |
farida azmy | c117837 | 2021-04-11 12:55:33 +0200 | [diff] [blame] | 306 | #Pods Service Account |
| 307 | serviceAccount: |
| 308 | nameOverride: policy |
| 309 | roles: |
| 310 | - read |