Fix Geo Config
[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-STAGING-latest
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 the following 3 values must be set to their proper values
47   myODLCluster: 127.0.0.1
48   peerODLCluster: 127.0.0.1
49   isPrimaryCluster: false
50   configDir: /opt/onap/sdnc/data/properties
51   dmaapTopic: SUCCESS
52   dmaapPort: 3904
53   logstashServiceName: log-ls
54   logstashPort: 5044
55
56 # dependency / sub-chart configuration
57 dmaap-listener:
58   nameOverride: sdnc-dmaap-listener
59   config:
60     sdncChartName: sdnc
61     mysqlChartName: sdnc-db
62     dmaapPort: 3904
63     sdncPort: 8282
64     configDir: /opt/onap/sdnc/data/properties
65     odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
66
67 ueb-listener:
68   nameOverride: sdnc-ueb-listener
69   config:
70     sdncPort: 8282
71     sdncChartName: sdnc
72     mysqlChartName: sdnc-db
73     configDir: /opt/onap/sdnc/data/properties
74     odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
75
76 sdnc-portal:
77   config:
78     sdncChartName: sdnc
79     mysqlChartName: sdnc-db
80     configDir: /opt/onap/sdnc/data/properties
81     dbRootPassword: openECOMP1.0
82     odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
83
84 mysql:
85   nameOverride: sdnc-db
86   service:
87     name: sdnc-dbhost
88     internalPort: 3306
89   nfsprovisionerPrefix: sdnc
90   sdnctlPrefix: sdnc
91   persistence:
92     mountSubPath: sdnc/data
93     enabled: true
94   disableNfsProvisioner: true
95   replicaCount: 1
96
97 dgbuilder:
98   nameOverride: sdnc-dgbuilder
99   config:
100     dbPodName: sdnc-db
101     dbServiceName: sdnc-dbhost
102     dbRootPassword: openECOMP1.0
103   service:
104     name: sdnc-dgbuilder
105     nodePort: "03"
106
107 # default number of instances
108 replicaCount: 1
109
110 nodeSelector: {}
111
112 affinity: {}
113
114 # probe configuration parameters
115 liveness:
116   initialDelaySeconds: 10
117   periodSeconds: 10
118   # necessary to disable liveness probe when setting breakpoints
119   # in debugger so K8s doesn't restart unresponsive container
120   enabled: true
121
122 readiness:
123   initialDelaySeconds: 10
124   periodSeconds: 10
125
126 service:
127   type: NodePort
128   name: sdnc
129   portName: sdnc
130   internalPort: 8181
131   internalPort2: 8101
132   internalPort3: 8080
133   internalPort4: 2550
134
135   #port
136   externalPort: 8282
137   nodePort: "02"
138
139   externalPort2: 8202
140   nodePort2: "08"
141
142   externalPort3: 8280
143   nodePort3: 46
144
145   externalPort4: 8443
146   nodePort4: 67
147
148   clusterPort: 2550
149   clusterPort2: 2650
150   clusterPort3: 2681
151
152   geoNodePort1: 61
153   geoNodePort2: 62
154   geoNodePort3: 63
155   geoNodePort4: 64
156   geoNodePort5: 65
157   geoNodePort6: 66
158
159 ## Persist data to a persitent volume
160 persistence:
161   enabled: true
162
163   ## A manually managed Persistent Volume and Claim
164   ## Requires persistence.enabled: true
165   ## If defined, PVC must be created manually before volume will be bound
166   # existingClaim:
167   volumeReclaimPolicy: Retain
168
169   ## database data Persistent Volume Storage Class
170   ## If defined, storageClassName: <storageClass>
171   ## If set to "-", storageClassName: "", which disables dynamic provisioning
172   ## If undefined (the default) or set to null, no storageClassName spec is
173   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
174   ##   GKE, AWS & OpenStack)
175   accessMode: ReadWriteOnce
176   size: 1Gi
177   mountPath: /dockerdata-nfs
178   mountSubPath: sdnc/mdsal
179   mdsalPath: /opt/opendaylight/current/daexim
180
181 ingress:
182   enabled: false
183
184 resources: {}
185 #resources:
186 #  limits:
187 #    cpu: 2
188 #    memory: 4Gi
189 #  requests:
190 #    cpu: 2
191 #    memory: 4Gi