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