blob: b22b6758d2a613922eac10770b1471f3a9848812 [file] [log] [blame]
Alexander Dehn9b797d62020-04-21 09:53:50 +00001# Copyright © 2020 Samsung Electronics, highstreet technologies GmbH
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00002# Copyright © 2017 Amdocs, Bell Canada
Remigiusz Janeczek42177a12020-12-10 13:10:15 +01003# Copyright © 2021 Nokia
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
jmac065e2ce2018-03-29 01:18:02 +000017#################################################################
18# Global configuration defaults.
19#################################################################
20global:
21 nodePortPrefix: 302
jmac0e4f7172018-09-07 18:06:43 +000022 nodePortPrefixExt: 304
jmac065e2ce2018-03-29 01:18:02 +000023 persistence:
24 mountPath: /dockerdata-nfs
Agarwal, Ruchira (ra1926)ec7c75e2019-10-01 17:36:24 +000025 aafEnabled: true
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +010026 mariadbGalera:
27 #This flag allows SO to instantiate its own mariadb-galera cluster
28 #If shared instance is used, this chart assumes that DB already exists
29 localCluster: false
30 service: mariadb-galera
31 internalPort: 3306
32 nameOverride: mariadb-galera
Remigiusz Janeczek42177a12020-12-10 13:10:15 +010033 # Enabling CMPv2 with CertManager
Jan Malkiewicz0e53c9f2020-12-08 15:08:01 +010034 CMPv2CertManagerIntegration: false
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +010035
36#################################################################
37# Secrets metaconfig
38#################################################################
39secrets:
40 - uid: db-root-password
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010041 name: &rootDbSecret '{{ include "common.release" . }}-sdnc-db-root-password'
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +010042 type: password
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010043 # If we're using shared mariadb, we need to use the secret name (second
44 # part).
45 # If not, we do the same trick than for user db secret hat allows you
46 # override this secret using external one with the same field that is used
47 # to pass this to subchart.
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +010048 externalSecret: '{{ .Values.global.mariadbGalera.localCluster |
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010049 ternary ((hasSuffix "sdnc-db-root-password" (index .Values "mariadb-galera" "rootUser" "externalSecret")) |
50 ternary
51 ""
52 (tpl (default "" (index .Values "mariadb-galera" "rootUser" "externalSecret")) .))
53 (include "common.mariadb.secret.rootPassSecretName"
54 (dict "dot" .
55 "chartName" .Values.global.mariadbGalera.nameOverride)) }}'
56 password: '{{ (index .Values "mariadb-galera" "rootUser" "password") }}'
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +010057 - uid: db-secret
58 name: &dbSecretName '{{ include "common.release" . }}-sdnc-db-secret'
59 type: basicAuth
60 # This is a nasty trick that allows you override this secret using external one
61 # with the same field that is used to pass this to subchart
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010062 externalSecret: '{{ (hasSuffix "sdnc-db-secret" (index .Values "mariadb-galera" "db" "externalSecret")) |
63 ternary
64 ""
65 (tpl (default "" (index .Values "mariadb-galera" "db" "externalSecret")) .) }}'
66 login: '{{ index .Values "mariadb-galera" "db" "user" }}'
67 password: '{{ index .Values "mariadb-galera" "db" "password" }}'
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +010068 - uid: odl-creds
69 name: &odlCredsSecretName '{{ include "common.release" . }}-sdnc-odl-creds'
70 type: basicAuth
71 externalSecret: '{{ .Values.config.odlCredsExternalSecret }}'
72 login: '{{ .Values.config.odlUser }}'
73 password: '{{ .Values.config.odlPassword }}'
74 # For now this is left hardcoded but should be revisited in a future
75 passwordPolicy: required
demskeq89d26b332021-01-14 16:45:28 +010076 - uid: dmaap-proxy-creds
77 name: &dmaapProxyCredsSecretName '{{ include "common.release" . }}-sdnc-dmaap-proxy-creds'
78 type: basicAuth
79 externalSecret: '{{ .Values.config.dmaapProxyCredsExternalSecret }}'
80 login: '{{ .Values.config.sdnr.dmaapProxy.user }}'
81 password: '{{ .Values.config.sdnr.dmaapProxy.password }}'
82 # For now this is left hardcoded but should be revisited in a future
83 passwordPolicy: required
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +010084 - uid: netbox-apikey
85 type: password
86 externalSecret: '{{ .Values.config.netboxApikeyExternalSecret }}'
87 password: '{{ .Values.config.netboxApikey }}'
88 passwordPolicy: required
Dan Timoney9e310e72021-02-23 11:25:39 -050089 - uid: aai-truststore-password
90 type: password
91 externalSecret: '{{ .Values.config.aaiTruststoreExternalSecret }}'
92 password: '{{ .Values.config.aaiTruststorePassword }}'
93 passwordPolicy: required
94 - uid: ansible-truststore-password
95 type: password
96 externalSecret: '{{ .Values.config.ansibleTruststoreExternalSecret }}'
97 password: '{{ .Values.config.ansibleTruststorePassword }}'
98 passwordPolicy: required
99 - uid: truststore-password
100 type: password
101 externalSecret: '{{ .Values.config.truststoreExternalSecret }}'
102 password: '{{ .Values.config.truststorePassword }}'
103 passwordPolicy: required
104 - uid: keystore-password
105 type: password
106 externalSecret: '{{ .Values.config.keystoreExternalSecret }}'
107 password: '{{ .Values.config.keystorePassword }}'
108 passwordPolicy: required
109 - uid: dmaap-authkey
110 type: password
111 externalSecret: '{{ .Values.config.dmaapAuthKeyExternalSecret }}'
112 password: '{{ .Values.config.dmaapAuthKey }}'
113 passwordPolicy: required
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100114 - uid: aai-user-creds
115 type: basicAuth
116 externalSecret: '{{ .Values.config.aaiCredsExternalSecret}}'
117 login: '{{ .Values.config.aaiUser }}'
118 password: '{{ .Values.config.aaiPassword }}'
119 passwordPolicy: required
Dan Timoney9e310e72021-02-23 11:25:39 -0500120 - uid: so-user-creds
121 type: basicAuth
122 externalSecret: '{{ .Values.config.soCredsExternalSecret}}'
123 login: '{{ .Values.config.soUser }}'
124 password: '{{ .Values.config.soPassword }}'
125 passwordPolicy: required
126 - uid: neng-user-creds
127 type: basicAuth
128 externalSecret: '{{ .Values.config.nengCredsExternalSecret}}'
129 login: '{{ .Values.config.nengUser }}'
130 password: '{{ .Values.config.nengPassword }}'
131 passwordPolicy: required
132 - uid: cds-user-creds
133 type: basicAuth
134 externalSecret: '{{ .Values.config.cdsCredsExternalSecret}}'
135 login: '{{ .Values.config.cdsUser }}'
136 password: '{{ .Values.config.cdsPassword }}'
137 passwordPolicy: required
138 - uid: honeycomb-user-creds
139 type: basicAuth
140 externalSecret: '{{ .Values.config.honeycombCredsExternalSecret}}'
141 login: '{{ .Values.config.honeycombUser }}'
142 password: '{{ .Values.config.honeycombPassword }}'
143 passwordPolicy: required
144 - uid: dmaap-user-creds
145 type: basicAuth
146 externalSecret: '{{ .Values.config.dmaapCredsExternalSecret}}'
147 login: '{{ .Values.config.dmaapUser }}'
148 password: '{{ .Values.config.dmaapPassword }}'
149 passwordPolicy: required
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100150 - uid: modeling-user-creds
151 type: basicAuth
152 externalSecret: '{{ .Values.config.modelingCredsExternalSecret}}'
153 login: '{{ .Values.config.modelingUser }}'
154 password: '{{ .Values.config.modelingPassword }}'
155 passwordPolicy: required
156 - uid: restconf-creds
157 type: basicAuth
158 externalSecret: '{{ .Values.config.restconfCredsExternalSecret}}'
159 login: '{{ .Values.config.restconfUser }}'
160 password: '{{ .Values.config.restconfPassword }}'
161 passwordPolicy: required
162 - uid: ansible-creds
163 name: &ansibleSecretName '{{ include "common.release" . }}-sdnc-ansible-creds'
164 type: basicAuth
165 externalSecret: '{{ .Values.config.ansibleCredsExternalSecret}}'
166 login: '{{ .Values.config.ansibleUser }}'
167 password: '{{ .Values.config.ansiblePassword }}'
168 passwordPolicy: required
169 - uid: scaleout-creds
170 type: basicAuth
171 externalSecret: '{{ .Values.config.scaleoutCredsExternalSecret}}'
172 login: '{{ .Values.config.scaleoutUser }}'
173 password: '{{ .Values.config.scaleoutPassword }}'
174 passwordPolicy: required
demskeq8b43e92c2021-02-12 15:43:48 +0100175 - uid: oauth-token-secret
176 type: password
177 externalSecret: '{{ ternary (tpl (default "" .Values.config.sdnr.oauth.tokenExternalSecret) .) "oauth-disabled" .Values.config.sdnr.oauth.enabled }}'
178 password: '{{ .Values.config.sdnr.oauth.tokenSecret }}'
179 passwordPolicy: required
180 - uid: keycloak-secret
181 type: password
182 externalSecret: '{{ ternary (tpl (default "" .Values.config.sdnr.oauth.providersSecrets.keycloakExternalSecret) .) "oauth-disabled" .Values.config.sdnr.oauth.enabled }}'
183 password: '{{ .Values.config.sdnr.oauth.providersSecrets.keycloak }}'
184 passwordPolicy: required
185
Jan Malkiewicz0e53c9f2020-12-08 15:08:01 +0100186#################################################################
187# Certificates
188#################################################################
189certificates:
Remigiusz Janeczek42177a12020-12-10 13:10:15 +0100190 - mountPath: /var/custom-certs
191 commonName: sdnc.simpledemo.onap.org
Jan Malkiewicz0e53c9f2020-12-08 15:08:01 +0100192 dnsNames:
193 - sdnc.simpledemo.onap.org
Piotr Marcinkiewicz59571012021-01-12 17:37:08 +0100194 keystore:
195 outputType:
196 - jks
Jan Malkiewicz0e53c9f2020-12-08 15:08:01 +0100197 passwordSecretRef:
Piotr Marcinkiewicz32672932021-03-26 13:06:35 +0100198 create: true
Piotr Marcinkiewicz59571012021-01-12 17:37:08 +0100199 name: sdnc-cmpv2-keystore-password
Jan Malkiewicz0e53c9f2020-12-08 15:08:01 +0100200 key: password
Piotr Marcinkiewicz59571012021-01-12 17:37:08 +0100201 issuer:
202 group: certmanager.onap.org
203 kind: CMPv2Issuer
204 name: cmpv2-issuer-onap
jmac065e2ce2018-03-29 01:18:02 +0000205#################################################################
206# Application configuration defaults.
207#################################################################
208# application images
Alexander Dehn238450f2020-10-27 13:03:53 +0000209
jmac065e2ce2018-03-29 01:18:02 +0000210pullPolicy: Always
Dan Timoneyb3035742021-05-11 19:06:34 -0400211image: onap/sdnc-image:2.1.6
Timoney, Dan (dt5972)a3bc1a52019-06-26 16:16:52 -0400212
jmac065e2ce2018-03-29 01:18:02 +0000213# flag to enable debugging - application support required
214debugEnabled: false
215
216# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +0300217config:
Timoney, Dan (dt5972)ba4d2eb2019-05-07 13:32:42 -0400218 odlUid: 100
219 odlGid: 101
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100220 odlUser: admin
jmaca68f4cb2018-05-10 22:44:19 +0000221 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100222 # odlCredsExternalSecret: some secret
223 netboxApikey: onceuponatimeiplayedwithnetbox20180814
224 # netboxApikeyExternalSecret: some secret
Dan Timoney9e310e72021-02-23 11:25:39 -0500225 aaiTruststorePassword: changeit
226 # aaiTruststoreExternalSecret: some secret
227 ansibleTruststorePassword: changeit
228 # ansibleTruststoreExternalSecret: some secret
229 truststorePassword: adminadmin
230 # truststoreExternalSecret: some secret
231 keystorePassword: adminadmin
232 # keystoreExternalSecret: some secret
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100233 aaiUser: sdnc@sdnc.onap.org
234 aaiPassword: demo123456!
235 # aaiCredsExternalSecret: some secret
Dan Timoney9e310e72021-02-23 11:25:39 -0500236 soUser: sdncaBpmn
237 soPassword: password1$
238 # soCredsExternalSecret: some secret
239 nengUser: ccsdkapps
240 nengPassword: ccsdkapps
241 # nengCredsExternalSecret: some secret
242 cdsUser: ccsdkapps
243 cdsPassword: ccsdkapps
244 # cdsCredsExternalSecret: some secret
245 honeycombUser: admin
246 honeycombPassword: admin
247 # honeycombCredsExternalSecret: some secret
248 dmaapUser: admin
249 dmaapPassword: admin
250 dmaapAuthKey: "fs20cKwalJ6ry4kX:7Hqm6BDZK47IKxGRkOPFk33qMYs="
251 # dmaapCredsExternalSecret: some secret
252 # dmaapAuthKeyExternalSecret: some secret
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100253 modelingUser: ccsdkapps
254 modelingPassword: ccsdkapps
255 # modelingCredsExternalSecret: some secret
256 restconfUser: admin
257 restconfPassword: admin
258 # restconfCredsExternalSecret: some secret
259 scaleoutUser: admin
260 scaleoutPassword: admin
261 # scaleoutExternalSecret: some secret
262 ansibleUser: sdnc
263 ansiblePassword: sdnc
264 # ansibleCredsExternalSecret: some secret
265 dbSdnctlDatabase: &sdncDbName sdnctl
jmac065e2ce2018-03-29 01:18:02 +0000266 enableClustering: true
Timoney, Dan (dt5972)a3bc1a52019-06-26 16:16:52 -0400267 sdncHome: /opt/onap/sdnc
jmaca68f4cb2018-05-10 22:44:19 +0000268 binDir: /opt/onap/sdnc/bin
Timoney, Dan (dt5972)a3bc1a52019-06-26 16:16:52 -0400269 etcDir: /opt/onap/sdnc/data
Trevor Tait567ff1e2018-05-01 16:20:54 -0400270 geoEnabled: false
Neha Jain7b0d6c62018-05-17 14:34:49 -0400271# if geoEnabled is set to true here, mysql.geoEnabled must be set to true
Trevor Tait567ff1e2018-05-01 16:20:54 -0400272# if geoEnabled is set to true the following 3 values must be set to their proper values
273 myODLCluster: 127.0.0.1
274 peerODLCluster: 127.0.0.1
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -0400275 isPrimaryCluster: true
jmac065e2ce2018-03-29 01:18:02 +0000276 configDir: /opt/onap/sdnc/data/properties
Konrad Bańka5ea1db32020-04-06 14:32:46 +0200277 ccsdkConfigDir: /opt/onap/ccsdk/data/properties
jmac065e2ce2018-03-29 01:18:02 +0000278 dmaapTopic: SUCCESS
jmaca68f4cb2018-05-10 22:44:19 +0000279 dmaapPort: 3904
BorislavG5f3b6192018-03-25 18:12:38 +0300280 logstashServiceName: log-ls
281 logstashPort: 5044
jmac7c434672018-05-11 20:14:17 +0000282 ansibleServiceName: sdnc-ansible-server
283 ansiblePort: 8000
Dan Timoneya98765b2020-09-14 11:57:55 -0400284 javaHome: /opt/java/openjdk
jmac7c434672018-05-11 20:14:17 +0000285
Timoney, Dan (dt5972)58774772019-08-21 16:50:54 -0400286 odl:
287 etcDir: /opt/opendaylight/etc
288 binDir: /opt/opendaylight/bin
Dan Timoneya98765b2020-09-14 11:57:55 -0400289 gcLogDir: /opt/opendaylight/data/log
Timoney, Dan (dt5972)58774772019-08-21 16:50:54 -0400290 salConfigDir: /opt/opendaylight/system/org/opendaylight/controller/sal-clustering-config
Dan Timoney9520e7c2021-01-12 11:10:58 -0500291 salConfigVersion: 1.10.4
Timoney, Dan (dt5972)58774772019-08-21 16:50:54 -0400292 akka:
293 seedNodeTimeout: 15s
294 circuitBreaker:
295 maxFailures: 10
296 callTimeout: 90s
297 resetTimeout: 30s
298 recoveryEventTimeout: 90s
299 datastore:
300 persistentActorRestartMinBackoffInSeconds: 10
301 persistentActorRestartMaxBackoffInSeconds: 40
302 persistentActorRestartResetBackoffInSeconds: 20
303 shardTransactionCommitTimeoutInSeconds: 120
304 shardIsolatedLeaderCheckIntervalInMillis: 30000
305 operationTimeoutInSeconds: 120
306 javaOptions:
307 maxGCPauseMillis: 100
308 parallelGCThreads : 3
Dan Timoneya98765b2020-09-14 11:57:55 -0400309 numberGCLogFiles: 10
310 minMemory: 512m
311 maxMemory: 2048m
312 gcLogOptions: ""
313 # Next line enables gc logging
314 # gcLogOptions: "-Xlog:gc=trace:file={{.Values.config.odl.gcLogDir}}/gc-%t.log}:time,level,tags:filecount={{.Values.config.odl.javaOptions.numberGCLogFiles}}"
Alexander Dehn9b797d62020-04-21 09:53:50 +0000315 # enables sdnr functionality
316 sdnr:
Alexander Dehn5c1105e2020-09-14 20:55:56 +0000317 enabled: true
Alexander Dehn9b797d62020-04-21 09:53:50 +0000318 # mode: web - SDNC contains device manager only plus dedicated webserver service for ODLUX (default),
319 # mode: dm - SDNC contains sdnr device manager + ODLUX components
320 mode: dm
321 # sdnronly: true starts sdnc container with odl and sdnrwt features only
322 sdnronly: false
323 sdnrdbTrustAllCerts: true
324 mountpointRegistrarEnabled: false
325 mountpointStateProviderEnabled: false
demskeq827854662021-04-08 14:49:47 +0200326 netconfCallHome:
327 enabled: true
demskeq8b43e92c2021-02-12 15:43:48 +0100328 #
demskeq89d26b332021-01-14 16:45:28 +0100329 # enable and set dmaap-proxy for mountpointRegistrar
330 dmaapProxy:
331 enabled: false
332 usepwd: true
333 user: addUserHere
334 password: addPasswordHere
335 url: addProxyUrlHere
demskeq8b43e92c2021-02-12 15:43:48 +0100336 oauth:
337 enabled: false
338 tokenIssuer: ONAP SDNC
339 tokenSecret: secret
340 supportOdlusers: true
341 redirectUri: null
342 publicUrl: none
343 odluxRbac:
344 enabled: true
345 # example definition for a oauth provider
346 providersSecrets:
347 keycloak: d8d7ed52-0691-4353-9ac6-5383e72e9c46
348 providers:
349 - id: keycloak
350 type: KEYCLOAK
351 host: http://keycloak:8080
352 clientId: odlux.app
353 secret: ${KEYCLOAK_SECRET}
354 scope: openid
355 title: ONAP Keycloak Provider
356 roleMapping:
357 mykeycloak: admin
Timoney, Dan (dt5972)58774772019-08-21 16:50:54 -0400358
jmac065e2ce2018-03-29 01:18:02 +0000359# dependency / sub-chart configuration
Krzysztof Opasiak8ab45472020-05-12 12:53:50 +0200360certInitializer:
361 nameOverride: sdnc-cert-initializer
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -0400362 truststoreMountpath: /opt/onap/sdnc/data/stores
Krzysztof Opasiak6bab0cc2020-04-29 00:55:47 +0200363 fqdn: "sdnc"
364 app_ns: "org.osaaf.aaf"
365 fqi: "sdnc@sdnc.onap.org"
366 fqi_namespace: org.onap.sdnc
367 public_fqdn: "sdnc.onap.org"
368 aafDeployFqi: "deployer@people.osaaf.org"
369 aafDeployPass: demo123456!
370 cadi_latitude: "38.0"
371 cadi_longitude: "-72.0"
Krzysztof Opasiak6bab0cc2020-04-29 00:55:47 +0200372 credsPath: /opt/app/osaaf/local
Krzysztof Opasiak8ab45472020-05-12 12:53:50 +0200373 aaf_add_config: >
374 cd /opt/app/osaaf/local;
375 /opt/app/aaf_config/bin/agent.sh local showpass {{.Values.fqi}} {{ .Values.fqdn }} | grep cadi_keystore_password= | cut -d= -f 2 > {{ .Values.credsPath }}/.pass 2>&1
Agarwal, Ruchira (ra1926)ec7c75e2019-10-01 17:36:24 +0000376
Alexander Dehn9b797d62020-04-21 09:53:50 +0000377# dependency / sub-chart configuration
378network-name-gen:
379 enabled: true
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100380mariadb-galera: &mariadbGalera
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100381 nameOverride: &sdnc-db sdnc-db
Konrad Bańkaa9d44032020-03-19 18:31:34 +0100382 config: &mariadbGaleraConfig
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100383 rootPasswordExternalSecret: *rootDbSecret
384 userName: &dbUser sdnctl
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100385 userCredentialsExternalSecret: *dbSecretName
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100386 rootUser:
387 externalSecret: *rootDbSecret
388 db:
389 user: *dbUser
390 externalSecret: *dbSecretName
jmac065e2ce2018-03-29 01:18:02 +0000391 service:
392 name: sdnc-dbhost
jmac065e2ce2018-03-29 01:18:02 +0000393 sdnctlPrefix: sdnc
394 persistence:
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +0000395 mountSubPath: sdnc/mariadb-galera
jmac065e2ce2018-03-29 01:18:02 +0000396 enabled: true
jmac065e2ce2018-03-29 01:18:02 +0000397 replicaCount: 1
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100398 serviceAccount:
399 nameOverride: *sdnc-db
jmac065e2ce2018-03-29 01:18:02 +0000400
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100401cds:
402 enabled: false
403
404dmaap-listener:
Alexander Dehn9b797d62020-04-21 09:53:50 +0000405 enabled: true
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100406 nameOverride: sdnc-dmaap-listener
407 mariadb-galera:
Konrad Bańkaa9d44032020-03-19 18:31:34 +0100408 <<: *mariadbGalera
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100409 config:
Konrad Bańkaa9d44032020-03-19 18:31:34 +0100410 <<: *mariadbGaleraConfig
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100411 mysqlDatabase: *sdncDbName
412 config:
413 sdncChartName: sdnc
414 dmaapPort: 3904
415 sdncPort: 8282
416 configDir: /opt/onap/sdnc/data/properties
417 odlCredsExternalSecret: *odlCredsSecretName
418
419ueb-listener:
Alexander Dehn9b797d62020-04-21 09:53:50 +0000420 enabled: true
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100421 mariadb-galera:
Konrad Bańkaa9d44032020-03-19 18:31:34 +0100422 <<: *mariadbGalera
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100423 config:
Konrad Bańkaa9d44032020-03-19 18:31:34 +0100424 <<: *mariadbGaleraConfig
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100425 mysqlDatabase: *sdncDbName
426 nameOverride: sdnc-ueb-listener
427 config:
428 sdncPort: 8282
429 sdncChartName: sdnc
430 configDir: /opt/onap/sdnc/data/properties
431 odlCredsExternalSecret: *odlCredsSecretName
432
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100433sdnc-ansible-server:
Alexander Dehn9b797d62020-04-21 09:53:50 +0000434 enabled: true
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100435 config:
436 restCredsExternalSecret: *ansibleSecretName
437 mariadb-galera:
Konrad Bańkaa9d44032020-03-19 18:31:34 +0100438 <<: *mariadbGalera
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100439 config:
Konrad Bańkaa9d44032020-03-19 18:31:34 +0100440 <<: *mariadbGaleraConfig
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100441 mysqlDatabase: ansible
442 service:
443 name: sdnc-ansible-server
444 internalPort: 8000
445
jmac065e2ce2018-03-29 01:18:02 +0000446dgbuilder:
Alexander Dehn9b797d62020-04-21 09:53:50 +0000447 enabled: true
jmac065e2ce2018-03-29 01:18:02 +0000448 nameOverride: sdnc-dgbuilder
Dan Timoneycb0a81f2020-07-15 17:31:43 -0400449 certInitializer:
450 nameOverride: sdnc-dgbuilder-cert-initializer
jmac065e2ce2018-03-29 01:18:02 +0000451 config:
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100452 db:
453 dbName: *sdncDbName
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100454 rootPasswordExternalSecret: '{{ .Values.global.mariadbGalera.localCluster |
455 ternary
456 (printf "%s-sdnc-db-root-password" (include "common.release" .))
457 (include "common.mariadb.secret.rootPassSecretName"
458 (dict "dot" . "chartName" "mariadb-galera")) }}'
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100459 userCredentialsExternalSecret: *dbSecretName
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +0000460 dbPodName: mariadb-galera
461 dbServiceName: mariadb-galera
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100462 # This should be revisited and changed to plain text
jmac70863e12018-05-16 14:53:03 +0000463 dgUserPassword: cc03e747a6afbbcbf8be7668acfebee5
Krzysztof Opasiakcc97c732020-02-25 23:31:20 +0100464 mariadb-galera:
jmac065e2ce2018-03-29 01:18:02 +0000465 service:
BorislavG1ffbd992018-04-24 07:56:27 +0000466 name: sdnc-dgbuilder
jmac065e2ce2018-03-29 01:18:02 +0000467 nodePort: "03"
468
Sylvain Desbureauxe54644e2020-05-04 11:45:16 +0200469 ingress:
470 enabled: false
471 service:
472 - baseaddr: "sdnc-dgbuilder"
473 name: "sdnc-dgbuilder"
474 port: 3000
Alexander Dehn9b797d62020-04-21 09:53:50 +0000475 - baseaddr: "sdnc-web-service"
476 name: "sdnc-web-service"
477 port: 8443
Sylvain Desbureauxe54644e2020-05-04 11:45:16 +0200478 config:
479 ssl: "redirect"
480
Alexander Dehn9b797d62020-04-21 09:53:50 +0000481
482
Alexander Dehnab86ec12020-02-05 14:38:54 +0000483# local elasticsearch cluster
484localElasticCluster: true
485elasticsearch:
Sylvain Desbureaux829344b2020-11-19 17:07:26 +0100486 nameOverride: &elasticSearchName sdnrdb
Alexander Dehnab86ec12020-02-05 14:38:54 +0000487 name: sdnrdb-cluster
Krzysztof Opasiakc6152ce2020-05-09 01:43:08 +0200488 certInitializer:
Alexander Dehnab86ec12020-02-05 14:38:54 +0000489 fqdn: "sdnc"
490 fqi_namespace: org.onap.sdnc
491 fqi: "sdnc@sdnc.onap.org"
492 service:
Sylvain Desbureaux829344b2020-11-19 17:07:26 +0100493 name: *elasticSearchName
Alexander Dehnab86ec12020-02-05 14:38:54 +0000494 master:
495 replicaCount: 3
496 # dedicatednode: "yes"
497 # working as master node only, in this case increase replicaCount for elasticsearch-data
498 # dedicatednode: "no"
499 # handles master and data node functionality
500 dedicatednode: "no"
Sylvain Desbureaux829344b2020-11-19 17:07:26 +0100501 nameOverride: *elasticSearchName
demskeq8eb56da72021-02-19 12:11:48 +0100502 cluster_name: sdnrdb-cluster
Alexander Dehn9b797d62020-04-21 09:53:50 +0000503# enable
504sdnc-web:
Alexander Dehn8789a722020-10-16 14:29:05 +0000505 enabled: true
jmac065e2ce2018-03-29 01:18:02 +0000506# default number of instances
507replicaCount: 1
508
509nodeSelector: {}
510
511affinity: {}
512
513# probe configuration parameters
514liveness:
515 initialDelaySeconds: 10
516 periodSeconds: 10
517 # necessary to disable liveness probe when setting breakpoints
518 # in debugger so K8s doesn't restart unresponsive container
519 enabled: true
520
521readiness:
522 initialDelaySeconds: 10
523 periodSeconds: 10
524
525service:
526 type: NodePort
527 name: sdnc
BorislavG1ffbd992018-04-24 07:56:27 +0000528 portName: sdnc
jmac065e2ce2018-03-29 01:18:02 +0000529 internalPort: 8181
530 internalPort2: 8101
531 internalPort3: 8080
Timoney, Dan (dt5972)c6de2692019-08-14 14:22:37 -0400532 internalPort4: 8443
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -0400533
jmac065e2ce2018-03-29 01:18:02 +0000534 #port
535 externalPort: 8282
jmac065e2ce2018-03-29 01:18:02 +0000536
537 externalPort2: 8202
jmac065e2ce2018-03-29 01:18:02 +0000538
539 externalPort3: 8280
jmac065e2ce2018-03-29 01:18:02 +0000540
jmaca68f4cb2018-05-10 22:44:19 +0000541 externalPort4: 8443
542 nodePort4: 67
543
jmac065e2ce2018-03-29 01:18:02 +0000544 clusterPort: 2550
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -0400545 clusterPort2: 2650
546 clusterPort3: 2681
547
548 geoNodePort1: 61
549 geoNodePort2: 62
550 geoNodePort3: 63
551 geoNodePort4: 64
552 geoNodePort5: 65
553 geoNodePort6: 66
jmac065e2ce2018-03-29 01:18:02 +0000554
demskeq827854662021-04-08 14:49:47 +0200555 callHomePort: 6666
556 callHomeNodePort: 66
557
jmac8d6dc962018-04-26 14:26:55 +0000558## Persist data to a persitent volume
559persistence:
560 enabled: true
561
562 ## A manually managed Persistent Volume and Claim
563 ## Requires persistence.enabled: true
564 ## If defined, PVC must be created manually before volume will be bound
565 # existingClaim:
566 volumeReclaimPolicy: Retain
567
568 ## database data Persistent Volume Storage Class
569 ## If defined, storageClassName: <storageClass>
570 ## If set to "-", storageClassName: "", which disables dynamic provisioning
571 ## If undefined (the default) or set to null, no storageClassName spec is
572 ## set, choosing the default provisioner. (gp2 on AWS, standard on
573 ## GKE, AWS & OpenStack)
574 accessMode: ReadWriteOnce
575 size: 1Gi
576 mountPath: /dockerdata-nfs
577 mountSubPath: sdnc/mdsal
Dan Timoney2ee28a52021-01-15 16:39:50 -0500578 mdsalPath: /opt/opendaylight/mdsal
demskeq8a86300a2021-02-10 09:53:33 +0100579 daeximPath: /opt/opendaylight/mdsal/daexim
Dan Timoney2ee28a52021-01-15 16:39:50 -0500580 journalPath: /opt/opendaylight/journal
581 snapshotsPath: /opt/opendaylight/snapshots
jmac8d6dc962018-04-26 14:26:55 +0000582
egernug27578332020-03-26 10:27:55 +0000583certpersistence:
584 enabled: true
585
586 ## A manually managed Persistent Volume and Claim
587 ## Requires persistence.enabled: true
588 ## If defined, PVC must be created manually before volume will be bound
589 # existingClaim:
590
591 volumeReclaimPolicy: Retain
592 accessMode: ReadWriteOnce
593 size: 50Mi
594 mountPath: /dockerdata-nfs
595 mountSubPath: sdnc/certs
596 certPath: /opt/app/osaaf
597 ##storageClass: "manual"
598
jmac065e2ce2018-03-29 01:18:02 +0000599ingress:
600 enabled: false
Lucjan Bryndza08448402019-11-27 14:26:54 +0100601 service:
Lucjan Bryndza05649652020-04-29 08:52:33 +0000602 - baseaddr: "sdnc.api"
Lucjan Bryndza08448402019-11-27 14:26:54 +0100603 name: "sdnc"
604 port: 8443
605 config:
606 ssl: "redirect"
jmac065e2ce2018-03-29 01:18:02 +0000607
toshrajbhardwaj72b5f0f2018-09-13 02:45:22 +0000608#Resource Limit flavor -By Default using small
609flavor: small
610#segregation for different envionment (Small and Large)
611
612resources:
Mandeep Khindade045712018-09-19 18:11:57 +0000613 small:
614 limits:
615 cpu: 2
616 memory: 4Gi
617 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000618 cpu: 1
619 memory: 2Gi
Mandeep Khindade045712018-09-19 18:11:57 +0000620 large:
621 limits:
622 cpu: 4
623 memory: 8Gi
624 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000625 cpu: 2
626 memory: 4Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000627 unlimited: {}