[COMMON] new logConfiguration chart
[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   # configuration to set log level to all components (the one that are using
94   # "common.log.level" to set this)
95   # can be overrided per components by setting logConfiguration.logLevelOverride
96   # to the desired value
97   # logLevel: DEBUG
98
99   #Global ingress configuration
100   ingress:
101     enabled: false
102     virtualhost:
103         enabled: true
104         baseurl: "simpledemo.onap.org"
105
106   # Global Service Mesh configuration
107   # POC Mode, don't use it in production
108   serviceMesh:
109     enabled: false
110     tls: true
111
112   # Disabling AAF
113   # POC Mode, only for use in development environment
114   # Keep it enabled in production
115   aafEnabled: true
116   aafAgentImage: onap/aaf/aaf_agent:2.1.20
117
118   # Enabling CMPv2
119   cmpv2Enabled: true
120   aaf:
121     certServiceClient:
122       image: onap/org.onap.aaf.certservice.aaf-certservice-client:1.2.0
123       secret:
124         name: aaf-cert-service-client-tls-secret
125         mountPath: /etc/onap/aaf/certservice/certs/
126       envVariables:
127         # Certificate related
128         cmpv2Organization: "Linux-Foundation"
129         cmpv2OrganizationalUnit: "ONAP"
130         cmpv2Location: "San-Francisco"
131         cmpv2State: "California"
132         cmpv2Country: "US"
133         # Client configuration related
134         caName: "RA"
135         requestURL: "https://aaf-cert-service:8443/v1/certificate/"
136         outputType: "P12"
137         requestTimeout: "20000"
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