blob: a58c7b141f0da3d8de811fc35354bad1924d9a5e [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 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
jmac065e2ce2018-03-29 01:18:02 +000015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
jmac0e4f7172018-09-07 18:06:43 +000020 nodePortPrefixExt: 304
jmac065e2ce2018-03-29 01:18:02 +000021 repository: nexus3.onap.org:10001
jmac065e2ce2018-03-29 01:18:02 +000022 readinessRepository: oomk8s
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +000023 readinessImage: readiness-check:2.0.2
jmac065e2ce2018-03-29 01:18:02 +000024 loggingRepository: docker.elastic.co
25 loggingImage: beats/filebeat:5.5.0
26 persistence:
27 mountPath: /dockerdata-nfs
28
29#################################################################
30# Application configuration defaults.
31#################################################################
32# application images
33repository: nexus3.onap.org:10001
34pullPolicy: Always
Timoney, Dan (dt5972)103b69b2019-08-08 13:21:16 -040035image: onap/sdnc-image:1.6.1
jmac065e2ce2018-03-29 01:18:02 +000036
Timoney, Dan (dt5972)a3bc1a52019-06-26 16:16:52 -040037
jmac065e2ce2018-03-29 01:18:02 +000038# flag to enable debugging - application support required
39debugEnabled: false
40
41# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030042config:
Timoney, Dan (dt5972)ba4d2eb2019-05-07 13:32:42 -040043 odlUid: 100
44 odlGid: 101
jmaca68f4cb2018-05-10 22:44:19 +000045 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +000046 dbRootPassword: secretpassword
Timoney, Dan (dt5972)a3bc1a52019-06-26 16:16:52 -040047 dbSdnctlUser: sdnctl
48 dbSdnctlDatabase: sdnctl
jmac70863e12018-05-16 14:53:03 +000049 dbSdnctlPassword: gamma
jmac065e2ce2018-03-29 01:18:02 +000050 enableClustering: true
Timoney, Dan (dt5972)a3bc1a52019-06-26 16:16:52 -040051 sdncHome: /opt/onap/sdnc
jmaca68f4cb2018-05-10 22:44:19 +000052 binDir: /opt/onap/sdnc/bin
Timoney, Dan (dt5972)a3bc1a52019-06-26 16:16:52 -040053 etcDir: /opt/onap/sdnc/data
Trevor Tait567ff1e2018-05-01 16:20:54 -040054 geoEnabled: false
Neha Jain7b0d6c62018-05-17 14:34:49 -040055# if geoEnabled is set to true here, mysql.geoEnabled must be set to true
Trevor Tait567ff1e2018-05-01 16:20:54 -040056# if geoEnabled is set to true the following 3 values must be set to their proper values
57 myODLCluster: 127.0.0.1
58 peerODLCluster: 127.0.0.1
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040059 isPrimaryCluster: true
jmac065e2ce2018-03-29 01:18:02 +000060 configDir: /opt/onap/sdnc/data/properties
61 dmaapTopic: SUCCESS
jmaca68f4cb2018-05-10 22:44:19 +000062 dmaapPort: 3904
BorislavG5f3b6192018-03-25 18:12:38 +030063 logstashServiceName: log-ls
64 logstashPort: 5044
jmac7c434672018-05-11 20:14:17 +000065 ansibleServiceName: sdnc-ansible-server
66 ansiblePort: 8000
Timoney, Dan (dt5972)6819bc92019-02-12 13:30:49 -050067 javaHome: /usr/lib/jvm/java-1.8-openjdk
jmac7c434672018-05-11 20:14:17 +000068
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +000069 #local Mariadb-galera cluster
70 localDBCluster: false
71
72 #Shared mariadb-galera details
73 mariadbGalera:
74 chartName: mariadb-galera
75 serviceName: mariadb-galera
76 internalPort: 3306
77
jmac065e2ce2018-03-29 01:18:02 +000078# dependency / sub-chart configuration
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010079cds:
80 enabled: true
81
jmac065e2ce2018-03-29 01:18:02 +000082dmaap-listener:
83 nameOverride: sdnc-dmaap-listener
84 config:
85 sdncChartName: sdnc
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +000086 mysqlChartName: mariadb-galera
jmaca68f4cb2018-05-10 22:44:19 +000087 dmaapPort: 3904
88 sdncPort: 8282
jmac065e2ce2018-03-29 01:18:02 +000089 configDir: /opt/onap/sdnc/data/properties
jmaca68f4cb2018-05-10 22:44:19 +000090 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000091
92ueb-listener:
93 nameOverride: sdnc-ueb-listener
94 config:
jmaca68f4cb2018-05-10 22:44:19 +000095 sdncPort: 8282
jmac065e2ce2018-03-29 01:18:02 +000096 sdncChartName: sdnc
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +000097 mysqlChartName: mariadb-galera
jmac065e2ce2018-03-29 01:18:02 +000098 configDir: /opt/onap/sdnc/data/properties
jmaca68f4cb2018-05-10 22:44:19 +000099 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +0000100
101sdnc-portal:
102 config:
103 sdncChartName: sdnc
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +0000104 mysqlChartName: mariadb-galera
jmac065e2ce2018-03-29 01:18:02 +0000105 configDir: /opt/onap/sdnc/data/properties
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +0000106 dbRootPassword: secretpassword
jmac70863e12018-05-16 14:53:03 +0000107 dbSdnctlPassword: gamma
jmaca68f4cb2018-05-10 22:44:19 +0000108 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +0000109
jmac7c434672018-05-11 20:14:17 +0000110sdnc-ansible-server:
111 service:
112 name: sdnc-ansible-server
113 internalPort: 8000
114 config:
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +0000115 mysqlServiceName: mariadb-galera
jmac7c434672018-05-11 20:14:17 +0000116
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +0000117mariadb-galera:
jmac065e2ce2018-03-29 01:18:02 +0000118 nameOverride: sdnc-db
119 service:
120 name: sdnc-dbhost
jmacbc92d132018-04-07 03:46:12 +0000121 internalPort: 3306
jmac065e2ce2018-03-29 01:18:02 +0000122 sdnctlPrefix: sdnc
123 persistence:
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +0000124 mountSubPath: sdnc/mariadb-galera
jmac065e2ce2018-03-29 01:18:02 +0000125 enabled: true
jmac065e2ce2018-03-29 01:18:02 +0000126 replicaCount: 1
127
128dgbuilder:
129 nameOverride: sdnc-dgbuilder
130 config:
Mahendra Raghuwanshib76cb282019-04-09 10:13:07 +0000131 dbPodName: mariadb-galera
132 dbServiceName: mariadb-galera
133 dbRootPassword: secretpassword
jmac70863e12018-05-16 14:53:03 +0000134 dbSdnctlPassword: gamma
135 dgUserPassword: cc03e747a6afbbcbf8be7668acfebee5
jmac065e2ce2018-03-29 01:18:02 +0000136 service:
BorislavG1ffbd992018-04-24 07:56:27 +0000137 name: sdnc-dgbuilder
jmac065e2ce2018-03-29 01:18:02 +0000138 nodePort: "03"
139
140# default number of instances
141replicaCount: 1
142
143nodeSelector: {}
144
145affinity: {}
146
147# probe configuration parameters
148liveness:
149 initialDelaySeconds: 10
150 periodSeconds: 10
151 # necessary to disable liveness probe when setting breakpoints
152 # in debugger so K8s doesn't restart unresponsive container
153 enabled: true
154
155readiness:
156 initialDelaySeconds: 10
157 periodSeconds: 10
158
159service:
160 type: NodePort
161 name: sdnc
BorislavG1ffbd992018-04-24 07:56:27 +0000162 portName: sdnc
jmac065e2ce2018-03-29 01:18:02 +0000163 internalPort: 8181
164 internalPort2: 8101
165 internalPort3: 8080
Timoney, Dan (dt5972)c6de2692019-08-14 14:22:37 -0400166 internalPort4: 8443
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -0400167
jmac065e2ce2018-03-29 01:18:02 +0000168 #port
169 externalPort: 8282
170 nodePort: "02"
171
172 externalPort2: 8202
173 nodePort2: "08"
174
175 externalPort3: 8280
176 nodePort3: 46
177
jmaca68f4cb2018-05-10 22:44:19 +0000178 externalPort4: 8443
179 nodePort4: 67
180
jmac065e2ce2018-03-29 01:18:02 +0000181 clusterPort: 2550
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -0400182 clusterPort2: 2650
183 clusterPort3: 2681
184
185 geoNodePort1: 61
186 geoNodePort2: 62
187 geoNodePort3: 63
188 geoNodePort4: 64
189 geoNodePort5: 65
190 geoNodePort6: 66
jmac065e2ce2018-03-29 01:18:02 +0000191
jmac8d6dc962018-04-26 14:26:55 +0000192## Persist data to a persitent volume
193persistence:
194 enabled: true
195
196 ## A manually managed Persistent Volume and Claim
197 ## Requires persistence.enabled: true
198 ## If defined, PVC must be created manually before volume will be bound
199 # existingClaim:
200 volumeReclaimPolicy: Retain
201
202 ## database data Persistent Volume Storage Class
203 ## If defined, storageClassName: <storageClass>
204 ## If set to "-", storageClassName: "", which disables dynamic provisioning
205 ## If undefined (the default) or set to null, no storageClassName spec is
206 ## set, choosing the default provisioner. (gp2 on AWS, standard on
207 ## GKE, AWS & OpenStack)
208 accessMode: ReadWriteOnce
209 size: 1Gi
210 mountPath: /dockerdata-nfs
211 mountSubPath: sdnc/mdsal
212 mdsalPath: /opt/opendaylight/current/daexim
213
Rahul Tyagi44cc1ac2019-03-02 06:15:35 +0000214certpersistence:
215 enabled: true
216
217 ## A manually managed Persistent Volume and Claim
218 ## Requires persistence.enabled: true
219 ## If defined, PVC must be created manually before volume will be bound
220 # existingClaim:
221
222 volumeReclaimPolicy: Retain
223 accessMode: ReadWriteOnce
224 size: 50Mi
225 mountPath: /dockerdata-nfs
226 mountSubPath: sdnc/certs
227 certPath: /opt/opendaylight/current/certs
228 ##storageClass: "manual"
229
jmac065e2ce2018-03-29 01:18:02 +0000230ingress:
231 enabled: false
232
toshrajbhardwaj72b5f0f2018-09-13 02:45:22 +0000233#Resource Limit flavor -By Default using small
234flavor: small
235#segregation for different envionment (Small and Large)
236
237resources:
Mandeep Khindade045712018-09-19 18:11:57 +0000238 small:
239 limits:
240 cpu: 2
241 memory: 4Gi
242 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000243 cpu: 1
244 memory: 2Gi
Mandeep Khindade045712018-09-19 18:11:57 +0000245 large:
246 limits:
247 cpu: 4
248 memory: 8Gi
249 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000250 cpu: 2
251 memory: 4Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000252 unlimited: {}