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