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