0456ce5a960a148ee59f2e5bef1c4413558c9936
[oom.git] / kubernetes / onap / values.yaml
1 # Copyright © 2019 Amdocs, Bell Canada
2 # Copyright (c) 2020 Nordix Foundation, Modifications
3 # Modifications Copyright © 2020-2021 Nokia
4 # Modifications Copyright © 2023 Nordix Foundation
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17
18 #################################################################
19 # Global configuration overrides.
20 #
21 # These overrides will affect all helm charts (ie. applications)
22 # that are listed below and are 'enabled'.
23 #################################################################
24 global:
25   # Change to an unused port prefix range to prevent port conflicts
26   # with other instances running within the same k8s cluster
27   nodePortPrefix: 302
28   nodePortPrefixExt: 304
29
30   # ONAP Repository
31   # Four different repositories are used
32   # You can change individually these repositories to ones that will serve the
33   # right images. If credentials are needed for one of them, see below.
34   repository: nexus3.onap.org:10001
35   dockerHubRepository: &dockerHubRepository docker.io
36   elasticRepository: &elasticRepository docker.elastic.co
37   quayRepository: quay.io
38   googleK8sRepository: k8s.gcr.io
39   githubContainerRegistry: ghcr.io
40
41   # Default credentials
42   # they're optional. If the target repository doesn't need them, comment them
43   repositoryCred:
44     user: docker
45     password: docker
46   # If you want / need authentication on the repositories, please set
47   # Don't set them if the target repo is the same than others
48   # so id you've set repository to value `my.private.repo` and same for
49   # dockerHubRepository, you'll have to configure only repository (exclusive) OR
50   # dockerHubCred.
51   # dockerHubCred:
52   #   user: myuser
53   #   password: mypassord
54   # elasticCred:
55   #   user: myuser
56   #   password: mypassord
57   # googleK8sCred:
58   #   user: myuser
59   #   password: mypassord
60
61
62   # common global images
63   # Busybox for simple shell manipulation
64   busyboxImage: busybox:1.34.1
65
66   # curl image
67   curlImage: curlimages/curl:7.80.0
68
69   # env substitution image
70   envsubstImage: dibi/envsubst:1
71
72   # generate htpasswd files image
73   # there's only latest image for htpasswd
74   htpasswdImage: xmartlabs/htpasswd:latest
75
76   # kubenretes client image
77   kubectlImage: bitnami/kubectl:1.22.4
78
79   # logging agent
80   loggingImage: beats/filebeat:5.5.0
81
82   # mariadb client image
83   mariadbImage: bitnami/mariadb:10.5.8
84
85   # nginx server image
86   nginxImage: bitnami/nginx:1.21.4
87
88   # postgreSQL client and server image
89   postgresImage: crunchydata/crunchy-postgres:centos8-13.2-4.6.1
90
91   # readiness check image
92   readinessImage: onap/oom/readiness:3.0.1
93
94   # image pull policy
95   pullPolicy: Always
96
97   # default java image
98   jreImage: onap/integration-java11:10.0.0
99
100   # default clusterName
101   # {{ template "common.fullname" . }}.{{ template "common.namespace" . }}.svc.{{ .Values.global.clusterName }}
102   clusterName: cluster.local
103
104   # default mount path root directory referenced
105   # by persistent volumes and log files
106   persistence:
107     mountPath: /dockerdata-nfs
108     enableDefaultStorageclass: false
109     parameters: {}
110     storageclassProvisioner: kubernetes.io/no-provisioner
111     volumeReclaimPolicy: Retain
112
113   # override default resource limit flavor for all charts
114   flavor: unlimited
115
116   # flag to enable debugging - application support required
117   debugEnabled: false
118
119   # default password complexity
120   # available options: phrase, name, pin, basic, short, medium, long, maximum security
121   # More datails: https://www.masterpasswordapp.com/masterpassword-algorithm.pdf
122   passwordStrength: long
123
124   # configuration to set log level to all components (the one that are using
125   # "common.log.level" to set this)
126   # can be overrided per components by setting logConfiguration.logLevelOverride
127   # to the desired value
128   # logLevel: DEBUG
129
130   # Global ingress configuration
131   ingress:
132     # generally enable ingress for ONAP components
133     enabled: false
134     # enable all component's Ingress interfaces
135     enable_all: false
136
137     # default Ingress base URL and preAddr- and postAddr settings
138     # Ingress URLs result:
139     # <preaddr><component.ingress.service.baseaddr><postaddr>.<baseurl>
140     virtualhost:
141       # Default Ingress base URL
142       # can be overwritten in component by setting ingress.baseurlOverride
143       baseurl: "simpledemo.onap.org"
144       # prefix for baseaddr
145       # can be overwritten in component by setting ingress.preaddrOverride
146       preaddr: ""
147       # postfix for baseaddr
148       # can be overwritten in component by setting ingress.postaddrOverride
149       postaddr: ""
150
151     # All http (port 80) requests via ingress will be redirected
152     # to port 443 on Ingress controller
153     # only valid for Istio Gateway (ServiceMesh enabled)
154     config:
155       ssl: "redirect"
156     # you can set an own Secret containing a certificate
157     # only valid for Istio Gateway (ServiceMesh enabled)
158     #  tls:
159     #    secret: 'my-ingress-cert'
160
161     # optional: Namespace of the Istio IngressGateway
162     # only valid for Istio Gateway (ServiceMesh enabled)
163     namespace: istio-ingress
164
165   # Global Service Mesh configuration
166   serviceMesh:
167     enabled: false
168     tls: true
169     # be aware that linkerd is not well tested
170     engine: "istio" # valid value: istio or linkerd
171
172   # Global Istio Authorization Policy configuration
173   authorizationPolicies:
174     enabled: false
175
176   # metrics part
177   # If enabled, exporters (for prometheus) will be deployed
178   # if custom resources set to yes, CRD from prometheus operartor will be
179   # created
180   # Not all components have it enabled.
181   #
182   metrics:
183     enabled: true
184     custom_resources: false
185
186   # Disabling AAF
187   # POC Mode, only for use in development environment
188   # Keep it enabled in production
189   aafEnabled: false
190
191   # Disabling MSB
192   # POC Mode, only for use in development environment
193   msbEnabled: true
194
195   # default values for certificates
196   certificate:
197     default:
198       renewBefore: 720h #30 days
199       duration:    8760h #365 days
200       subject:
201         organization: "Linux-Foundation"
202         country: "US"
203         locality: "San-Francisco"
204         province: "California"
205         organizationalUnit: "ONAP"
206       issuer:
207         group: certmanager.onap.org
208         kind: CMPv2Issuer
209         name: cmpv2-issuer-onap
210
211   # Enabling CMPv2
212   cmpv2Enabled: false
213   platform:
214     certificates:
215       clientSecretName: oom-cert-service-client-tls-secret
216       keystoreKeyRef: keystore.jks
217       truststoreKeyRef: truststore.jks
218       keystorePasswordSecretName: oom-cert-service-certificates-password
219       keystorePasswordSecretKey: password
220       truststorePasswordSecretName: oom-cert-service-certificates-password
221       truststorePasswordSecretKey: password
222
223   # Indicates offline deployment build
224   # Set to true if you are rendering helm charts for offline deployment
225   # Otherwise keep it disabled
226   offlineDeploymentBuild: false
227
228   # TLS
229   # Set to false if you want to disable TLS for NodePorts. Be aware that this
230   # will loosen your security.
231   # if set this element will force or not tls even if serviceMesh.tls is set.
232   tlsEnabled: false
233
234   # Logging
235   # Currently, centralized logging is not in best shape so it's disabled by
236   # default
237   centralizedLoggingEnabled: &centralizedLogging false
238
239   # Example of specific for the components where you want to disable TLS only for
240   # it:
241   # if set this element will force or not tls even if global.serviceMesh.tls and
242   # global.tlsEnabled is set otherwise.
243   # robot:
244   #   tlsOverride: false
245
246   # Global storage configuration
247   #    Set to "-" for default, or with the name of the storage class
248   #    Please note that if you use AAF, CDS, SDC, Netbox or Robot, you need a
249   #    storageclass with RWX capabilities (or set specific configuration for these
250   #    components).
251   # persistence:
252   #   storageClass: "-"
253
254 # Example of specific for the components which requires RWX:
255 # cds:
256 #   cds-blueprints-processor:
257 #     persistence:
258 #       storageClassOverride: "My_RWX_Storage_Class"
259 # sdc:
260 #   sdc-onboarding-be:
261 #     persistence:
262 #       storageClassOverride: "My_RWX_Storage_Class"
263
264 #################################################################
265 # Enable/disable and configure helm charts (ie. applications)
266 # to customize the ONAP deployment.
267 #################################################################
268
269 aai:
270   enabled: false
271 cassandra:
272   enabled: false
273 cds:
274   enabled: false
275 cli:
276   enabled: false
277 cps:
278   enabled: false
279 dcaegen2-services:
280   enabled: false
281 holmes:
282   enabled: false
283 dmaap:
284   enabled: false
285   message-router:
286     enabled: false
287   dmaap-bc:
288     enabled: false
289   dmaap-dr-prov:
290     enabled: false
291   dmaap-dr-node:
292     enabled: false
293 oof:
294   enabled: false
295 mariadb-galera:
296   enabled: false
297 msb:
298   enabled: false
299 multicloud:
300   enabled: false
301 nbi:
302   enabled: false
303   config:
304     # openstack configuration
305     openStackRegion: "Yolo"
306     openStackVNFTenantId: "1234"
307 policy:
308   enabled: false
309 robot:
310   enabled: false
311   config:
312     # openStackEncryptedPasswordHere should match the encrypted string used in SO and overridden per environment
313     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
314 sdc:
315   enabled: false
316 sdnc:
317   enabled: false
318
319   replicaCount: 1
320
321   mysql:
322     replicaCount: 1
323 so:
324   enabled: false
325
326   replicaCount: 1
327
328   liveness:
329     # necessary to disable liveness probe when setting breakpoints
330     # in debugger so K8s doesn't restart unresponsive container
331     enabled: false
332
333   # so server configuration
334   config:
335     # message router configuration
336     dmaapTopic: "AUTO"
337     # openstack configuration
338     openStackUserName: "vnf_user"
339     openStackRegion: "RegionOne"
340     openStackKeyStoneUrl: "http://1.2.3.4:5000"
341     openStackServiceTenantName: "service"
342     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
343
344   # in order to enable static password for so-monitoring uncomment:
345   # so-monitoring:
346   #   server:
347   #     monitoring:
348   #       password: demo123456!
349
350 strimzi:
351   enabled: false
352   # Kafka replication & disk storage should be dimensioned
353   # according to each given system use case.
354   replicaCount: 3
355   persistence:
356     kafka:
357       size: 10Gi
358     zookeeper:
359       size: 1Gi
360   # Strimzi kafka bridge is an optional http api towards
361   # kafka provided by https://strimzi.io/docs/bridge/latest/
362   strimzi-kafka-bridge:
363     enabled: false
364
365 uui:
366   enabled: false
367 vfc:
368   enabled: false
369 vnfsdk:
370   enabled: false
371 modeling:
372   enabled: false
373 platform:
374   enabled: false
375 a1policymanagement:
376   enabled: false
377 cert-wrapper:
378   enabled: true
379 repository-wrapper:
380   enabled: true
381 roles-wrapper:
382   enabled: true