267a731fb0aac2637ac3b8a608f37a68786b2eba
[oom.git] / kubernetes / onap / values.yaml
1 # Copyright © 2019 Amdocs, Bell Canada
2 # Copyright (c) 2020 Nordix Foundation, Modifications
3 #
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
16 #################################################################
17 # Global configuration overrides.
18 #
19 # These overrides will affect all helm charts (ie. applications)
20 # that are listed below and are 'enabled'.
21 #################################################################
22 global:
23   # Change to an unused port prefix range to prevent port conflicts
24   # with other instances running within the same k8s cluster
25   nodePortPrefix: 302
26   nodePortPrefixExt: 304
27
28
29   # Install test components
30   # test components are out of the scope of ONAP but allow to have a entire
31   # environment to test the different features of ONAP
32   # Current tests environments provided:
33   #  - netbox (needed for CDS IPAM)
34   #  - AWX (needed for XXX)
35   #  - EJBCA Server (needed for CMPv2 tests)
36   # Today, "contrib" chart that hosting these components must also be enabled
37   # in order to make it work. So `contrib.enabled` must have the same value than
38   # addTestingComponents
39   addTestingComponents: &testing false
40
41   # ONAP Repository
42   # Uncomment the following to enable the use of a single docker
43   # repository but ONLY if your repository mirrors all ONAP
44   # docker images. This includes all images from dockerhub and
45   # any other repository that hosts images for ONAP components.
46   #repository: nexus3.onap.org:10001
47   repositoryCred:
48     user: docker
49     password: docker
50   dockerHubRepository: docker.io
51
52   # readiness check - temporary repo until images migrated to nexus3
53   readinessRepository: oomk8s
54   readinessImage: readiness-check:2.2.2
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   # configuration to set log level to all components (the one that are using
95   # "common.log.level" to set this)
96   # can be overrided per components by setting logConfiguration.logLevelOverride
97   # to the desired value
98   # logLevel: DEBUG
99
100   #Global ingress configuration
101   ingress:
102     enabled: false
103     virtualhost:
104         enabled: true
105         baseurl: "simpledemo.onap.org"
106
107   # Global Service Mesh configuration
108   # POC Mode, don't use it in production
109   serviceMesh:
110     enabled: false
111     tls: true
112
113   # Disabling AAF
114   # POC Mode, only for use in development environment
115   # Keep it enabled in production
116   aafEnabled: true
117   aafAgentImage: onap/aaf/aaf_agent:2.1.20
118
119   # Enabling CMPv2
120   cmpv2Enabled: true
121   aaf:
122     certServiceClient:
123       image: onap/org.onap.aaf.certservice.aaf-certservice-client:1.2.0
124       secret:
125         name: aaf-cert-service-client-tls-secret
126         mountPath: /etc/onap/aaf/certservice/certs/
127       envVariables:
128         # Certificate related
129         cmpv2Organization: "Linux-Foundation"
130         cmpv2OrganizationalUnit: "ONAP"
131         cmpv2Location: "San-Francisco"
132         cmpv2State: "California"
133         cmpv2Country: "US"
134         # Client configuration related
135         caName: "RA"
136         requestURL: "https://aaf-cert-service:8443/v1/certificate/"
137         requestTimeout: "30000"
138         keystorePath: "/etc/onap/aaf/certservice/certs/certServiceClient-keystore.jks"
139         keystorePassword: "secret"
140         truststorePath: "/etc/onap/aaf/certservice/certs/truststore.jks"
141         truststorePassword: "secret"
142
143   # TLS
144   # Set to false if you want to disable TLS for NodePorts. Be aware that this
145   # will loosen your security.
146   # if set this element will force or not tls even if serviceMesh.tls is set.
147   # tlsEnabled: false
148
149   # Logging
150   # Currently, centralized logging is not in best shape so it's disabled by
151   # default
152   centralizedLoggingEnabled: &centralizedLogging false
153
154
155 # Example of specific for the components where you want to disable TLS only for
156 # it:
157 # if set this element will force or not tls even if global.serviceMesh.tls and
158 # global.tlsEnabled is set otherwise.
159 # robot:
160 #   tlsOverride: false
161
162   # Global storage configuration
163   #    Set to "-" for default, or with the name of the storage class
164   #    Please note that if you use AAF, CDS, SDC, Netbox or Robot, you need a
165   #    storageclass with RWX capabilities (or set specific configuration for these
166   #    components).
167   # persistence:
168   #   storageClass: "-"
169
170 # Example of specific for the components which requires RWX:
171 # aaf:
172 #   persistence:
173 #     storageClassOverride: "My_RWX_Storage_Class"
174 # contrib:
175 #   netbox:
176 #     netbox-app:
177 #       persistence:
178 #         storageClassOverride: "My_RWX_Storage_Class"
179 # cds:
180 #   cds-blueprints-processor:
181 #     persistence:
182 #       storageClassOverride: "My_RWX_Storage_Class"
183 # sdc:
184 #   sdc-onboarding-be:
185 #     persistence:
186 #       storageClassOverride: "My_RWX_Storage_Class"
187
188 #################################################################
189 # Enable/disable and configure helm charts (ie. applications)
190 # to customize the ONAP deployment.
191 #################################################################
192 aaf:
193   enabled: false
194 aai:
195   enabled: false
196 appc:
197   enabled: false
198   config:
199     openStackType: OpenStackProvider
200     openStackName: OpenStack
201     openStackKeyStoneUrl: http://localhost:8181/apidoc/explorer/index.html
202     openStackServiceTenantName: default
203     openStackDomain: default
204     openStackUserName: admin
205     openStackEncryptedPassword: admin
206 cassandra:
207   enabled: false
208 cds:
209   enabled: false
210 clamp:
211   enabled: false
212 cli:
213   enabled: false
214 consul:
215   enabled: false
216 # Today, "contrib" chart that hosting these components must also be enabled
217 # in order to make it work. So `contrib.enabled` must have the same value than
218 # addTestingComponents
219 contrib:
220   enabled: *testing
221 dcaegen2:
222   enabled: false
223 dcaemod:
224   enabled: false
225 pnda:
226   enabled: false
227 dmaap:
228   enabled: false
229 esr:
230   enabled: false
231 # Today, "logging" chart that perform the central part of logging must also be
232 # enabled in order to make it work. So `logging.enabled` must have the same
233 # value than centralizedLoggingEnabled
234 log:
235   enabled: *centralizedLogging
236 sniro-emulator:
237   enabled: false
238 oof:
239   enabled: false
240 mariadb-galera:
241   enabled: false
242 msb:
243   enabled: false
244 multicloud:
245   enabled: false
246 nbi:
247   enabled: false
248   config:
249     # openstack configuration
250     openStackRegion: "Yolo"
251     openStackVNFTenantId: "1234"
252 policy:
253   enabled: false
254 pomba:
255   enabled: false
256 portal:
257   enabled: false
258 robot:
259   enabled: false
260   config:
261     # openStackEncryptedPasswordHere should match the encrypted string used in SO and APPC and overridden per environment
262     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
263 sdc:
264   enabled: false
265 sdnc:
266   enabled: false
267
268   replicaCount: 1
269
270   mysql:
271     replicaCount: 1
272 so:
273   enabled: false
274
275   replicaCount: 1
276
277   liveness:
278     # necessary to disable liveness probe when setting breakpoints
279     # in debugger so K8s doesn't restart unresponsive container
280     enabled: false
281
282   # so server configuration
283   config:
284     # message router configuration
285     dmaapTopic: "AUTO"
286     # openstack configuration
287     openStackUserName: "vnf_user"
288     openStackRegion: "RegionOne"
289     openStackKeyStoneUrl: "http://1.2.3.4:5000"
290     openStackServiceTenantName: "service"
291     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
292
293   # configure embedded mariadb
294   mariadb:
295     config:
296       mariadbRootPassword: password
297 uui:
298   enabled: false
299 vfc:
300   enabled: false
301 vid:
302   enabled: false
303 vnfsdk:
304   enabled: false
305 modeling:
306   enabled: false
307 a1policymanagement:
308   enabled: false