Merge "[SDNC] Move ODL persistent data to pvc" into guilin
[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   # Uncomment the following to enable the use of a single docker
44   # repository but ONLY if your repository mirrors all ONAP
45   # docker images. This includes all images from dockerhub and
46   # any other repository that hosts images for ONAP components.
47   #repository: nexus3.onap.org:10001
48   repositoryCred:
49     user: docker
50     password: docker
51   dockerHubRepository: docker.io
52
53   # readiness check
54   readinessImage: onap/oom/readiness:3.0.1
55
56   # curl image
57   curlImage: curlimages/curl:7.69.1
58
59   # logging agent - temporary repo until images migrated to nexus3
60   loggingRepository: docker.elastic.co
61
62   # dockerHub main repository
63   dockerHubRepository: docker.io
64
65   # busybox repo and image
66   busyboxRepository: docker.io
67   busyboxImage: busybox:1.30
68
69   # kubeclt image
70   kubectlImage: "bitnami/kubectl:1.15"
71
72   # image pull policy
73   pullPolicy: Always
74
75   # default clusterName
76   # {{ template "common.fullname" . }}.{{ template "common.namespace" . }}.svc.{{ .Values.global.clusterName }}
77   clusterName: cluster.local
78
79   # default mount path root directory referenced
80   # by persistent volumes and log files
81   persistence:
82     mountPath: /dockerdata-nfs
83     enableDefaultStorageclass: false
84     parameters: {}
85     storageclassProvisioner: kubernetes.io/no-provisioner
86     volumeReclaimPolicy: Retain
87
88   # override default resource limit flavor for all charts
89   flavor: unlimited
90
91   # flag to enable debugging - application support required
92   debugEnabled: false
93
94   # default password complexity
95   # available options: phrase, name, pin, basic, short, medium, long, maximum security
96   # More datails: https://masterpassword.app/masterpassword-algorithm.pdf
97   passwordStrength: long
98
99   # configuration to set log level to all components (the one that are using
100   # "common.log.level" to set this)
101   # can be overrided per components by setting logConfiguration.logLevelOverride
102   # to the desired value
103   # logLevel: DEBUG
104
105   #Global ingress configuration
106   ingress:
107     enabled: false
108     virtualhost:
109       baseurl: "simpledemo.onap.org"
110
111   # Global Service Mesh configuration
112   # POC Mode, don't use it in production
113   serviceMesh:
114     enabled: false
115     tls: true
116
117   # Disabling AAF
118   # POC Mode, only for use in development environment
119   # Keep it enabled in production
120   aafEnabled: true
121   aafAgentImage: onap/aaf/aaf_agent:2.1.20
122
123   # Enabling CMPv2
124   cmpv2Enabled: true
125   platform:
126     certServiceClient:
127       image: onap/org.onap.oom.platform.cert-service.oom-certservice-client:2.1.1
128       secret:
129         name: oom-cert-service-client-tls-secret
130         mountPath: /etc/onap/oom/certservice/certs/
131       envVariables:
132         # Certificate related
133         cmpv2Organization: "Linux-Foundation"
134         cmpv2OrganizationalUnit: "ONAP"
135         cmpv2Location: "San-Francisco"
136         cmpv2State: "California"
137         cmpv2Country: "US"
138         # Client configuration related
139         caName: "RA"
140         requestURL: "https://oom-cert-service:8443/v1/certificate/"
141         requestTimeout: "30000"
142         keystorePath: "/etc/onap/oom/certservice/certs/certServiceClient-keystore.jks"
143         outputType: "P12"
144         keystorePassword: "secret"
145         truststorePath: "/etc/onap/oom/certservice/certs/truststore.jks"
146         truststorePassword: "secret"
147
148   # Indicates offline deployment build
149   # Set to true if you are rendering helm charts for offline deployment
150   # Otherwise keep it disabled
151   offlineDeploymentBuild: false
152
153   # TLS
154   # Set to false if you want to disable TLS for NodePorts. Be aware that this
155   # will loosen your security.
156   # if set this element will force or not tls even if serviceMesh.tls is set.
157   # tlsEnabled: false
158
159   # Logging
160   # Currently, centralized logging is not in best shape so it's disabled by
161   # default
162   centralizedLoggingEnabled: &centralizedLogging false
163
164   # Example of specific for the components where you want to disable TLS only for
165   # it:
166   # if set this element will force or not tls even if global.serviceMesh.tls and
167   # global.tlsEnabled is set otherwise.
168   # robot:
169   #   tlsOverride: false
170
171   # Global storage configuration
172   #    Set to "-" for default, or with the name of the storage class
173   #    Please note that if you use AAF, CDS, SDC, Netbox or Robot, you need a
174   #    storageclass with RWX capabilities (or set specific configuration for these
175   #    components).
176   # persistence:
177   #   storageClass: "-"
178
179 # Example of specific for the components which requires RWX:
180 # aaf:
181 #   persistence:
182 #     storageClassOverride: "My_RWX_Storage_Class"
183 # contrib:
184 #   netbox:
185 #     netbox-app:
186 #       persistence:
187 #         storageClassOverride: "My_RWX_Storage_Class"
188 # cds:
189 #   cds-blueprints-processor:
190 #     persistence:
191 #       storageClassOverride: "My_RWX_Storage_Class"
192 # sdc:
193 #   sdc-onboarding-be:
194 #     persistence:
195 #       storageClassOverride: "My_RWX_Storage_Class"
196
197 #################################################################
198 # Enable/disable and configure helm charts (ie. applications)
199 # to customize the ONAP deployment.
200 #################################################################
201 aaf:
202   enabled: false
203 aai:
204   enabled: false
205 appc:
206   enabled: false
207   config:
208     openStackType: OpenStackProvider
209     openStackName: OpenStack
210     openStackKeyStoneUrl: http://localhost:8181/apidoc/explorer/index.html
211     openStackServiceTenantName: default
212     openStackDomain: default
213     openStackUserName: admin
214     openStackEncryptedPassword: admin
215 cassandra:
216   enabled: false
217 cds:
218   enabled: false
219 clamp:
220   enabled: false
221 cli:
222   enabled: false
223 consul:
224   enabled: false
225 # Today, "contrib" chart that hosting these components must also be enabled
226 # in order to make it work. So `contrib.enabled` must have the same value than
227 # addTestingComponents
228 contrib:
229   enabled: *testing
230 dcaegen2:
231   enabled: false
232 dcaemod:
233   enabled: false
234 dmaap:
235   enabled: false
236 esr:
237   enabled: false
238 # Today, "logging" chart that perform the central part of logging must also be
239 # enabled in order to make it work. So `logging.enabled` must have the same
240 # value than centralizedLoggingEnabled
241 log:
242   enabled: *centralizedLogging
243 sniro-emulator:
244   enabled: false
245 oof:
246   enabled: false
247 mariadb-galera:
248   enabled: false
249 msb:
250   enabled: false
251 multicloud:
252   enabled: false
253 nbi:
254   enabled: false
255   config:
256     # openstack configuration
257     openStackRegion: "Yolo"
258     openStackVNFTenantId: "1234"
259 policy:
260   enabled: false
261 pomba:
262   enabled: false
263 portal:
264   enabled: false
265 robot:
266   enabled: false
267   config:
268     # openStackEncryptedPasswordHere should match the encrypted string used in SO and APPC and overridden per environment
269     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
270 sdc:
271   enabled: false
272 sdnc:
273   enabled: false
274
275   replicaCount: 1
276
277   mysql:
278     replicaCount: 1
279 so:
280   enabled: false
281
282   replicaCount: 1
283
284   liveness:
285     # necessary to disable liveness probe when setting breakpoints
286     # in debugger so K8s doesn't restart unresponsive container
287     enabled: false
288
289   # so server configuration
290   config:
291     # message router configuration
292     dmaapTopic: "AUTO"
293     # openstack configuration
294     openStackUserName: "vnf_user"
295     openStackRegion: "RegionOne"
296     openStackKeyStoneUrl: "http://1.2.3.4:5000"
297     openStackServiceTenantName: "service"
298     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
299
300   # in order to enable static password for so-monitoring uncomment:
301   # so-monitoring:
302   #   server:
303   #     monitoring:
304   #       password: demo123456!
305
306   # configure embedded mariadb
307   mariadb:
308     config:
309       mariadbRootPassword: password
310 uui:
311   enabled: false
312 vfc:
313   enabled: false
314 vid:
315   enabled: false
316 vnfsdk:
317   enabled: false
318 modeling:
319   enabled: false
320 platform:
321   enabled: false
322 a1policymanagement:
323   enabled: false
324
325 cert-wrapper:
326   enabled: true