blob: f59a64f3d264fb25849ed5d214bb92c9e796cb37 [file] [log] [blame]
Mukul2b4e7532018-08-03 10:41:29 +00001# Copyright © 2017 Amdocs, Bell Canada
2# Modifications Copyright © 2018 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Mike Elliott13fed112018-02-28 08:33:33 -050016#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
Sylvain Desbureaux531d03f2020-04-22 10:37:45 +020021 centralizedLoggingEnabled: false
jmac99ff3972018-03-29 01:02:42 +000022 persistence:
23 mountPath: /dockerdata-nfs
Mike Elliott13fed112018-02-28 08:33:33 -050024
25#################################################################
Krzysztof Opasiake74ed5c2020-01-23 11:49:25 +010026# Secrets metaconfig
27#################################################################
28secrets:
29 - uid: "db-root-pass"
Krzysztof Opasiak967946c2020-02-19 01:44:30 +010030 name: '{{ include "common.release" . }}-appc-db-root-pass'
31 externalSecret: '{{ .Values.config.dbRootPassExternalSecret }}'
Krzysztof Opasiake74ed5c2020-01-23 11:49:25 +010032 type: password
Krzysztof Opasiak967946c2020-02-19 01:44:30 +010033 password: '{{ .Values.config.dbRootPass }}'
34 - uid: 'appcdb-user-creds'
35 name: '{{ include "common.release" . }}-appcdb-user-creds'
36 type: basicAuth
37 externalSecret: '{{ tpl (default "" .Values.config.appcdb.userCredentialsExternalSecret) . }}'
38 login: '{{ .Values.config.appcdb.userName }}'
39 password: '{{ .Values.config.appcdb.password }}'
40 - uid: 'sdncdb-user-creds'
41 name: '{{ include "common.release" . }}-sdncdb-user-creds'
42 type: basicAuth
43 externalSecret: '{{ tpl (default "" .Values.config.sdncdb.userCredentialsExternalSecret) . }}'
44 login: '{{ .Values.config.sdncdb.userName }}'
45 password: '{{ .Values.config.sdncdb.password }}'
46
Krzysztof Opasiake74ed5c2020-01-23 11:49:25 +010047
48#################################################################
Mike Elliott13fed112018-02-28 08:33:33 -050049# Application configuration defaults.
50#################################################################
GregSulek973bfad2018-09-19 06:48:37 -040051flavor: small
Mike Elliott13fed112018-02-28 08:33:33 -050052# application image
Taka Chof9cd2cd2020-05-23 09:27:19 -040053image: onap/appc-image:1.7.2
kerenj6ca15a72017-08-23 12:05:23 +000054pullPolicy: Always
Mike Elliott13fed112018-02-28 08:33:33 -050055
56# flag to enable debugging - application support required
57debugEnabled: false
58
Sylvain Desbureaux531d03f2020-04-22 10:37:45 +020059# log configuration
60log:
61 path: /var/log/onap
62
Mike Elliott13fed112018-02-28 08:33:33 -050063# application configuration
64config:
Krzysztof Opasiak967946c2020-02-19 01:44:30 +010065# dbRootPassExternalSecret: some secret
66# dbRootPass: password
67 appcdb:
68 # Warning: changing this config option may not work.
69 # It seems that the DB name is hardcoded.
70 dbName: appcctl
71 userName: appcctl
Krzysztof Opasiakc3365802020-04-24 19:50:48 +020072 # password: appcctl
Krzysztof Opasiak967946c2020-02-19 01:44:30 +010073 # userCredsExternalSecret: some secret
74 sdncdb:
75 # Warning: changing this config option may not work.
76 # It seems that the DB name is hardcoded.
77 dbName: sdnctl
78 userName: sdnctl
Krzysztof Opasiakf3569b82020-04-24 19:53:08 +020079 # password: gamma
Krzysztof Opasiak967946c2020-02-19 01:44:30 +010080 # userCredsExternalSecret: some secret
Taka Cho31eb2452019-06-24 21:10:50 -040081 odlUid: 100
82 odlGid: 101
Aaron Hay343e6002018-08-21 13:55:00 -040083 ansibleServiceName: appc-ansible-server
84 ansiblePort: 8000
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010085 mariadbGaleraSVCName: &appc-db appc-db
86 mariadbGaleraContName: *appc-db
Aaron Haya11a92a2018-10-29 14:17:02 -040087 enableAAF: true
88 enableClustering: false
Mike Elliott13fed112018-02-28 08:33:33 -050089 configDir: /opt/onap/appc/data/properties
90 dmaapTopic: SUCCESS
Aaron Hayafb0a092018-11-19 17:52:59 -050091 dmaapTopicEnv: AUTO
BorislavG5f3b6192018-03-25 18:12:38 +030092 logstashServiceName: log-ls
93 logstashPort: 5044
Aaron Hayd46d63f2018-11-13 00:34:05 -050094 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
Aaron Hayef1a0ec2018-04-30 01:25:41 -040095 openStackType: OpenStackProvider
96 openStackName: OpenStack
97 openStackKeyStoneUrl: http://localhost:8181/apidoc/explorer/index.html
98 openStackServiceTenantName: default
99 openStackDomain: default
100 openStackUserName: admin
Joss Armstrong32e90022018-12-17 13:16:57 +0000101 openStackEncryptedPassword: enc:LDEbHEAvTF1R
Aaron Hayd46d63f2018-11-13 00:34:05 -0500102 odlUser: admin
Patrick Bradyadd45692019-11-06 13:52:17 -0800103 dmaapServiceUrl: http://localhost:8080/publish
104 dmaapServiceUser: appc
105 dmaapServicePassword: onapappc
Mike Elliott13fed112018-02-28 08:33:33 -0500106
Aaron Hay343e6002018-08-21 13:55:00 -0400107appc-ansible-server:
Sylvain Desbureaux856fce12020-11-21 22:48:15 +0100108 enabled: true
Aaron Hay343e6002018-08-21 13:55:00 -0400109 service:
110 name: appc-ansible-server
111 internalPort: 8000
112 config:
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100113 mysqlServiceName: *appc-db
Aaron Hay343e6002018-08-21 13:55:00 -0400114
Sylvain Desbureaux856fce12020-11-21 22:48:15 +0100115appc-cdt:
116 enabled: true
117
pramod47b1b822018-08-28 15:41:45 +0000118mariadb-galera:
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100119 nameOverride: *appc-db
120 rootUser:
121 externalSecret: '{{ include "common.release" . }}-appc-db-root-pass'
Mike Elliott13fed112018-02-28 08:33:33 -0500122 service:
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100123 name: *appc-db
Mike Elliott13fed112018-02-28 08:33:33 -0500124 nfsprovisionerPrefix: appc
125 sdnctlPrefix: appc
126 persistence:
127 mountSubPath: appc/data
128 enabled: true
129 disableNfsProvisioner: true
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100130 serviceAccount:
131 nameOverride: *appc-db
Sylvain Desbureaux4d047062021-05-05 17:16:57 +0200132 replicaCount: 1
Mike Elliott13fed112018-02-28 08:33:33 -0500133
Marcin Wilke45e9fa2021-06-18 10:09:20 +0200134 mariadbConfiguration: |-
135 [client]
136 port=3306
137 socket=/opt/bitnami/mariadb/tmp/mysql.sock
138 plugin_dir=/opt/bitnami/mariadb/plugin
139
140 [mysqld]
141 lower_case_table_names = 1
142 default_storage_engine=InnoDB
143 basedir=/opt/bitnami/mariadb
144 datadir=/bitnami/mariadb/data
145 plugin_dir=/opt/bitnami/mariadb/plugin
146 tmpdir=/opt/bitnami/mariadb/tmp
147 socket=/opt/bitnami/mariadb/tmp/mysql.sock
148 pid_file=/opt/bitnami/mariadb/tmp/mysqld.pid
149 bind_address=0.0.0.0
150
151 ## Character set
152 collation_server=utf8_unicode_ci
153 init_connect='SET NAMES utf8'
154 character_set_server=utf8
155
156 ## MyISAM
157 key_buffer_size=32M
158 myisam_recover_options=FORCE,BACKUP
159
160 ## Safety
161 skip_host_cache
162 skip_name_resolve
163 max_allowed_packet=16M
164 max_connect_errors=1000000
165 sql_mode=STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_AUTO_VALUE_ON_ZERO,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE
166 sysdate_is_now=1
167
168 ## Binary Logging
169 log_bin=mysql-bin
170 expire_logs_days=14
171 # Disabling for performance per http://severalnines.com/blog/9-tips-going-production-galera-cluster-mysql
172 sync_binlog=0
173 # Required for Galera
174 binlog_format=row
175
176 ## Caches and Limits
177 tmp_table_size=32M
178 max_heap_table_size=32M
179 # Re-enabling as now works with Maria 10.1.2
180 query_cache_type=1
181 query_cache_limit=4M
182 query_cache_size=256M
183 max_connections=500
184 thread_cache_size=50
185 open_files_limit=65535
186 table_definition_cache=4096
187 table_open_cache=4096
188
189 ## InnoDB
190 innodb=FORCE
191 innodb_strict_mode=1
192 # Mandatory per https://github.com/codership/documentation/issues/25
193 innodb_autoinc_lock_mode=2
194 # Per https://www.percona.com/blog/2006/08/04/innodb-double-write/
195 innodb_doublewrite=1
196 innodb_flush_method=O_DIRECT
197 innodb_log_files_in_group=2
198 innodb_log_file_size=128M
199 innodb_flush_log_at_trx_commit=1
200 innodb_file_per_table=1
201 # 80% Memory is default reco.
202 # Need to re-evaluate when DB size grows
203 innodb_buffer_pool_size=2G
204 innodb_file_format=Barracuda
205
206 ## Logging
207 log_error=/opt/bitnami/mariadb/logs/mysqld.log
208 slow_query_log_file=/opt/bitnami/mariadb/logs/mysqld.log
209 log_queries_not_using_indexes=1
210 slow_query_log=1
211
212 ## SSL
213 ## Use extraVolumes and extraVolumeMounts to mount /certs filesystem
214 # ssl_ca=/certs/ca.pem
215 # ssl_cert=/certs/server-cert.pem
216 # ssl_key=/certs/server-key.pem
217
218 [galera]
219 wsrep_on=ON
220 wsrep_provider=/opt/bitnami/mariadb/lib/libgalera_smm.so
221 wsrep_sst_method=mariabackup
222 wsrep_slave_threads=4
223 wsrep_cluster_address=gcomm://
224 wsrep_cluster_name=galera
225 wsrep_sst_auth="root:"
226 # Enabled for performance per https://mariadb.com/kb/en/innodb-system-variables/#innodb_flush_log_at_trx_commit
227 innodb_flush_log_at_trx_commit=2
228 # MYISAM REPLICATION SUPPORT #
229 wsrep_replicate_myisam=ON
230 binlog_format=row
231 default_storage_engine=InnoDB
232 innodb_autoinc_lock_mode=2
233 transaction-isolation=READ-COMMITTED
234 wsrep_causal_reads=1
235 wsrep_sync_wait=7
236
237 [mariadb]
238 plugin_load_add=auth_pam
239
240 ## Data-at-Rest Encryption
241 ## Use extraVolumes and extraVolumeMounts to mount /encryption filesystem
242 # plugin_load_add=file_key_management
243 # file_key_management_filename=/encryption/keyfile.enc
244 # file_key_management_filekey=FILE:/encryption/keyfile.key
245 # file_key_management_encryption_algorithm=AES_CTR
246 # encrypt_binlog=ON
247 # encrypt_tmp_files=ON
248
249 ## InnoDB/XtraDB Encryption
250 # innodb_encrypt_tables=ON
251 # innodb_encrypt_temporary_tables=ON
252 # innodb_encrypt_log=ON
253 # innodb_encryption_threads=4
254 # innodb_encryption_rotate_key_age=1
255
256 ## Aria Encryption
257 # aria_encrypt_tables=ON
258 # encrypt_tmp_disk_tables=ON
259
Mike Elliott13fed112018-02-28 08:33:33 -0500260dgbuilder:
261 nameOverride: appc-dgbuilder
Dan Timoneycb0a81f2020-07-15 17:31:43 -0400262 certInitializer:
263 nameOverride: appc-dgbuilder-cert-initializer
jmac99ff3972018-03-29 01:02:42 +0000264 config:
Krzysztof Opasiak967946c2020-02-19 01:44:30 +0100265 db:
266 rootPasswordExternalSecret: '{{ include "common.release" . }}-appc-db-root-pass'
267 userCredentialsExternalSecret: '{{ include "common.release" . }}-sdncdb-user-creds'
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100268 dbPodName: *appc-db
269 dbServiceName: *appc-db
BorislavG1ffbd992018-04-24 07:56:27 +0000270 service:
271 name: appc-dgbuilder
farida azmydc9aef02021-04-07 17:07:09 +0200272 serviceAccount:
273 nameOverride: appc-dgbuilder
Sylvain Desbureauxe54644e2020-05-04 11:45:16 +0200274 ingress:
275 enabled: false
276 service:
277 - baseaddr: "appc-dgbuilder"
278 name: "appc-dgbuilder"
279 port: 3000
280 config:
281 ssl: "redirect"
282
Taka Cho96a53f72020-03-13 15:42:34 -0400283#passing value to cdt chart. value of nodePort3 will be same as appc.service.nodePort3.
Patrick Brady1a62b662018-05-30 10:56:46 -0700284appc-cdt:
Taka Cho96a53f72020-03-13 15:42:34 -0400285 nodePort3: 11
Mike Elliott13fed112018-02-28 08:33:33 -0500286# default number of instances
Roger Maitland6a069972018-05-09 18:23:58 -0400287replicaCount: 1
Mike Elliott13fed112018-02-28 08:33:33 -0500288
289nodeSelector: {}
290
291affinity: {}
292
293# probe configuration parameters
294liveness:
Taka Chofaf292a2019-04-24 09:59:09 -0400295 initialDelaySeconds: 300
296 periodSeconds: 60
Mike Elliott13fed112018-02-28 08:33:33 -0500297 # necessary to disable liveness probe when setting breakpoints
298 # in debugger so K8s doesn't restart unresponsive container
299 enabled: true
300
301readiness:
Taka Chofaf292a2019-04-24 09:59:09 -0400302 initialDelaySeconds: 300
303 periodSeconds: 60
Mike Elliott13fed112018-02-28 08:33:33 -0500304
305service:
306 type: NodePort
307 name: appc
BorislavG1ffbd992018-04-24 07:56:27 +0000308 portName: appc
Mike Elliott13fed112018-02-28 08:33:33 -0500309
Taka Cho96a53f72020-03-13 15:42:34 -0400310 internalPort: 8443
311 externalPort: 8443
312 nodePort: 30
Taka Cho3c29d5f2019-09-04 15:38:31 -0400313
Taka Cho96a53f72020-03-13 15:42:34 -0400314 externalPort2: 1830
315 nodePort2: 31
Mike Elliott13fed112018-02-28 08:33:33 -0500316 clusterPort: 2550
317
Taka Cho96a53f72020-03-13 15:42:34 -0400318 internalPort3: 9191
319 externalPort3: 9090
320 nodePort3: 11
Patrick Brady140deb92018-05-23 08:56:24 -0700321
BorislavG3dad2f42018-04-16 10:19:45 +0000322## Persist data to a persitent volume
323persistence:
324 enabled: true
325
326 ## A manually managed Persistent Volume and Claim
327 ## Requires persistence.enabled: true
328 ## If defined, PVC must be created manually before volume will be bound
329 # existingClaim:
330 volumeReclaimPolicy: Retain
331
332 ## database data Persistent Volume Storage Class
333 ## If defined, storageClassName: <storageClass>
334 ## If set to "-", storageClassName: "", which disables dynamic provisioning
335 ## If undefined (the default) or set to null, no storageClassName spec is
336 ## set, choosing the default provisioner. (gp2 on AWS, standard on
337 ## GKE, AWS & OpenStack)
338 accessMode: ReadWriteOnce
339 size: 1Gi
340 mountPath: /dockerdata-nfs
341 mountSubPath: appc/mdsal
342 mdsalPath: /opt/opendaylight/current/daexim
343
Mike Elliott13fed112018-02-28 08:33:33 -0500344ingress:
345 enabled: false
Lucjan Bryndza684487d2019-12-02 12:20:10 +0100346 service:
Lucjan Bryndza05649652020-04-29 08:52:33 +0000347 - baseaddr: "appc.api"
Lucjan Bryndza684487d2019-12-02 12:20:10 +0100348 name: "appc"
349 port: 8443
350 config:
351 ssl: "redirect"
Mike Elliott13fed112018-02-28 08:33:33 -0500352
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000353# Configure resource requests and limits
354# ref: http://kubernetes.io/docs/user-guide/compute-resources/
GregSulek973bfad2018-09-19 06:48:37 -0400355resources:
356 small:
357 limits:
358 cpu: 2
359 memory: 4Gi
360 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000361 cpu: 1
362 memory: 2Gi
GregSulek973bfad2018-09-19 06:48:37 -0400363 large:
364 limits:
365 cpu: 4
366 memory: 8Gi
367 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000368 cpu: 2
369 memory: 4Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000370 unlimited: {}