vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 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 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 15 | ################################################################# |
| 16 | # Global configuration defaults. |
| 17 | ################################################################# |
| 18 | global: |
| 19 | nodePortPrefix: 302 |
jmac | 0e4f717 | 2018-09-07 18:06:43 +0000 | [diff] [blame] | 20 | nodePortPrefixExt: 304 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 21 | repository: nexus3.onap.org:10001 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 22 | readinessRepository: oomk8s |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 23 | readinessImage: readiness-check:2.0.2 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 24 | 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 |
| 33 | repository: nexus3.onap.org:10001 |
| 34 | pullPolicy: Always |
Timoney, Dan (dt5972) | c153af0 | 2019-05-28 11:39:06 -0400 | [diff] [blame] | 35 | image: onap/sdnc-image:1.5.2 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 36 | |
| 37 | # flag to enable debugging - application support required |
| 38 | debugEnabled: false |
| 39 | |
| 40 | # application configuration |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 41 | config: |
Timoney, Dan (dt5972) | ba4d2eb | 2019-05-07 13:32:42 -0400 | [diff] [blame] | 42 | odlUid: 100 |
| 43 | odlGid: 101 |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 44 | odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 45 | dbRootPassword: secretpassword |
jmac | 70863e1 | 2018-05-16 14:53:03 +0000 | [diff] [blame] | 46 | dbSdnctlPassword: gamma |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 47 | enableClustering: true |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 48 | binDir: /opt/onap/sdnc/bin |
Trevor Tait | 567ff1e | 2018-05-01 16:20:54 -0400 | [diff] [blame] | 49 | geoEnabled: false |
Neha Jain | 7b0d6c6 | 2018-05-17 14:34:49 -0400 | [diff] [blame] | 50 | # if geoEnabled is set to true here, mysql.geoEnabled must be set to true |
Trevor Tait | 567ff1e | 2018-05-01 16:20:54 -0400 | [diff] [blame] | 51 | # if geoEnabled is set to true the following 3 values must be set to their proper values |
| 52 | myODLCluster: 127.0.0.1 |
| 53 | peerODLCluster: 127.0.0.1 |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 54 | isPrimaryCluster: true |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 55 | configDir: /opt/onap/sdnc/data/properties |
| 56 | dmaapTopic: SUCCESS |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 57 | dmaapPort: 3904 |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 58 | logstashServiceName: log-ls |
| 59 | logstashPort: 5044 |
jmac | 7c43467 | 2018-05-11 20:14:17 +0000 | [diff] [blame] | 60 | ansibleServiceName: sdnc-ansible-server |
| 61 | ansiblePort: 8000 |
Timoney, Dan (dt5972) | 6819bc9 | 2019-02-12 13:30:49 -0500 | [diff] [blame] | 62 | javaHome: /usr/lib/jvm/java-1.8-openjdk |
jmac | 7c43467 | 2018-05-11 20:14:17 +0000 | [diff] [blame] | 63 | |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 64 | #local Mariadb-galera cluster |
| 65 | localDBCluster: false |
| 66 | |
| 67 | #Shared mariadb-galera details |
| 68 | mariadbGalera: |
| 69 | chartName: mariadb-galera |
| 70 | serviceName: mariadb-galera |
| 71 | internalPort: 3306 |
| 72 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 73 | # dependency / sub-chart configuration |
Sylvain Desbureaux | 7acab56 | 2019-03-01 09:26:13 +0100 | [diff] [blame] | 74 | cds: |
| 75 | enabled: true |
| 76 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 77 | dmaap-listener: |
| 78 | nameOverride: sdnc-dmaap-listener |
| 79 | config: |
| 80 | sdncChartName: sdnc |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 81 | mysqlChartName: mariadb-galera |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 82 | dmaapPort: 3904 |
| 83 | sdncPort: 8282 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 84 | configDir: /opt/onap/sdnc/data/properties |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 85 | odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 86 | |
| 87 | ueb-listener: |
| 88 | nameOverride: sdnc-ueb-listener |
| 89 | config: |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 90 | sdncPort: 8282 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 91 | sdncChartName: sdnc |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 92 | mysqlChartName: mariadb-galera |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 93 | configDir: /opt/onap/sdnc/data/properties |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 94 | odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 95 | |
| 96 | sdnc-portal: |
| 97 | config: |
| 98 | sdncChartName: sdnc |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 99 | mysqlChartName: mariadb-galera |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 100 | configDir: /opt/onap/sdnc/data/properties |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 101 | dbRootPassword: secretpassword |
jmac | 70863e1 | 2018-05-16 14:53:03 +0000 | [diff] [blame] | 102 | dbSdnctlPassword: gamma |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 103 | odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 104 | |
jmac | 7c43467 | 2018-05-11 20:14:17 +0000 | [diff] [blame] | 105 | sdnc-ansible-server: |
| 106 | service: |
| 107 | name: sdnc-ansible-server |
| 108 | internalPort: 8000 |
| 109 | config: |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 110 | mysqlServiceName: mariadb-galera |
jmac | 7c43467 | 2018-05-11 20:14:17 +0000 | [diff] [blame] | 111 | |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 112 | mariadb-galera: |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 113 | nameOverride: sdnc-db |
| 114 | service: |
| 115 | name: sdnc-dbhost |
jmac | bc92d13 | 2018-04-07 03:46:12 +0000 | [diff] [blame] | 116 | internalPort: 3306 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 117 | sdnctlPrefix: sdnc |
| 118 | persistence: |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 119 | mountSubPath: sdnc/mariadb-galera |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 120 | enabled: true |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 121 | replicaCount: 1 |
| 122 | |
| 123 | dgbuilder: |
| 124 | nameOverride: sdnc-dgbuilder |
| 125 | config: |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 126 | dbPodName: mariadb-galera |
| 127 | dbServiceName: mariadb-galera |
| 128 | dbRootPassword: secretpassword |
jmac | 70863e1 | 2018-05-16 14:53:03 +0000 | [diff] [blame] | 129 | dbSdnctlPassword: gamma |
| 130 | dgUserPassword: cc03e747a6afbbcbf8be7668acfebee5 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 131 | service: |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 132 | name: sdnc-dgbuilder |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 133 | nodePort: "03" |
| 134 | |
| 135 | # default number of instances |
| 136 | replicaCount: 1 |
| 137 | |
| 138 | nodeSelector: {} |
| 139 | |
| 140 | affinity: {} |
| 141 | |
| 142 | # probe configuration parameters |
| 143 | liveness: |
| 144 | initialDelaySeconds: 10 |
| 145 | periodSeconds: 10 |
| 146 | # necessary to disable liveness probe when setting breakpoints |
| 147 | # in debugger so K8s doesn't restart unresponsive container |
| 148 | enabled: true |
| 149 | |
| 150 | readiness: |
| 151 | initialDelaySeconds: 10 |
| 152 | periodSeconds: 10 |
| 153 | |
| 154 | service: |
| 155 | type: NodePort |
| 156 | name: sdnc |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 157 | portName: sdnc |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 158 | internalPort: 8181 |
| 159 | internalPort2: 8101 |
| 160 | internalPort3: 8080 |
Mohammadreza Pasandideh | b756fb7 | 2018-04-03 10:06:45 -0400 | [diff] [blame] | 161 | internalPort4: 2550 |
| 162 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 163 | #port |
| 164 | externalPort: 8282 |
| 165 | nodePort: "02" |
| 166 | |
| 167 | externalPort2: 8202 |
| 168 | nodePort2: "08" |
| 169 | |
| 170 | externalPort3: 8280 |
| 171 | nodePort3: 46 |
| 172 | |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 173 | externalPort4: 8443 |
| 174 | nodePort4: 67 |
| 175 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 176 | clusterPort: 2550 |
Mohammadreza Pasandideh | b756fb7 | 2018-04-03 10:06:45 -0400 | [diff] [blame] | 177 | clusterPort2: 2650 |
| 178 | clusterPort3: 2681 |
| 179 | |
| 180 | geoNodePort1: 61 |
| 181 | geoNodePort2: 62 |
| 182 | geoNodePort3: 63 |
| 183 | geoNodePort4: 64 |
| 184 | geoNodePort5: 65 |
| 185 | geoNodePort6: 66 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 186 | |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 187 | ## Persist data to a persitent volume |
| 188 | persistence: |
| 189 | enabled: true |
| 190 | |
| 191 | ## A manually managed Persistent Volume and Claim |
| 192 | ## Requires persistence.enabled: true |
| 193 | ## If defined, PVC must be created manually before volume will be bound |
| 194 | # existingClaim: |
| 195 | volumeReclaimPolicy: Retain |
| 196 | |
| 197 | ## database data Persistent Volume Storage Class |
| 198 | ## If defined, storageClassName: <storageClass> |
| 199 | ## If set to "-", storageClassName: "", which disables dynamic provisioning |
| 200 | ## If undefined (the default) or set to null, no storageClassName spec is |
| 201 | ## set, choosing the default provisioner. (gp2 on AWS, standard on |
| 202 | ## GKE, AWS & OpenStack) |
| 203 | accessMode: ReadWriteOnce |
| 204 | size: 1Gi |
| 205 | mountPath: /dockerdata-nfs |
| 206 | mountSubPath: sdnc/mdsal |
| 207 | mdsalPath: /opt/opendaylight/current/daexim |
| 208 | |
Rahul Tyagi | 44cc1ac | 2019-03-02 06:15:35 +0000 | [diff] [blame] | 209 | certpersistence: |
| 210 | enabled: true |
| 211 | |
| 212 | ## A manually managed Persistent Volume and Claim |
| 213 | ## Requires persistence.enabled: true |
| 214 | ## If defined, PVC must be created manually before volume will be bound |
| 215 | # existingClaim: |
| 216 | |
| 217 | volumeReclaimPolicy: Retain |
| 218 | accessMode: ReadWriteOnce |
| 219 | size: 50Mi |
| 220 | mountPath: /dockerdata-nfs |
| 221 | mountSubPath: sdnc/certs |
| 222 | certPath: /opt/opendaylight/current/certs |
| 223 | ##storageClass: "manual" |
| 224 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 225 | ingress: |
| 226 | enabled: false |
| 227 | |
toshrajbhardwaj | 72b5f0f | 2018-09-13 02:45:22 +0000 | [diff] [blame] | 228 | #Resource Limit flavor -By Default using small |
| 229 | flavor: small |
| 230 | #segregation for different envionment (Small and Large) |
| 231 | |
| 232 | resources: |
Mandeep Khinda | de04571 | 2018-09-19 18:11:57 +0000 | [diff] [blame] | 233 | small: |
| 234 | limits: |
| 235 | cpu: 2 |
| 236 | memory: 4Gi |
| 237 | requests: |
Mandeep Khinda | 3c13425 | 2018-09-19 23:56:37 +0000 | [diff] [blame] | 238 | cpu: 1 |
| 239 | memory: 2Gi |
Mandeep Khinda | de04571 | 2018-09-19 18:11:57 +0000 | [diff] [blame] | 240 | large: |
| 241 | limits: |
| 242 | cpu: 4 |
| 243 | memory: 8Gi |
| 244 | requests: |
Mandeep Khinda | 3c13425 | 2018-09-19 23:56:37 +0000 | [diff] [blame] | 245 | cpu: 2 |
| 246 | memory: 4Gi |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 247 | unlimited: {} |