blob: 89d6f7cc72301e28cf1482bac7c2248ed6409037 [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
20 repository: nexus3.onap.org:10001
jmac065e2ce2018-03-29 01:18:02 +000021 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000022 readinessImage: readiness-check:2.0.0
jmac065e2ce2018-03-29 01:18:02 +000023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25 persistence:
26 mountPath: /dockerdata-nfs
27
28#################################################################
29# Application configuration defaults.
30#################################################################
31# application images
32repository: nexus3.onap.org:10001
33pullPolicy: Always
34image: onap/sdnc-image:1.3-STAGING-latest
35
36# flag to enable debugging - application support required
37debugEnabled: false
38
39# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030040config:
jmaca68f4cb2018-05-10 22:44:19 +000041 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000042 dbRootPassword: openECOMP1.0
43 enableClustering: true
jmaca68f4cb2018-05-10 22:44:19 +000044 binDir: /opt/onap/sdnc/bin
Trevor Tait567ff1e2018-05-01 16:20:54 -040045 geoEnabled: false
Neha Jain7b0d6c62018-05-17 14:34:49 -040046# if geoEnabled is set to true here, mysql.geoEnabled must be set to true
Trevor Tait567ff1e2018-05-01 16:20:54 -040047# if geoEnabled is set to true the following 3 values must be set to their proper values
48 myODLCluster: 127.0.0.1
49 peerODLCluster: 127.0.0.1
50 isPrimaryCluster: false
jmac065e2ce2018-03-29 01:18:02 +000051 configDir: /opt/onap/sdnc/data/properties
52 dmaapTopic: SUCCESS
jmaca68f4cb2018-05-10 22:44:19 +000053 dmaapPort: 3904
BorislavG5f3b6192018-03-25 18:12:38 +030054 logstashServiceName: log-ls
55 logstashPort: 5044
jmac7c434672018-05-11 20:14:17 +000056 ansibleServiceName: sdnc-ansible-server
57 ansiblePort: 8000
58
jmac065e2ce2018-03-29 01:18:02 +000059
60# dependency / sub-chart configuration
61dmaap-listener:
62 nameOverride: sdnc-dmaap-listener
63 config:
64 sdncChartName: sdnc
65 mysqlChartName: sdnc-db
jmaca68f4cb2018-05-10 22:44:19 +000066 dmaapPort: 3904
67 sdncPort: 8282
jmac065e2ce2018-03-29 01:18:02 +000068 configDir: /opt/onap/sdnc/data/properties
jmaca68f4cb2018-05-10 22:44:19 +000069 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000070
71ueb-listener:
72 nameOverride: sdnc-ueb-listener
73 config:
jmaca68f4cb2018-05-10 22:44:19 +000074 sdncPort: 8282
jmac065e2ce2018-03-29 01:18:02 +000075 sdncChartName: sdnc
76 mysqlChartName: sdnc-db
77 configDir: /opt/onap/sdnc/data/properties
jmaca68f4cb2018-05-10 22:44:19 +000078 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000079
80sdnc-portal:
81 config:
82 sdncChartName: sdnc
83 mysqlChartName: sdnc-db
84 configDir: /opt/onap/sdnc/data/properties
85 dbRootPassword: openECOMP1.0
jmaca68f4cb2018-05-10 22:44:19 +000086 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000087
jmac7c434672018-05-11 20:14:17 +000088sdnc-ansible-server:
89 service:
90 name: sdnc-ansible-server
91 internalPort: 8000
92 config:
93 mysqlServiceName: sdnc-dbhost
94
jmac065e2ce2018-03-29 01:18:02 +000095mysql:
96 nameOverride: sdnc-db
97 service:
98 name: sdnc-dbhost
jmacbc92d132018-04-07 03:46:12 +000099 internalPort: 3306
jmac065e2ce2018-03-29 01:18:02 +0000100 nfsprovisionerPrefix: sdnc
101 sdnctlPrefix: sdnc
102 persistence:
Mohammadreza Pasandidehcffec6d2018-05-08 17:42:11 -0400103 mountSubPath: sdnc/mysql
jmac065e2ce2018-03-29 01:18:02 +0000104 enabled: true
Jerome Douceraindee57fd2018-04-13 12:24:53 -0400105 disableNfsProvisioner: true
jmac065e2ce2018-03-29 01:18:02 +0000106 replicaCount: 1
Neha Jain7b0d6c62018-05-17 14:34:49 -0400107 geoEnabled: false
jmac065e2ce2018-03-29 01:18:02 +0000108
109dgbuilder:
110 nameOverride: sdnc-dgbuilder
111 config:
112 dbPodName: sdnc-db
113 dbServiceName: sdnc-dbhost
114 dbRootPassword: openECOMP1.0
115 service:
BorislavG1ffbd992018-04-24 07:56:27 +0000116 name: sdnc-dgbuilder
jmac065e2ce2018-03-29 01:18:02 +0000117 nodePort: "03"
118
119# default number of instances
120replicaCount: 1
121
122nodeSelector: {}
123
124affinity: {}
125
126# probe configuration parameters
127liveness:
128 initialDelaySeconds: 10
129 periodSeconds: 10
130 # necessary to disable liveness probe when setting breakpoints
131 # in debugger so K8s doesn't restart unresponsive container
132 enabled: true
133
134readiness:
135 initialDelaySeconds: 10
136 periodSeconds: 10
137
138service:
139 type: NodePort
140 name: sdnc
BorislavG1ffbd992018-04-24 07:56:27 +0000141 portName: sdnc
jmac065e2ce2018-03-29 01:18:02 +0000142 internalPort: 8181
143 internalPort2: 8101
144 internalPort3: 8080
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -0400145 internalPort4: 2550
146
jmac065e2ce2018-03-29 01:18:02 +0000147 #port
148 externalPort: 8282
149 nodePort: "02"
150
151 externalPort2: 8202
152 nodePort2: "08"
153
154 externalPort3: 8280
155 nodePort3: 46
156
jmaca68f4cb2018-05-10 22:44:19 +0000157 externalPort4: 8443
158 nodePort4: 67
159
jmac065e2ce2018-03-29 01:18:02 +0000160 clusterPort: 2550
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -0400161 clusterPort2: 2650
162 clusterPort3: 2681
163
164 geoNodePort1: 61
165 geoNodePort2: 62
166 geoNodePort3: 63
167 geoNodePort4: 64
168 geoNodePort5: 65
169 geoNodePort6: 66
jmac065e2ce2018-03-29 01:18:02 +0000170
jmac8d6dc962018-04-26 14:26:55 +0000171## Persist data to a persitent volume
172persistence:
173 enabled: true
174
175 ## A manually managed Persistent Volume and Claim
176 ## Requires persistence.enabled: true
177 ## If defined, PVC must be created manually before volume will be bound
178 # existingClaim:
179 volumeReclaimPolicy: Retain
180
181 ## database data Persistent Volume Storage Class
182 ## If defined, storageClassName: <storageClass>
183 ## If set to "-", storageClassName: "", which disables dynamic provisioning
184 ## If undefined (the default) or set to null, no storageClassName spec is
185 ## set, choosing the default provisioner. (gp2 on AWS, standard on
186 ## GKE, AWS & OpenStack)
187 accessMode: ReadWriteOnce
188 size: 1Gi
189 mountPath: /dockerdata-nfs
190 mountSubPath: sdnc/mdsal
191 mdsalPath: /opt/opendaylight/current/daexim
192
jmac065e2ce2018-03-29 01:18:02 +0000193ingress:
194 enabled: false
195
196resources: {}
197#resources:
198# limits:
199# cpu: 2
200# memory: 4Gi
201# requests:
202# cpu: 2
203# memory: 4Gi