blob: 714f9d928c628caa0fe2d810392b18d130929192 [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
vaibhav_16dece04b2fe2018-03-22 09:07:12 +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
mayankg2703ced85142018-03-20 05:42:53 +000016#################################################################
17# Global configuration defaults.
18#################################################################
19global:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
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
28 name: policy-mariadb
29 portName: mysql-policy
30 internalPort: 3306
mayankg2703ced85142018-03-20 05:42:53 +000031
32#################################################################
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020033# Secrets metaconfig
34#################################################################
35secrets:
36 - uid: db-root-password
37 name: &dbRootPassSecretName '{{ include "common.release" . }}-policy-db-root-password'
38 type: password
39 externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "config" "mariadbRootPasswordExternalSecret")) .) (hasSuffix "policy-db-root-password" (index .Values "mariadb-galera" "config" "mariadbRootPasswordExternalSecret"))}}'
40 password: '{{ (index .Values "mariadb-galera" "config" "mariadbRootPassword") }}'
41 policy: generate
42 - uid: db-secret
43 name: &dbSecretName '{{ include "common.release" . }}-policy-db-secret'
44 type: basicAuth
45 externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "config" "userCredentialsExternalSecret")) .) (hasSuffix "policy-db-secret" (index .Values "mariadb-galera" "config" "userCredentialsExternalSecret"))}}'
46 login: '{{ index .Values "mariadb-galera" "config" "userName" }}'
47 password: '{{ index .Values "mariadb-galera" "config" "userPassword" }}'
48 passwordPolicy: generate
49
jhhd4258672020-08-09 12:08:08 -050050db: &dbSecretsHook
51 credsExternalSecret: *dbSecretName
52
53policy-api:
54 enabled: true
55 db: *dbSecretsHook
56policy-pap:
57 enabled: true
58 db: *dbSecretsHook
59policy-xacml-pdp:
60 enabled: true
61 db: *dbSecretsHook
62policy-apex-pdp:
63 enabled: true
64 db: *dbSecretsHook
65policy-drools-pdp:
66 enabled: true
67 db: *dbSecretsHook
68policy-distribution:
69 enabled: true
70 db: *dbSecretsHook
71policy-nexus:
jhhbf8d8a92020-09-10 14:01:49 -050072 enabled: false
jhhd4258672020-08-09 12:08:08 -050073
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020074#################################################################
jhhd4258672020-08-09 12:08:08 -050075# DB configuration defaults.
mayankg2703ced85142018-03-20 05:42:53 +000076#################################################################
jhhd4258672020-08-09 12:08:08 -050077
mayankg2703ced85142018-03-20 05:42:53 +000078repository: nexus3.onap.org:10001
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +010079mariadb_image: library/mariadb:10
kerenj3b697f62017-08-23 11:21:21 +000080pullPolicy: Always
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050081
mayankg2703ced85142018-03-20 05:42:53 +000082subChartsOnly:
83 enabled: true
BorislavG5f3b6192018-03-25 18:12:38 +030084
mayankg2703ced85142018-03-20 05:42:53 +000085# flag to enable debugging - application support required
86debugEnabled: false
87
mayankg2703ced85142018-03-20 05:42:53 +000088# default number of instances
89replicaCount: 1
90
91nodeSelector: {}
92
93affinity: {}
94
95# probe configuration parameters
96liveness:
97 initialDelaySeconds: 10
98 periodSeconds: 10
99 # necessary to disable liveness probe when setting breakpoints
100 # in debugger so K8s doesn't restart unresponsive container
101 enabled: true
102
103readiness:
104 initialDelaySeconds: 10
105 periodSeconds: 10
106
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +0100107mariadb-galera:
108 # mariadb-galera.config and global.mariadb.config must be equals
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +0200109 config:
110 <<: *mariadbConfig
111 userName: policy_user
112 mariadbRootPasswordExternalSecret: *dbRootPassSecretName
113 userCredentialsExternalSecret: *dbSecretName
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +0100114 nameOverride: policy-mariadb
115 # mariadb-galera.service and global.mariadb.service must be equals
116 service: *mariadbService
117 replicaCount: 1
118 persistence:
119 enabled: true
120 mountSubPath: policy/maria/data
jhh63614942020-01-03 13:51:59 -0600121 externalConfig: |-
122 [mysqld]
123 lower_case_table_names = 1
Sylvain Desbureaux4898dc02019-11-14 13:35:13 +0100124
jhhbf8d8a92020-09-10 14:01:49 -0500125# Resource Limit flavor -By Default using small
126# Segregation for Different environment (small, large, or unlimited)
127flavor: small
128resources:
129 small:
130 limits:
131 cpu: 1
132 memory: 4Gi
133 requests:
134 cpu: 100m
135 memory: 1Gi
136 large:
137 limits:
138 cpu: 2
139 memory: 8Gi
140 requests:
141 cpu: 200m
142 memory: 2Gi
143 unlimited: {}
144