Merge "Reset workflow-designer to frankfurt"
[oom.git] / kubernetes / onap / values.yaml
1 # Copyright © 2019 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration overrides.
17 #
18 # These overrides will affect all helm charts (ie. applications)
19 # that are listed below and are 'enabled'.
20 #################################################################
21 global:
22   # Change to an unused port prefix range to prevent port conflicts
23   # with other instances running within the same k8s cluster
24   nodePortPrefix: 302
25   nodePortPrefixExt: 304
26
27
28   # Install test components
29   # test components are out of the scope of ONAP but allow to have a entire
30   # environment to test the different features of ONAP
31   # Current tests environments provided:
32   #  - netbox (needed for CDS IPAM)
33   #  - AWX (needed for XXX)
34   #  - EJBCA Server (needed for CMPv2 tests)
35   # Today, "contrib" chart that hosting these components must also be enabled
36   # in order to make it work. So `contrib.enabled` must have the same value than
37   # addTestingComponents
38   addTestingComponents: &testing false
39
40   # ONAP Repository
41   # Uncomment the following to enable the use of a single docker
42   # repository but ONLY if your repository mirrors all ONAP
43   # docker images. This includes all images from dockerhub and
44   # any other repository that hosts images for ONAP components.
45   #repository: nexus3.onap.org:10001
46   repositoryCred:
47     user: docker
48     password: docker
49   dockerHubRepository: docker.io
50
51   # readiness check - temporary repo until images migrated to nexus3
52   readinessRepository: oomk8s
53   readinessImage: readiness-check:2.2.2
54
55   # curl image
56   curlImage: curlimages/curl:7.69.1
57
58   # logging agent - temporary repo until images migrated to nexus3
59   loggingRepository: docker.elastic.co
60
61   # dockerHub main repository
62   dockerHubRepository: docker.io
63
64   # busybox repo and image
65   busyboxRepository: docker.io
66   busyboxImage: busybox:1.30
67
68   # kubeclt image
69   kubectlImage: "bitnami/kubectl:1.15"
70
71   # image pull policy
72   pullPolicy: Always
73
74   # default clusterName
75   # {{ template "common.fullname" . }}.{{ template "common.namespace" . }}.svc.{{ .Values.global.clusterName }}
76   clusterName: cluster.local
77
78   # default mount path root directory referenced
79   # by persistent volumes and log files
80   persistence:
81     mountPath: /dockerdata-nfs
82     enableDefaultStorageclass: false
83     parameters: {}
84     storageclassProvisioner: kubernetes.io/no-provisioner
85     volumeReclaimPolicy: Retain
86
87   # override default resource limit flavor for all charts
88   flavor: unlimited
89
90   # flag to enable debugging - application support required
91   debugEnabled: false
92
93   #Global ingress configuration
94   ingress:
95     enabled: false
96     virtualhost:
97         enabled: true
98         baseurl: "simpledemo.onap.org"
99
100   # Global Service Mesh configuration
101   # POC Mode, don't use it in production
102   serviceMesh:
103     enabled: false
104     tls: true
105
106   # Disabling AAF
107   # POC Mode, only for use in development environment
108   # Keep it enabled in production
109   aafEnabled: true
110   aafAgentImage: onap/aaf/aaf_agent:2.1.20
111
112   # Enabling CMPv2
113   cmpv2Enabled: true
114   aaf:
115     certServiceClient:
116       image: onap/org.onap.aaf.certservice.aaf-certservice-client:1.1.0
117       secret:
118         name: aaf-cert-service-client-tls-secret
119         mountPath: /etc/onap/aaf/certservice/certs/
120       envVariables:
121         # Certificate related
122         cmpv2Organization: "Linux-Foundation"
123         cmpv2OrganizationalUnit: "ONAP"
124         cmpv2Location: "San-Francisco"
125         cmpv2State: "California"
126         cmpv2Country: "US"
127         # Client configuration related
128         caName: "RA"
129         requestURL: "https://aaf-cert-service:8443/v1/certificate/"
130         outputType: "P12"
131         requestTimeout: "20000"
132         keystorePath: "/etc/onap/aaf/certservice/certs/certServiceClient-keystore.jks"
133         keystorePassword: "secret"
134         truststorePath: "/etc/onap/aaf/certservice/certs/truststore.jks"
135         truststorePassword: "secret"
136
137   # TLS
138   # Set to false if you want to disable TLS for NodePorts. Be aware that this
139   # will loosen your security.
140   # if set this element will force or not tls even if serviceMesh.tls is set.
141   # tlsEnabled: false
142
143   # Logging
144   # Currently, centralized logging is not in best shape so it's disabled by
145   # default
146   centralizedLoggingEnabled: &centralizedLogging false
147
148
149 # Example of specific for the components where you want to disable TLS only for
150 # it:
151 # if set this element will force or not tls even if global.serviceMesh.tls and
152 # global.tlsEnabled is set otherwise.
153 # robot:
154 #   tlsOverride: false
155
156   # Global storage configuration
157   #    Set to "-" for default, or with the name of the storage class
158   #    Please note that if you use AAF, CDS, SDC, Netbox or Robot, you need a
159   #    storageclass with RWX capabilities (or set specific configuration for these
160   #    components).
161   # persistence:
162   #   storageClass: "-"
163
164 # Example of specific for the components which requires RWX:
165 # aaf:
166 #   persistence:
167 #     storageClassOverride: "My_RWX_Storage_Class"
168 # contrib:
169 #   netbox:
170 #     netbox-app:
171 #       persistence:
172 #         storageClassOverride: "My_RWX_Storage_Class"
173 # cds:
174 #   cds-blueprints-processor:
175 #     persistence:
176 #       storageClassOverride: "My_RWX_Storage_Class"
177 # sdc:
178 #   sdc-onboarding-be:
179 #     persistence:
180 #       storageClassOverride: "My_RWX_Storage_Class"
181
182 #################################################################
183 # Enable/disable and configure helm charts (ie. applications)
184 # to customize the ONAP deployment.
185 #################################################################
186 aaf:
187   enabled: false
188 aai:
189   enabled: false
190 appc:
191   enabled: false
192   config:
193     openStackType: OpenStackProvider
194     openStackName: OpenStack
195     openStackKeyStoneUrl: http://localhost:8181/apidoc/explorer/index.html
196     openStackServiceTenantName: default
197     openStackDomain: default
198     openStackUserName: admin
199     openStackEncryptedPassword: admin
200 cassandra:
201   enabled: false
202 cds:
203   enabled: false
204 clamp:
205   enabled: false
206 cli:
207   enabled: false
208 consul:
209   enabled: false
210 # Today, "contrib" chart that hosting these components must also be enabled
211 # in order to make it work. So `contrib.enabled` must have the same value than
212 # addTestingComponents
213 contrib:
214   enabled: *testing
215 dcaegen2:
216   enabled: false
217 dcaemod:
218   enabled: false
219 pnda:
220   enabled: false
221 dmaap:
222   enabled: false
223 esr:
224   enabled: false
225 # Today, "logging" chart that perform the central part of logging must also be
226 # enabled in order to make it work. So `logging.enabled` must have the same
227 # value than centralizedLoggingEnabled
228 log:
229   enabled: *centralizedLogging
230 sniro-emulator:
231   enabled: false
232 oof:
233   enabled: false
234 mariadb-galera:
235   enabled: false
236 msb:
237   enabled: false
238 multicloud:
239   enabled: false
240 nbi:
241   enabled: false
242   config:
243     # openstack configuration
244     openStackRegion: "Yolo"
245     openStackVNFTenantId: "1234"
246 policy:
247   enabled: false
248 pomba:
249   enabled: false
250 portal:
251   enabled: false
252 robot:
253   enabled: false
254   config:
255     # openStackEncryptedPasswordHere should match the encrypted string used in SO and APPC and overridden per environment
256     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
257 sdc:
258   enabled: false
259 sdnc:
260   enabled: false
261
262   replicaCount: 1
263
264   mysql:
265     replicaCount: 1
266 so:
267   enabled: false
268
269   replicaCount: 1
270
271   liveness:
272     # necessary to disable liveness probe when setting breakpoints
273     # in debugger so K8s doesn't restart unresponsive container
274     enabled: false
275
276   # so server configuration
277   config:
278     # message router configuration
279     dmaapTopic: "AUTO"
280     # openstack configuration
281     openStackUserName: "vnf_user"
282     openStackRegion: "RegionOne"
283     openStackKeyStoneUrl: "http://1.2.3.4:5000"
284     openStackServiceTenantName: "service"
285     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
286
287   # configure embedded mariadb
288   mariadb:
289     config:
290       mariadbRootPassword: password
291 uui:
292   enabled: false
293 vfc:
294   enabled: false
295 vid:
296   enabled: false
297 vnfsdk:
298   enabled: false
299 modeling:
300   enabled: false