blob: 92c9985c35e4fa142eaaf73a4fb6836de58ac4d9 [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
pramod47b1b822018-08-28 15:41:45 +000085 mariadbGaleraSVCName: appc-dbhost
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:
113 mysqlServiceName: appc-dbhost
114
Sylvain Desbureaux856fce12020-11-21 22:48:15 +0100115appc-cdt:
116 enabled: true
117
pramod47b1b822018-08-28 15:41:45 +0000118mariadb-galera:
Mike Elliott13fed112018-02-28 08:33:33 -0500119 nameOverride: appc-db
Krzysztof Opasiak967946c2020-02-19 01:44:30 +0100120 config:
121 mariadbRootPasswordExternalSecret: '{{ include "common.release" . }}-appc-db-root-pass'
Mike Elliott13fed112018-02-28 08:33:33 -0500122 service:
123 name: appc-dbhost
Mike Elliott4a9f4352018-09-13 09:47:13 -0400124 portName: appc-dbhost
Mike Elliott13fed112018-02-28 08:33:33 -0500125 nfsprovisionerPrefix: appc
126 sdnctlPrefix: appc
127 persistence:
128 mountSubPath: appc/data
129 enabled: true
130 disableNfsProvisioner: true
131
132dgbuilder:
133 nameOverride: appc-dgbuilder
Dan Timoneycb0a81f2020-07-15 17:31:43 -0400134 certInitializer:
135 nameOverride: appc-dgbuilder-cert-initializer
jmac99ff3972018-03-29 01:02:42 +0000136 config:
Krzysztof Opasiak967946c2020-02-19 01:44:30 +0100137 db:
138 rootPasswordExternalSecret: '{{ include "common.release" . }}-appc-db-root-pass'
139 userCredentialsExternalSecret: '{{ include "common.release" . }}-sdncdb-user-creds'
jmac99ff3972018-03-29 01:02:42 +0000140 dbPodName: appc-db
141 dbServiceName: appc-dbhost
BorislavG1ffbd992018-04-24 07:56:27 +0000142 service:
143 name: appc-dgbuilder
mayankg270341a66142018-06-06 07:53:35 +0000144
Sylvain Desbureauxe54644e2020-05-04 11:45:16 +0200145 ingress:
146 enabled: false
147 service:
148 - baseaddr: "appc-dgbuilder"
149 name: "appc-dgbuilder"
150 port: 3000
151 config:
152 ssl: "redirect"
153
Taka Cho96a53f72020-03-13 15:42:34 -0400154#passing value to cdt chart. value of nodePort3 will be same as appc.service.nodePort3.
Patrick Brady1a62b662018-05-30 10:56:46 -0700155appc-cdt:
Taka Cho96a53f72020-03-13 15:42:34 -0400156 nodePort3: 11
Mike Elliott13fed112018-02-28 08:33:33 -0500157# default number of instances
Roger Maitland6a069972018-05-09 18:23:58 -0400158replicaCount: 1
Mike Elliott13fed112018-02-28 08:33:33 -0500159
160nodeSelector: {}
161
162affinity: {}
163
164# probe configuration parameters
165liveness:
Taka Chofaf292a2019-04-24 09:59:09 -0400166 initialDelaySeconds: 300
167 periodSeconds: 60
Mike Elliott13fed112018-02-28 08:33:33 -0500168 # necessary to disable liveness probe when setting breakpoints
169 # in debugger so K8s doesn't restart unresponsive container
170 enabled: true
171
172readiness:
Taka Chofaf292a2019-04-24 09:59:09 -0400173 initialDelaySeconds: 300
174 periodSeconds: 60
Mike Elliott13fed112018-02-28 08:33:33 -0500175
176service:
177 type: NodePort
178 name: appc
BorislavG1ffbd992018-04-24 07:56:27 +0000179 portName: appc
Mike Elliott13fed112018-02-28 08:33:33 -0500180
Taka Cho96a53f72020-03-13 15:42:34 -0400181 internalPort: 8443
182 externalPort: 8443
183 nodePort: 30
Taka Cho3c29d5f2019-09-04 15:38:31 -0400184
Taka Cho96a53f72020-03-13 15:42:34 -0400185 externalPort2: 1830
186 nodePort2: 31
Mike Elliott13fed112018-02-28 08:33:33 -0500187 clusterPort: 2550
188
Taka Cho96a53f72020-03-13 15:42:34 -0400189 internalPort3: 9191
190 externalPort3: 9090
191 nodePort3: 11
Patrick Brady140deb92018-05-23 08:56:24 -0700192
BorislavG3dad2f42018-04-16 10:19:45 +0000193## Persist data to a persitent volume
194persistence:
195 enabled: true
196
197 ## A manually managed Persistent Volume and Claim
198 ## Requires persistence.enabled: true
199 ## If defined, PVC must be created manually before volume will be bound
200 # existingClaim:
201 volumeReclaimPolicy: Retain
202
203 ## database data Persistent Volume Storage Class
204 ## If defined, storageClassName: <storageClass>
205 ## If set to "-", storageClassName: "", which disables dynamic provisioning
206 ## If undefined (the default) or set to null, no storageClassName spec is
207 ## set, choosing the default provisioner. (gp2 on AWS, standard on
208 ## GKE, AWS & OpenStack)
209 accessMode: ReadWriteOnce
210 size: 1Gi
211 mountPath: /dockerdata-nfs
212 mountSubPath: appc/mdsal
213 mdsalPath: /opt/opendaylight/current/daexim
214
Mike Elliott13fed112018-02-28 08:33:33 -0500215ingress:
216 enabled: false
Lucjan Bryndza684487d2019-12-02 12:20:10 +0100217 service:
Lucjan Bryndza05649652020-04-29 08:52:33 +0000218 - baseaddr: "appc.api"
Lucjan Bryndza684487d2019-12-02 12:20:10 +0100219 name: "appc"
220 port: 8443
221 config:
222 ssl: "redirect"
Mike Elliott13fed112018-02-28 08:33:33 -0500223
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000224# Configure resource requests and limits
225# ref: http://kubernetes.io/docs/user-guide/compute-resources/
GregSulek973bfad2018-09-19 06:48:37 -0400226resources:
227 small:
228 limits:
229 cpu: 2
230 memory: 4Gi
231 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000232 cpu: 1
233 memory: 2Gi
GregSulek973bfad2018-09-19 06:48:37 -0400234 large:
235 limits:
236 cpu: 4
237 memory: 8Gi
238 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000239 cpu: 2
240 memory: 4Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000241 unlimited: {}