blob: db47f2017260d0e625c39fb1cac86f57acaadac5 [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
BorislavG3d6f9372018-04-15 11:55:39 +000023 readinessImage: readiness-check:2.0.0
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)fe01ffd2019-01-10 12:54:07 -050035image: onap/sdnc-image:1.4.4
jmac065e2ce2018-03-29 01:18:02 +000036
37# flag to enable debugging - application support required
38debugEnabled: false
39
40# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030041config:
jmaca68f4cb2018-05-10 22:44:19 +000042 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000043 dbRootPassword: openECOMP1.0
jmac70863e12018-05-16 14:53:03 +000044 dbSdnctlPassword: gamma
jmac065e2ce2018-03-29 01:18:02 +000045 enableClustering: true
jmaca68f4cb2018-05-10 22:44:19 +000046 binDir: /opt/onap/sdnc/bin
Trevor Tait567ff1e2018-05-01 16:20:54 -040047 geoEnabled: false
Neha Jain7b0d6c62018-05-17 14:34:49 -040048# if geoEnabled is set to true here, mysql.geoEnabled must be set to true
Trevor Tait567ff1e2018-05-01 16:20:54 -040049# if geoEnabled is set to true the following 3 values must be set to their proper values
50 myODLCluster: 127.0.0.1
51 peerODLCluster: 127.0.0.1
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040052 isPrimaryCluster: true
jmac065e2ce2018-03-29 01:18:02 +000053 configDir: /opt/onap/sdnc/data/properties
54 dmaapTopic: SUCCESS
jmaca68f4cb2018-05-10 22:44:19 +000055 dmaapPort: 3904
BorislavG5f3b6192018-03-25 18:12:38 +030056 logstashServiceName: log-ls
57 logstashPort: 5044
jmac7c434672018-05-11 20:14:17 +000058 ansibleServiceName: sdnc-ansible-server
59 ansiblePort: 8000
60
jmac065e2ce2018-03-29 01:18:02 +000061# dependency / sub-chart configuration
62dmaap-listener:
63 nameOverride: sdnc-dmaap-listener
64 config:
65 sdncChartName: sdnc
66 mysqlChartName: sdnc-db
jmaca68f4cb2018-05-10 22:44:19 +000067 dmaapPort: 3904
68 sdncPort: 8282
jmac065e2ce2018-03-29 01:18:02 +000069 configDir: /opt/onap/sdnc/data/properties
jmaca68f4cb2018-05-10 22:44:19 +000070 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000071
72ueb-listener:
73 nameOverride: sdnc-ueb-listener
74 config:
jmaca68f4cb2018-05-10 22:44:19 +000075 sdncPort: 8282
jmac065e2ce2018-03-29 01:18:02 +000076 sdncChartName: sdnc
77 mysqlChartName: sdnc-db
78 configDir: /opt/onap/sdnc/data/properties
jmaca68f4cb2018-05-10 22:44:19 +000079 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000080
81sdnc-portal:
82 config:
83 sdncChartName: sdnc
84 mysqlChartName: sdnc-db
85 configDir: /opt/onap/sdnc/data/properties
86 dbRootPassword: openECOMP1.0
jmac70863e12018-05-16 14:53:03 +000087 dbSdnctlPassword: gamma
jmaca68f4cb2018-05-10 22:44:19 +000088 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000089
jmac7c434672018-05-11 20:14:17 +000090sdnc-ansible-server:
91 service:
92 name: sdnc-ansible-server
93 internalPort: 8000
94 config:
95 mysqlServiceName: sdnc-dbhost
96
jmac065e2ce2018-03-29 01:18:02 +000097mysql:
98 nameOverride: sdnc-db
99 service:
100 name: sdnc-dbhost
jmacbc92d132018-04-07 03:46:12 +0000101 internalPort: 3306
jmac065e2ce2018-03-29 01:18:02 +0000102 nfsprovisionerPrefix: sdnc
103 sdnctlPrefix: sdnc
104 persistence:
Mohammadreza Pasandidehcffec6d2018-05-08 17:42:11 -0400105 mountSubPath: sdnc/mysql
jmac065e2ce2018-03-29 01:18:02 +0000106 enabled: true
Jerome Douceraindee57fd2018-04-13 12:24:53 -0400107 disableNfsProvisioner: true
jmac065e2ce2018-03-29 01:18:02 +0000108 replicaCount: 1
Neha Jain7b0d6c62018-05-17 14:34:49 -0400109 geoEnabled: false
jmac065e2ce2018-03-29 01:18:02 +0000110
111dgbuilder:
112 nameOverride: sdnc-dgbuilder
113 config:
114 dbPodName: sdnc-db
115 dbServiceName: sdnc-dbhost
116 dbRootPassword: openECOMP1.0
jmac70863e12018-05-16 14:53:03 +0000117 dbSdnctlPassword: gamma
118 dgUserPassword: cc03e747a6afbbcbf8be7668acfebee5
jmac065e2ce2018-03-29 01:18:02 +0000119 service:
BorislavG1ffbd992018-04-24 07:56:27 +0000120 name: sdnc-dgbuilder
jmac065e2ce2018-03-29 01:18:02 +0000121 nodePort: "03"
122
123# default number of instances
124replicaCount: 1
125
126nodeSelector: {}
127
128affinity: {}
129
130# probe configuration parameters
131liveness:
132 initialDelaySeconds: 10
133 periodSeconds: 10
134 # necessary to disable liveness probe when setting breakpoints
135 # in debugger so K8s doesn't restart unresponsive container
136 enabled: true
137
138readiness:
139 initialDelaySeconds: 10
140 periodSeconds: 10
141
142service:
143 type: NodePort
144 name: sdnc
BorislavG1ffbd992018-04-24 07:56:27 +0000145 portName: sdnc
jmac065e2ce2018-03-29 01:18:02 +0000146 internalPort: 8181
147 internalPort2: 8101
148 internalPort3: 8080
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -0400149 internalPort4: 2550
150
jmac065e2ce2018-03-29 01:18:02 +0000151 #port
152 externalPort: 8282
153 nodePort: "02"
154
155 externalPort2: 8202
156 nodePort2: "08"
157
158 externalPort3: 8280
159 nodePort3: 46
160
jmaca68f4cb2018-05-10 22:44:19 +0000161 externalPort4: 8443
162 nodePort4: 67
163
jmac065e2ce2018-03-29 01:18:02 +0000164 clusterPort: 2550
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -0400165 clusterPort2: 2650
166 clusterPort3: 2681
167
168 geoNodePort1: 61
169 geoNodePort2: 62
170 geoNodePort3: 63
171 geoNodePort4: 64
172 geoNodePort5: 65
173 geoNodePort6: 66
jmac065e2ce2018-03-29 01:18:02 +0000174
jmac8d6dc962018-04-26 14:26:55 +0000175## Persist data to a persitent volume
176persistence:
177 enabled: true
178
179 ## A manually managed Persistent Volume and Claim
180 ## Requires persistence.enabled: true
181 ## If defined, PVC must be created manually before volume will be bound
182 # existingClaim:
183 volumeReclaimPolicy: Retain
184
185 ## database data Persistent Volume Storage Class
186 ## If defined, storageClassName: <storageClass>
187 ## If set to "-", storageClassName: "", which disables dynamic provisioning
188 ## If undefined (the default) or set to null, no storageClassName spec is
189 ## set, choosing the default provisioner. (gp2 on AWS, standard on
190 ## GKE, AWS & OpenStack)
191 accessMode: ReadWriteOnce
192 size: 1Gi
193 mountPath: /dockerdata-nfs
194 mountSubPath: sdnc/mdsal
195 mdsalPath: /opt/opendaylight/current/daexim
196
jmac065e2ce2018-03-29 01:18:02 +0000197ingress:
198 enabled: false
199
toshrajbhardwaj72b5f0f2018-09-13 02:45:22 +0000200#Resource Limit flavor -By Default using small
201flavor: small
202#segregation for different envionment (Small and Large)
203
204resources:
Mandeep Khindade045712018-09-19 18:11:57 +0000205 small:
206 limits:
207 cpu: 2
208 memory: 4Gi
209 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000210 cpu: 1
211 memory: 2Gi
Mandeep Khindade045712018-09-19 18:11:57 +0000212 large:
213 limits:
214 cpu: 4
215 memory: 8Gi
216 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000217 cpu: 2
218 memory: 4Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000219 unlimited: {}