[COMMON] add pre upgrade script for mariadb-galera
[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.1
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
115   # TLS
116   # Set to false if you want to disable TLS for NodePorts. Be aware that this
117   # will loosen your security.
118   # if set this element will force or not tls even if serviceMesh.tls is set.
119   # tlsEnabled: false
120
121   # Logging
122   # Currently, centralized logging is not in best shape so it's disabled by
123   # default
124   centralizedLoggingEnabled: &centralizedLogging false
125
126
127 # Example of specific for the components where you want to disable TLS only for
128 # it:
129 # if set this element will force or not tls even if global.serviceMesh.tls and
130 # global.tlsEnabled is set otherwise.
131 # robot:
132 #   tlsOverride: false
133
134   # Global storage configuration
135   #    Set to "-" for default, or with the name of the storage class
136   #    Please note that if you use AAF, CDS, SDC, Netbox or Robot, you need a
137   #    storageclass with RWX capabilities (or set specific configuration for these
138   #    components).
139   # persistence:
140   #   storageClass: "-"
141
142 # Example of specific for the components which requires RWX:
143 # aaf:
144 #   persistence:
145 #     storageClassOverride: "My_RWX_Storage_Class"
146 # contrib:
147 #   netbox:
148 #     netbox-app:
149 #       persistence:
150 #         storageClassOverride: "My_RWX_Storage_Class"
151 # cds:
152 #   cds-blueprints-processor:
153 #     persistence:
154 #       storageClassOverride: "My_RWX_Storage_Class"
155 # sdc:
156 #   sdc-onboarding-be:
157 #     persistence:
158 #       storageClassOverride: "My_RWX_Storage_Class"
159
160 #################################################################
161 # Enable/disable and configure helm charts (ie. applications)
162 # to customize the ONAP deployment.
163 #################################################################
164 aaf:
165   enabled: false
166 aai:
167   enabled: false
168 appc:
169   enabled: false
170   config:
171     openStackType: OpenStackProvider
172     openStackName: OpenStack
173     openStackKeyStoneUrl: http://localhost:8181/apidoc/explorer/index.html
174     openStackServiceTenantName: default
175     openStackDomain: default
176     openStackUserName: admin
177     openStackEncryptedPassword: admin
178 cassandra:
179   enabled: false
180 cds:
181   enabled: false
182 clamp:
183   enabled: false
184 cli:
185   enabled: false
186 consul:
187   enabled: false
188 # Today, "contrib" chart that hosting these components must also be enabled
189 # in order to make it work. So `contrib.enabled` must have the same value than
190 # addTestingComponents
191 contrib:
192   enabled: *testing
193 dcaegen2:
194   enabled: false
195 dcaemod:
196   enabled: false
197 pnda:
198   enabled: false
199 dmaap:
200   enabled: false
201 esr:
202   enabled: false
203 # Today, "logging" chart that perform the central part of logging must also be
204 # enabled in order to make it work. So `logging.enabled` must have the same
205 # value than centralizedLoggingEnabled
206 log:
207   enabled: *centralizedLogging
208 sniro-emulator:
209   enabled: false
210 oof:
211   enabled: false
212 mariadb-galera:
213   enabled: false
214 msb:
215   enabled: false
216 multicloud:
217   enabled: false
218 nbi:
219   enabled: false
220   config:
221     # openstack configuration
222     openStackRegion: "Yolo"
223     openStackVNFTenantId: "1234"
224 policy:
225   enabled: false
226 pomba:
227   enabled: false
228 portal:
229   enabled: false
230 robot:
231   enabled: false
232   config:
233     # openStackEncryptedPasswordHere should match the encrypted string used in SO and APPC and overridden per environment
234     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
235 sdc:
236   enabled: false
237 sdnc:
238   enabled: false
239
240   replicaCount: 1
241
242   mysql:
243     replicaCount: 1
244 so:
245   enabled: false
246
247   replicaCount: 1
248
249   liveness:
250     # necessary to disable liveness probe when setting breakpoints
251     # in debugger so K8s doesn't restart unresponsive container
252     enabled: false
253
254   # so server configuration
255   config:
256     # message router configuration
257     dmaapTopic: "AUTO"
258     # openstack configuration
259     openStackUserName: "vnf_user"
260     openStackRegion: "RegionOne"
261     openStackKeyStoneUrl: "http://1.2.3.4:5000"
262     openStackServiceTenantName: "service"
263     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
264
265   # configure embedded mariadb
266   mariadb:
267     config:
268       mariadbRootPassword: password
269 uui:
270   enabled: false
271 vfc:
272   enabled: false
273 vid:
274   enabled: false
275 vnfsdk:
276   enabled: false
277 modeling:
278   enabled: false