Add dcaemod charts
[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   # ONAP Repository
28   # Uncomment the following to enable the use of a single docker
29   # repository but ONLY if your repository mirrors all ONAP
30   # docker images. This includes all images from dockerhub and
31   # any other repository that hosts images for ONAP components.
32   #repository: nexus3.onap.org:10001
33   repositoryCred:
34     user: docker
35     password: docker
36
37   # readiness check - temporary repo until images migrated to nexus3
38   readinessRepository: oomk8s
39   # logging agent - temporary repo until images migrated to nexus3
40   loggingRepository: docker.elastic.co
41
42   # image pull policy
43   pullPolicy: Always
44
45   # default mount path root directory referenced
46   # by persistent volumes and log files
47   persistence:
48     mountPath: /dockerdata-nfs
49     enableDefaultStorageclass: false
50     parameters: {}
51     storageclassProvisioner: kubernetes.io/no-provisioner
52     volumeReclaimPolicy: Retain
53
54   # override default resource limit flavor for all charts
55   flavor: unlimited
56
57   # flag to enable debugging - application support required
58   debugEnabled: false
59
60   #Global ingress configuration
61   ingress:
62     enabled: false
63     virtualhost:
64         enabled: true
65         baseurl: "simpledemo.onap.org"
66
67   # Global Service Mesh configuration
68   # POC Mode, don't use it in production
69   serviceMesh:
70     enabled: false
71     tls: true
72
73   # Disabling AAF
74   # POC Mode, don't use it in production
75   aafEnabled: true
76
77   # TLS
78   # Set to false if you want to disable TLS for NodePorts. Be aware that this
79   # will loosen your security.
80   # if set this element will force or not tls even if serviceMesh.tls is set.
81   # tlsEnabled: false
82
83
84 # Example of specific for the components where you want to disable TLS only for
85 # it:
86 # if set this element will force or not tls even if global.serviceMesh.tls and
87 # global.tlsEnabled is set otherwise.
88 # robot:
89 #   tlsOverride: false
90
91   # Global storage configuration
92   #    Set to "-" for default, or with the name of the storage class
93   #    Please note that if you use AAF, CDS, SDC, Netbox or Robot, you need a
94   #    storageclass with RWX capabilities (or set specific configuration for these
95   #    components).
96   # persistence:
97   #   storageClass: "-"
98
99 # Example of specific for the components which requires RWX:
100 # aaf:
101 #   persistence:
102 #     storageClassOverride: "My_RWX_Storage_Class"
103 # contrib:
104 #   netbox:
105 #     netbox-app:
106 #       persistence:
107 #         storageClassOverride: "My_RWX_Storage_Class"
108 # cds:
109 #   cds-blueprints-processor:
110 #     persistence:
111 #       storageClassOverride: "My_RWX_Storage_Class"
112 # sdc:
113 #   sdc-onboarding-be:
114 #     persistence:
115 #       storageClassOverride: "My_RWX_Storage_Class"
116
117 #################################################################
118 # Enable/disable and configure helm charts (ie. applications)
119 # to customize the ONAP deployment.
120 #################################################################
121 aaf:
122   enabled: false
123 aai:
124   enabled: false
125 appc:
126   enabled: false
127   config:
128     openStackType: OpenStackProvider
129     openStackName: OpenStack
130     openStackKeyStoneUrl: http://localhost:8181/apidoc/explorer/index.html
131     openStackServiceTenantName: default
132     openStackDomain: default
133     openStackUserName: admin
134     openStackEncryptedPassword: admin
135 cassandra:
136   enabled: false
137 cds:
138   enabled: false
139 clamp:
140   enabled: false
141 cli:
142   enabled: false
143 consul:
144   enabled: false
145 contrib:
146   enabled: false
147 dcaegen2:
148   enabled: false
149 dcaemod:
150   enabled: false
151 pnda:
152   enabled: false
153 dmaap:
154   enabled: false
155 esr:
156   enabled: false
157 log:
158   enabled: false
159 sniro-emulator:
160   enabled: false
161 oof:
162   enabled: false
163 mariadb-galera:
164   enabled: false
165 msb:
166   enabled: false
167 multicloud:
168   enabled: false
169 nbi:
170   enabled: false
171   config:
172     # openstack configuration
173     openStackRegion: "Yolo"
174     openStackVNFTenantId: "1234"
175 policy:
176   enabled: false
177 pomba:
178   enabled: false
179 portal:
180   enabled: false
181 robot:
182   enabled: false
183   config:
184     # openStackEncryptedPasswordHere should match the encrypted string used in SO and APPC and overridden per environment
185     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
186 sdc:
187   enabled: false
188 sdnc:
189   enabled: false
190
191   replicaCount: 1
192
193   mysql:
194     replicaCount: 1
195 so:
196   enabled: false
197
198   replicaCount: 1
199
200   liveness:
201     # necessary to disable liveness probe when setting breakpoints
202     # in debugger so K8s doesn't restart unresponsive container
203     enabled: false
204
205   # so server configuration
206   config:
207     # message router configuration
208     dmaapTopic: "AUTO"
209     # openstack configuration
210     openStackUserName: "vnf_user"
211     openStackRegion: "RegionOne"
212     openStackKeyStoneUrl: "http://1.2.3.4:5000"
213     openStackServiceTenantName: "service"
214     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
215
216   # configure embedded mariadb
217   mariadb:
218     config:
219       mariadbRootPassword: password
220 uui:
221   enabled: false
222 vfc:
223   enabled: false
224 vid:
225   enabled: false
226 vnfsdk:
227   enabled: false
228 modeling:
229   enabled: false