blob: f077f94bb0cfbde62bc461b9b9dc2e4a9b4d9f1a [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
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -040039geoEnabled: false
40
jmac065e2ce2018-03-29 01:18:02 +000041# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030042config:
jmaca68f4cb2018-05-10 22:44:19 +000043 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000044 dbRootPassword: openECOMP1.0
45 enableClustering: true
jmaca68f4cb2018-05-10 22:44:19 +000046 binDir: /opt/onap/sdnc/bin
jmac065e2ce2018-03-29 01:18:02 +000047 configDir: /opt/onap/sdnc/data/properties
48 dmaapTopic: SUCCESS
jmaca68f4cb2018-05-10 22:44:19 +000049 dmaapPort: 3904
BorislavG5f3b6192018-03-25 18:12:38 +030050 logstashServiceName: log-ls
51 logstashPort: 5044
jmac065e2ce2018-03-29 01:18:02 +000052
53# dependency / sub-chart configuration
54dmaap-listener:
55 nameOverride: sdnc-dmaap-listener
56 config:
57 sdncChartName: sdnc
58 mysqlChartName: sdnc-db
jmaca68f4cb2018-05-10 22:44:19 +000059 dmaapPort: 3904
60 sdncPort: 8282
jmac065e2ce2018-03-29 01:18:02 +000061 configDir: /opt/onap/sdnc/data/properties
jmaca68f4cb2018-05-10 22:44:19 +000062 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000063
64ueb-listener:
65 nameOverride: sdnc-ueb-listener
66 config:
jmaca68f4cb2018-05-10 22:44:19 +000067 sdncPort: 8282
jmac065e2ce2018-03-29 01:18:02 +000068 sdncChartName: sdnc
69 mysqlChartName: sdnc-db
70 configDir: /opt/onap/sdnc/data/properties
jmaca68f4cb2018-05-10 22:44:19 +000071 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000072
73sdnc-portal:
74 config:
75 sdncChartName: sdnc
76 mysqlChartName: sdnc-db
77 configDir: /opt/onap/sdnc/data/properties
78 dbRootPassword: openECOMP1.0
jmaca68f4cb2018-05-10 22:44:19 +000079 odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
jmac065e2ce2018-03-29 01:18:02 +000080
81mysql:
82 nameOverride: sdnc-db
83 service:
84 name: sdnc-dbhost
jmacbc92d132018-04-07 03:46:12 +000085 internalPort: 3306
jmac065e2ce2018-03-29 01:18:02 +000086 nfsprovisionerPrefix: sdnc
87 sdnctlPrefix: sdnc
88 persistence:
89 mountSubPath: sdnc/data
90 enabled: true
Jerome Douceraindee57fd2018-04-13 12:24:53 -040091 disableNfsProvisioner: true
jmac065e2ce2018-03-29 01:18:02 +000092 replicaCount: 1
93
94dgbuilder:
95 nameOverride: sdnc-dgbuilder
96 config:
97 dbPodName: sdnc-db
98 dbServiceName: sdnc-dbhost
99 dbRootPassword: openECOMP1.0
100 service:
BorislavG1ffbd992018-04-24 07:56:27 +0000101 name: sdnc-dgbuilder
jmac065e2ce2018-03-29 01:18:02 +0000102 nodePort: "03"
103
104# default number of instances
105replicaCount: 1
106
107nodeSelector: {}
108
109affinity: {}
110
111# probe configuration parameters
112liveness:
113 initialDelaySeconds: 10
114 periodSeconds: 10
115 # necessary to disable liveness probe when setting breakpoints
116 # in debugger so K8s doesn't restart unresponsive container
117 enabled: true
118
119readiness:
120 initialDelaySeconds: 10
121 periodSeconds: 10
122
123service:
124 type: NodePort
125 name: sdnc
BorislavG1ffbd992018-04-24 07:56:27 +0000126 portName: sdnc
jmac065e2ce2018-03-29 01:18:02 +0000127 internalPort: 8181
128 internalPort2: 8101
129 internalPort3: 8080
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -0400130 internalPort4: 2550
131
jmac065e2ce2018-03-29 01:18:02 +0000132 #port
133 externalPort: 8282
134 nodePort: "02"
135
136 externalPort2: 8202
137 nodePort2: "08"
138
139 externalPort3: 8280
140 nodePort3: 46
141
jmaca68f4cb2018-05-10 22:44:19 +0000142 externalPort4: 8443
143 nodePort4: 67
144
jmac065e2ce2018-03-29 01:18:02 +0000145 clusterPort: 2550
Mohammadreza Pasandidehb756fb72018-04-03 10:06:45 -0400146 clusterPort2: 2650
147 clusterPort3: 2681
148
149 geoNodePort1: 61
150 geoNodePort2: 62
151 geoNodePort3: 63
152 geoNodePort4: 64
153 geoNodePort5: 65
154 geoNodePort6: 66
jmac065e2ce2018-03-29 01:18:02 +0000155
jmac8d6dc962018-04-26 14:26:55 +0000156## Persist data to a persitent volume
157persistence:
158 enabled: true
159
160 ## A manually managed Persistent Volume and Claim
161 ## Requires persistence.enabled: true
162 ## If defined, PVC must be created manually before volume will be bound
163 # existingClaim:
164 volumeReclaimPolicy: Retain
165
166 ## database data Persistent Volume Storage Class
167 ## If defined, storageClassName: <storageClass>
168 ## If set to "-", storageClassName: "", which disables dynamic provisioning
169 ## If undefined (the default) or set to null, no storageClassName spec is
170 ## set, choosing the default provisioner. (gp2 on AWS, standard on
171 ## GKE, AWS & OpenStack)
172 accessMode: ReadWriteOnce
173 size: 1Gi
174 mountPath: /dockerdata-nfs
175 mountSubPath: sdnc/mdsal
176 mdsalPath: /opt/opendaylight/current/daexim
177
jmac065e2ce2018-03-29 01:18:02 +0000178ingress:
179 enabled: false
180
181resources: {}
182#resources:
183# limits:
184# cpu: 2
185# memory: 4Gi
186# requests:
187# cpu: 2
188# memory: 4Gi