[COMMON][MARIADB] Upgrade Mariadb DB galera version
[oom.git] / kubernetes / onap / values.yaml
1 # Copyright © 2019 Amdocs, Bell Canada
2 # Copyright (c) 2020 Nordix Foundation, Modifications
3 # Modifications Copyright © 2020 Nokia
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 overrides.
19 #
20 # These overrides will affect all helm charts (ie. applications)
21 # that are listed below and are 'enabled'.
22 #################################################################
23 global:
24   # Change to an unused port prefix range to prevent port conflicts
25   # with other instances running within the same k8s cluster
26   nodePortPrefix: 302
27   nodePortPrefixExt: 304
28
29
30   # Install test components
31   # test components are out of the scope of ONAP but allow to have a entire
32   # environment to test the different features of ONAP
33   # Current tests environments provided:
34   #  - netbox (needed for CDS IPAM)
35   #  - AWX (needed for XXX)
36   #  - EJBCA Server (needed for CMPv2 tests)
37   # Today, "contrib" chart that hosting these components must also be enabled
38   # in order to make it work. So `contrib.enabled` must have the same value than
39   # addTestingComponents
40   addTestingComponents: &testing false
41
42   # ONAP Repository
43   # Four different repositories are used
44   # You can change individually these repositories to ones that will serve the
45   # right images. If credentials are needed for one of them, see below.
46   repository: nexus3.onap.org:10001
47   dockerHubRepository: &dockerHubRepository docker.io
48   elasticRepository: &elasticRepository docker.elastic.co
49   googleK8sRepository: k8s.gcr.io
50
51
52   #/!\ DEPRECATED /!\
53   # Legacy repositories which will be removed at the end of migration.
54   # Please don't use
55   loggingRepository: *elasticRepository
56   busyboxRepository: *dockerHubRepository
57
58   # Default credentials
59   # they're optional. If the target repository doesn't need them, comment them
60   repositoryCred:
61     user: docker
62     password: docker
63   # If you want / need authentication on the repositories, please set
64   # Don't set them if the target repo is the same than others
65   # so id you've set repository to value `my.private.repo` and same for
66   # dockerHubRepository, you'll have to configure only repository (exclusive) OR
67   # dockerHubCred.
68   # dockerHubCred:
69   #   user: myuser
70   #   password: mypassord
71   # elasticCred:
72   #   user: myuser
73   #   password: mypassord
74   # googleK8sCred:
75   #   user: myuser
76   #   password: mypassord
77
78
79   # common global images
80   # Busybox for simple shell manipulation
81   busyboxImage: busybox:1.32
82
83   # curl image
84   curlImage: curlimages/curl:7.69.1
85
86   # env substitution image
87   envsubstImage: dibi/envsubst:1
88
89   # generate htpasswd files image
90   # there's only latest image for htpasswd
91   htpasswdImage: xmartlabs/htpasswd:latest
92
93   # kubenretes client image
94   kubectlImage: bitnami/kubectl:1.19
95
96   # logging agent
97   loggingImage: beats/filebeat:5.5.0
98
99   # mariadb client image
100   mariadbImage: bitnami/mariadb:10.5.8
101
102   # nginx server image
103   nginxImage: bitnami/nginx:1.18-debian-10
104
105   # postgreSQL client and server image
106   postgresImage: crunchydata/crunchy-postgres:centos7-10.11-4.2.1
107
108   # readiness check image
109   readinessImage: onap/oom/readiness:3.0.1
110
111   # image pull policy
112   pullPolicy: Always
113
114   # default clusterName
115   # {{ template "common.fullname" . }}.{{ template "common.namespace" . }}.svc.{{ .Values.global.clusterName }}
116   clusterName: cluster.local
117
118   # default mount path root directory referenced
119   # by persistent volumes and log files
120   persistence:
121     mountPath: /dockerdata-nfs
122     enableDefaultStorageclass: false
123     parameters: {}
124     storageclassProvisioner: kubernetes.io/no-provisioner
125     volumeReclaimPolicy: Retain
126
127   # override default resource limit flavor for all charts
128   flavor: unlimited
129
130   # flag to enable debugging - application support required
131   debugEnabled: false
132
133   # default password complexity
134   # available options: phrase, name, pin, basic, short, medium, long, maximum security
135   # More datails: https://masterpassword.app/masterpassword-algorithm.pdf
136   passwordStrength: long
137
138   # configuration to set log level to all components (the one that are using
139   # "common.log.level" to set this)
140   # can be overrided per components by setting logConfiguration.logLevelOverride
141   # to the desired value
142   # logLevel: DEBUG
143
144   # Global ingress configuration
145   ingress:
146     enabled: false
147     virtualhost:
148       enabled: true
149       baseurl: "simpledemo.onap.org"
150
151   # Global Service Mesh configuration
152   # POC Mode, don't use it in production
153   serviceMesh:
154     enabled: false
155     tls: true
156
157   # metrics part
158   # If enabled, exporters (for prometheus) will be deployed
159   # if custom resources set to yes, CRD from prometheus operartor will be
160   # created
161   # Not all components have it enabled.
162   #
163   metrics:
164     enabled: true
165     custom_resources: false
166
167   # Disabling AAF
168   # POC Mode, only for use in development environment
169   # Keep it enabled in production
170   aafEnabled: true
171   aafAgentImage: onap/aaf/aaf_agent:2.1.20
172
173   # Enabling CMPv2
174   cmpv2Enabled: true
175   platform:
176     certServiceClient:
177       image: onap/org.onap.oom.platform.cert-service.oom-certservice-client:2.3.1
178       secret:
179         name: oom-cert-service-client-tls-secret
180         mountPath: /etc/onap/oom/certservice/certs/
181       envVariables:
182         # Certificate related
183         cmpv2Organization: "Linux-Foundation"
184         cmpv2OrganizationalUnit: "ONAP"
185         cmpv2Location: "San-Francisco"
186         cmpv2State: "California"
187         cmpv2Country: "US"
188         # Client configuration related
189         caName: "RA"
190         requestURL: "https://oom-cert-service:8443/v1/certificate/"
191         requestTimeout: "30000"
192         keystorePath: "/etc/onap/oom/certservice/certs/certServiceClient-keystore.jks"
193         outputType: "P12"
194         keystorePassword: "secret"
195         truststorePath: "/etc/onap/oom/certservice/certs/truststore.jks"
196         truststorePassword: "secret"
197
198   # Indicates offline deployment build
199   # Set to true if you are rendering helm charts for offline deployment
200   # Otherwise keep it disabled
201   offlineDeploymentBuild: false
202
203   # TLS
204   # Set to false if you want to disable TLS for NodePorts. Be aware that this
205   # will loosen your security.
206   # if set this element will force or not tls even if serviceMesh.tls is set.
207   # tlsEnabled: false
208
209   # Logging
210   # Currently, centralized logging is not in best shape so it's disabled by
211   # default
212   centralizedLoggingEnabled: &centralizedLogging false
213
214   # Example of specific for the components where you want to disable TLS only for
215   # it:
216   # if set this element will force or not tls even if global.serviceMesh.tls and
217   # global.tlsEnabled is set otherwise.
218   # robot:
219   #   tlsOverride: false
220
221   # Global storage configuration
222   #    Set to "-" for default, or with the name of the storage class
223   #    Please note that if you use AAF, CDS, SDC, Netbox or Robot, you need a
224   #    storageclass with RWX capabilities (or set specific configuration for these
225   #    components).
226   # persistence:
227   #   storageClass: "-"
228
229 # Example of specific for the components which requires RWX:
230 # aaf:
231 #   persistence:
232 #     storageClassOverride: "My_RWX_Storage_Class"
233 # contrib:
234 #   netbox:
235 #     netbox-app:
236 #       persistence:
237 #         storageClassOverride: "My_RWX_Storage_Class"
238 # cds:
239 #   cds-blueprints-processor:
240 #     persistence:
241 #       storageClassOverride: "My_RWX_Storage_Class"
242 # sdc:
243 #   sdc-onboarding-be:
244 #     persistence:
245 #       storageClassOverride: "My_RWX_Storage_Class"
246
247 #################################################################
248 # Enable/disable and configure helm charts (ie. applications)
249 # to customize the ONAP deployment.
250 #################################################################
251 aaf:
252   enabled: false
253 aai:
254   enabled: false
255 appc:
256   enabled: false
257   config:
258     openStackType: OpenStackProvider
259     openStackName: OpenStack
260     openStackKeyStoneUrl: http://localhost:8181/apidoc/explorer/index.html
261     openStackServiceTenantName: default
262     openStackDomain: default
263     openStackUserName: admin
264     openStackEncryptedPassword: admin
265 cassandra:
266   enabled: false
267 cds:
268   enabled: false
269 clamp:
270   enabled: false
271 cli:
272   enabled: false
273 consul:
274   enabled: false
275 # Today, "contrib" chart that hosting these components must also be enabled
276 # in order to make it work. So `contrib.enabled` must have the same value than
277 # addTestingComponents
278 contrib:
279   enabled: *testing
280 dcaegen2:
281   enabled: false
282 dcaemod:
283   enabled: false
284 dmaap:
285   enabled: false
286 esr:
287   enabled: false
288 # Today, "logging" chart that perform the central part of logging must also be
289 # enabled in order to make it work. So `logging.enabled` must have the same
290 # value than centralizedLoggingEnabled
291 log:
292   enabled: *centralizedLogging
293 sniro-emulator:
294   enabled: false
295 oof:
296   enabled: false
297 mariadb-galera:
298   enabled: false
299 msb:
300   enabled: false
301 multicloud:
302   enabled: false
303 nbi:
304   enabled: false
305   config:
306     # openstack configuration
307     openStackRegion: "Yolo"
308     openStackVNFTenantId: "1234"
309 policy:
310   enabled: false
311 pomba:
312   enabled: false
313 portal:
314   enabled: false
315 robot:
316   enabled: false
317   config:
318     # openStackEncryptedPasswordHere should match the encrypted string used in SO and APPC and overridden per environment
319     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
320 sdc:
321   enabled: false
322 sdnc:
323   enabled: false
324
325   replicaCount: 1
326
327   mysql:
328     replicaCount: 1
329 so:
330   enabled: false
331
332   replicaCount: 1
333
334   liveness:
335     # necessary to disable liveness probe when setting breakpoints
336     # in debugger so K8s doesn't restart unresponsive container
337     enabled: false
338
339   # so server configuration
340   config:
341     # message router configuration
342     dmaapTopic: "AUTO"
343     # openstack configuration
344     openStackUserName: "vnf_user"
345     openStackRegion: "RegionOne"
346     openStackKeyStoneUrl: "http://1.2.3.4:5000"
347     openStackServiceTenantName: "service"
348     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
349
350   # in order to enable static password for so-monitoring uncomment:
351   # so-monitoring:
352   #   server:
353   #     monitoring:
354   #       password: demo123456!
355 uui:
356   enabled: false
357 vfc:
358   enabled: false
359 vid:
360   enabled: false
361 vnfsdk:
362   enabled: false
363 modeling:
364   enabled: false
365 platform:
366   enabled: false
367 a1policymanagement:
368   enabled: false
369
370 cert-wrapper:
371   enabled: true
372 repository-wrapper:
373   enabled: true