Merge "[POLICY] Add helm chart for policy participant"
[oom.git] / kubernetes / policy / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018-2020 AT&T Intellectual Property
3 # Modifications Copyright (C) 2021 Nordix Foundation.
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
17 #################################################################
18 # Global configuration defaults.
19 #################################################################
20 global:
21   aafEnabled: true
22   mariadb:
23     # '&mariadbConfig' means we "store" the values for  later use in the file
24     # with '*mariadbConfig' pointer.
25     config: &mariadbConfig
26       mysqlDatabase: policyadmin
27     service: &mariadbService
28       name: &policy-mariadb policy-mariadb
29       internalPort: 3306
30
31 #################################################################
32 # Secrets metaconfig
33 #################################################################
34 secrets:
35   - uid: db-root-password
36     name: &dbRootPassSecretName '{{ include "common.release" . }}-policy-db-root-password'
37     type: password
38     externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "rootUser" "externalSecret")) .) (hasSuffix "policy-db-root-password" (index .Values "mariadb-galera" "rootUser" "externalSecret"))}}'
39     password: '{{ (index .Values "mariadb-galera" "rootUser" "password") }}'
40     policy: generate
41   - uid: db-secret
42     name: &dbSecretName '{{ include "common.release" . }}-policy-db-secret'
43     type: basicAuth
44     externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "db" "externalSecret")) .) (hasSuffix "policy-db-secret" (index .Values "mariadb-galera" "db" "externalSecret"))}}'
45     login: '{{ index .Values "mariadb-galera" "db" "user" }}'
46     password: '{{ index .Values "mariadb-galera" "db" "password" }}'
47     passwordPolicy: generate
48   - uid: policy-app-user-creds
49     name: &policyAppCredsSecret '{{ include "common.release" . }}-policy-app-user-creds'
50     type: basicAuth
51     externalSecret: '{{ tpl (default "" .Values.config.policyAppUserExternalSecret) . }}'
52     login: '{{ .Values.config.policyAppUserName }}'
53     password: '{{ .Values.config.policyAppUserPassword }}'
54     passwordPolicy: generate
55   - uid: policy-pap-user-creds
56     name: &policyPapCredsSecret '{{ include "common.release" . }}-policy-pap-user-creds'
57     type: basicAuth
58     externalSecret: '{{ tpl (default "" .Values.restServer.policyPapUserExternalSecret) . }}'
59     login: '{{ .Values.restServer.policyPapUserName }}'
60     password: '{{ .Values.restServer.policyPapUserPassword }}'
61     passwordPolicy: required
62   - uid: policy-api-user-creds
63     name: &policyApiCredsSecret '{{ include "common.release" . }}-policy-api-user-creds'
64     type: basicAuth
65     externalSecret: '{{ tpl (default "" .Values.restServer.policyApiUserExternalSecret) . }}'
66     login: '{{ .Values.restServer.policyApiUserName }}'
67     password: '{{ .Values.restServer.policyApiUserPassword }}'
68     passwordPolicy: required
69
70 db: &dbSecretsHook
71   credsExternalSecret: *dbSecretName
72
73 policy-api:
74   enabled: true
75   db: *dbSecretsHook
76   restServer:
77     apiUserExternalSecret: *policyApiCredsSecret
78 policy-pap:
79   enabled: true
80   db: *dbSecretsHook
81   restServer:
82     papUserExternalSecret: *policyPapCredsSecret
83     apiUserExternalSecret: *policyApiCredsSecret
84 policy-xacml-pdp:
85   enabled: true
86   db: *dbSecretsHook
87 policy-apex-pdp:
88   enabled: true
89   db: *dbSecretsHook
90 policy-drools-pdp:
91   enabled: true
92   db: *dbSecretsHook
93 policy-distribution:
94   enabled: true
95   db: *dbSecretsHook
96 policy-clamp-be:
97   enabled: true
98   db: *dbSecretsHook
99   config:
100     appUserExternalSecret: *policyAppCredsSecret
101 policy-clamp-fe:
102   enabled: true
103 policy-clamp-cl-k8s-ppnt:
104   enabled: true
105 policy-clamp-cl-pf-ppnt:
106   enabled: true
107   restServer:
108     apiUserExternalSecret: *policyApiCredsSecret
109     papUserExternalSecret: *policyPapCredsSecret
110 policy-nexus:
111   enabled: false
112 policy-clamp-cl-runtime:
113   enabled: true
114   db: *dbSecretsHook
115   config:
116     appUserExternalSecret: *policyAppCredsSecret
117 policy-gui:
118   enabled: true
119
120 #################################################################
121 # DB configuration defaults.
122 #################################################################
123
124 repository: nexus3.onap.org:10001
125 pullPolicy: Always
126
127 mariadb:
128   image: mariadb:10.5.8
129
130 dbmigrator:
131   image: onap/policy-db-migrator:2.3.1
132   schema: policyadmin
133   policy_home: "/opt/app/policy"
134
135 subChartsOnly:
136   enabled: true
137
138 # flag to enable debugging - application support required
139 debugEnabled: false
140
141 # default number of instances
142 replicaCount: 1
143
144 nodeSelector: {}
145
146 affinity: {}
147
148 # probe configuration parameters
149 liveness:
150   initialDelaySeconds: 10
151   periodSeconds: 10
152   # necessary to disable liveness probe when setting breakpoints
153   # in debugger so K8s doesn't restart unresponsive container
154   enabled: true
155
156 readiness:
157   initialDelaySeconds: 10
158   periodSeconds: 10
159
160
161 config:
162   policyAppUserName: runtimeUser
163
164 mariadb-galera:
165   # mariadb-galera.config and global.mariadb.config must be equals
166   db:
167     user: policy_user
168     # password:
169     externalSecret: *dbSecretName
170     name: &mysqlDbName policyadmin
171   rootUser:
172     externalSecret: *dbRootPassSecretName
173   nameOverride: *policy-mariadb
174   # mariadb-galera.service and global.mariadb.service must be equals
175   service: *mariadbService
176   replicaCount: 1
177   persistence:
178     enabled: true
179     mountSubPath: policy/maria/data
180   serviceAccount:
181     nameOverride: *policy-mariadb
182
183 restServer:
184   policyPapUserName: healthcheck
185   policyPapUserPassword: zb!XztG34
186   policyApiUserName: healthcheck
187   policyApiUserPassword: zb!XztG34
188
189 # Resource Limit flavor -By Default using small
190 # Segregation for Different environment (small, large, or unlimited)
191 flavor: small
192 resources:
193   small:
194     limits:
195       cpu: 1
196       memory: 4Gi
197     requests:
198       cpu: 100m
199       memory: 1Gi
200   large:
201     limits:
202       cpu: 2
203       memory: 8Gi
204     requests:
205       cpu: 200m
206       memory: 2Gi
207   unlimited: {}
208
209 #Pods Service Account
210 serviceAccount:
211   nameOverride: policy
212   roles:
213     - read