Sync OOM docker versions with docker-manifest.csv
[oom.git] / kubernetes / sdnc / values.yaml
1 # 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
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   repository: nexus3.onap.org:10001
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.0
23   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
32 repository: nexus3.onap.org:10001
33 pullPolicy: Always
34 image: onap/sdnc-image:1.3.4
35
36 # flag to enable debugging - application support required
37 debugEnabled: false
38
39 # application configuration
40 config:
41   odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
42   dbRootPassword: openECOMP1.0
43   enableClustering: true
44   binDir: /opt/onap/sdnc/bin
45   geoEnabled: false
46 # if geoEnabled is set to true here, mysql.geoEnabled must be set to true
47 # 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
51   configDir: /opt/onap/sdnc/data/properties
52   dmaapTopic: SUCCESS
53   dmaapPort: 3904
54   logstashServiceName: log-ls
55   logstashPort: 5044
56   ansibleServiceName: sdnc-ansible-server
57   ansiblePort: 8000
58
59
60 # dependency / sub-chart configuration
61 dmaap-listener:
62   nameOverride: sdnc-dmaap-listener
63   config:
64     sdncChartName: sdnc
65     mysqlChartName: sdnc-db
66     dmaapPort: 3904
67     sdncPort: 8282
68     configDir: /opt/onap/sdnc/data/properties
69     odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
70
71 ueb-listener:
72   nameOverride: sdnc-ueb-listener
73   config:
74     sdncPort: 8282
75     sdncChartName: sdnc
76     mysqlChartName: sdnc-db
77     configDir: /opt/onap/sdnc/data/properties
78     odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
79
80 sdnc-portal:
81   config:
82     sdncChartName: sdnc
83     mysqlChartName: sdnc-db
84     configDir: /opt/onap/sdnc/data/properties
85     dbRootPassword: openECOMP1.0
86     odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
87
88 sdnc-ansible-server:
89   service:
90     name: sdnc-ansible-server
91     internalPort: 8000
92   config:
93     mysqlServiceName: sdnc-dbhost
94
95 mysql:
96   nameOverride: sdnc-db
97   service:
98     name: sdnc-dbhost
99     internalPort: 3306
100   nfsprovisionerPrefix: sdnc
101   sdnctlPrefix: sdnc
102   persistence:
103     mountSubPath: sdnc/mysql
104     enabled: true
105   disableNfsProvisioner: true
106   replicaCount: 1
107   geoEnabled: false
108
109 dgbuilder:
110   nameOverride: sdnc-dgbuilder
111   config:
112     dbPodName: sdnc-db
113     dbServiceName: sdnc-dbhost
114     dbRootPassword: openECOMP1.0
115   service:
116     name: sdnc-dgbuilder
117     nodePort: "03"
118
119 # default number of instances
120 replicaCount: 1
121
122 nodeSelector: {}
123
124 affinity: {}
125
126 # probe configuration parameters
127 liveness:
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
134 readiness:
135   initialDelaySeconds: 10
136   periodSeconds: 10
137
138 service:
139   type: NodePort
140   name: sdnc
141   portName: sdnc
142   internalPort: 8181
143   internalPort2: 8101
144   internalPort3: 8080
145   internalPort4: 2550
146
147   #port
148   externalPort: 8282
149   nodePort: "02"
150
151   externalPort2: 8202
152   nodePort2: "08"
153
154   externalPort3: 8280
155   nodePort3: 46
156
157   externalPort4: 8443
158   nodePort4: 67
159
160   clusterPort: 2550
161   clusterPort2: 2650
162   clusterPort3: 2681
163
164   geoNodePort1: 61
165   geoNodePort2: 62
166   geoNodePort3: 63
167   geoNodePort4: 64
168   geoNodePort5: 65
169   geoNodePort6: 66
170
171 ## Persist data to a persitent volume
172 persistence:
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
193 ingress:
194   enabled: false
195
196 resources: {}
197 #resources:
198 #  limits:
199 #    cpu: 2
200 #    memory: 4Gi
201 #  requests:
202 #    cpu: 2
203 #    memory: 4Gi