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 |
Agarwal, Ruchira (ra1926) | ec7c75e | 2019-10-01 17:36:24 +0000 | [diff] [blame] | 28 | aafEnabled: true |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 29 | # envsusbt |
| 30 | envsubstImage: dibi/envsubst |
| 31 | mariadbGalera: |
| 32 | #This flag allows SO to instantiate its own mariadb-galera cluster |
| 33 | #If shared instance is used, this chart assumes that DB already exists |
| 34 | localCluster: false |
| 35 | service: mariadb-galera |
| 36 | internalPort: 3306 |
| 37 | nameOverride: mariadb-galera |
| 38 | |
| 39 | ################################################################# |
| 40 | # Secrets metaconfig |
| 41 | ################################################################# |
| 42 | secrets: |
| 43 | - uid: db-root-password |
| 44 | name: '{{ include "common.release" . }}-sdnc-db-root-password' |
| 45 | type: password |
| 46 | externalSecret: '{{ .Values.global.mariadbGalera.localCluster | ternary (default (include "common.mariadb.secret.rootPassSecretName" (dict "dot" . "chartName" (index .Values "mariadb-galera" "nameOverride"))) (index .Values "mariadb-galera" "config" "mariadbRootPasswordExternalSecret")) (include "common.mariadb.secret.rootPassSecretName" (dict "dot" . "chartName" .Values.global.mariadbGalera.nameOverride)) }}' |
| 47 | password: '{{ (index .Values "mariadb-galera" "config" "mariadbRootPassword" }}' |
| 48 | - uid: db-secret |
| 49 | name: &dbSecretName '{{ include "common.release" . }}-sdnc-db-secret' |
| 50 | type: basicAuth |
| 51 | # This is a nasty trick that allows you override this secret using external one |
| 52 | # with the same field that is used to pass this to subchart |
| 53 | externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "config" "userCredentialsExternalSecret")) .) (hasSuffix "sdnc-db-secret" (index .Values "mariadb-galera" "config" "userCredentialsExternalSecret"))}}' |
| 54 | login: '{{ index .Values "mariadb-galera" "config" "userName" }}' |
| 55 | password: '{{ index .Values "mariadb-galera" "config" "userPassword" }}' |
| 56 | - uid: odl-creds |
| 57 | name: &odlCredsSecretName '{{ include "common.release" . }}-sdnc-odl-creds' |
| 58 | type: basicAuth |
| 59 | externalSecret: '{{ .Values.config.odlCredsExternalSecret }}' |
| 60 | login: '{{ .Values.config.odlUser }}' |
| 61 | password: '{{ .Values.config.odlPassword }}' |
| 62 | # For now this is left hardcoded but should be revisited in a future |
| 63 | passwordPolicy: required |
| 64 | - uid: aaf-creds |
| 65 | type: basicAuth |
| 66 | externalSecret: '{{ ternary (tpl (default "" .Values.aaf_init.aafDeployCredsExternalSecret) .) "aafIsDiabled" .Values.global.aafEnabled }}' |
| 67 | login: '{{ .Values.aaf_init.deploy_fqi }}' |
| 68 | password: '{{ .Values.aaf_init.deploy_pass }}' |
| 69 | passwordPolicy: required |
| 70 | - uid: netbox-apikey |
| 71 | type: password |
| 72 | externalSecret: '{{ .Values.config.netboxApikeyExternalSecret }}' |
| 73 | password: '{{ .Values.config.netboxApikey }}' |
| 74 | passwordPolicy: required |
| 75 | - uid: aai-user-creds |
| 76 | type: basicAuth |
| 77 | externalSecret: '{{ .Values.config.aaiCredsExternalSecret}}' |
| 78 | login: '{{ .Values.config.aaiUser }}' |
| 79 | password: '{{ .Values.config.aaiPassword }}' |
| 80 | passwordPolicy: required |
| 81 | - uid: modeling-user-creds |
| 82 | type: basicAuth |
| 83 | externalSecret: '{{ .Values.config.modelingCredsExternalSecret}}' |
| 84 | login: '{{ .Values.config.modelingUser }}' |
| 85 | password: '{{ .Values.config.modelingPassword }}' |
| 86 | passwordPolicy: required |
| 87 | - uid: restconf-creds |
| 88 | type: basicAuth |
| 89 | externalSecret: '{{ .Values.config.restconfCredsExternalSecret}}' |
| 90 | login: '{{ .Values.config.restconfUser }}' |
| 91 | password: '{{ .Values.config.restconfPassword }}' |
| 92 | passwordPolicy: required |
| 93 | - uid: ansible-creds |
| 94 | name: &ansibleSecretName '{{ include "common.release" . }}-sdnc-ansible-creds' |
| 95 | type: basicAuth |
| 96 | externalSecret: '{{ .Values.config.ansibleCredsExternalSecret}}' |
| 97 | login: '{{ .Values.config.ansibleUser }}' |
| 98 | password: '{{ .Values.config.ansiblePassword }}' |
| 99 | passwordPolicy: required |
| 100 | - uid: scaleout-creds |
| 101 | type: basicAuth |
| 102 | externalSecret: '{{ .Values.config.scaleoutCredsExternalSecret}}' |
| 103 | login: '{{ .Values.config.scaleoutUser }}' |
| 104 | password: '{{ .Values.config.scaleoutPassword }}' |
| 105 | passwordPolicy: required |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 106 | |
| 107 | ################################################################# |
| 108 | # Application configuration defaults. |
| 109 | ################################################################# |
| 110 | # application images |
| 111 | repository: nexus3.onap.org:10001 |
| 112 | pullPolicy: Always |
Timoney, Dan (dt5972) | 6c19848 | 2019-12-03 10:35:51 -0500 | [diff] [blame] | 113 | image: onap/sdnc-image:1.7.6 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 114 | |
Timoney, Dan (dt5972) | a3bc1a5 | 2019-06-26 16:16:52 -0400 | [diff] [blame] | 115 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 116 | # flag to enable debugging - application support required |
| 117 | debugEnabled: false |
| 118 | |
| 119 | # application configuration |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 120 | config: |
Timoney, Dan (dt5972) | ba4d2eb | 2019-05-07 13:32:42 -0400 | [diff] [blame] | 121 | odlUid: 100 |
| 122 | odlGid: 101 |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 123 | odlUser: admin |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 124 | odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 125 | # odlCredsExternalSecret: some secret |
| 126 | netboxApikey: onceuponatimeiplayedwithnetbox20180814 |
| 127 | # netboxApikeyExternalSecret: some secret |
| 128 | aaiUser: sdnc@sdnc.onap.org |
| 129 | aaiPassword: demo123456! |
| 130 | # aaiCredsExternalSecret: some secret |
| 131 | modelingUser: ccsdkapps |
| 132 | modelingPassword: ccsdkapps |
| 133 | # modelingCredsExternalSecret: some secret |
| 134 | restconfUser: admin |
| 135 | restconfPassword: admin |
| 136 | # restconfCredsExternalSecret: some secret |
| 137 | scaleoutUser: admin |
| 138 | scaleoutPassword: admin |
| 139 | # scaleoutExternalSecret: some secret |
| 140 | ansibleUser: sdnc |
| 141 | ansiblePassword: sdnc |
| 142 | # ansibleCredsExternalSecret: some secret |
| 143 | dbSdnctlDatabase: &sdncDbName sdnctl |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 144 | enableClustering: true |
Timoney, Dan (dt5972) | a3bc1a5 | 2019-06-26 16:16:52 -0400 | [diff] [blame] | 145 | sdncHome: /opt/onap/sdnc |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 146 | binDir: /opt/onap/sdnc/bin |
Timoney, Dan (dt5972) | a3bc1a5 | 2019-06-26 16:16:52 -0400 | [diff] [blame] | 147 | etcDir: /opt/onap/sdnc/data |
Trevor Tait | 567ff1e | 2018-05-01 16:20:54 -0400 | [diff] [blame] | 148 | geoEnabled: false |
Neha Jain | 7b0d6c6 | 2018-05-17 14:34:49 -0400 | [diff] [blame] | 149 | # 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] | 150 | # if geoEnabled is set to true the following 3 values must be set to their proper values |
| 151 | myODLCluster: 127.0.0.1 |
| 152 | peerODLCluster: 127.0.0.1 |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 153 | isPrimaryCluster: true |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 154 | configDir: /opt/onap/sdnc/data/properties |
| 155 | dmaapTopic: SUCCESS |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 156 | dmaapPort: 3904 |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 157 | logstashServiceName: log-ls |
| 158 | logstashPort: 5044 |
jmac | 7c43467 | 2018-05-11 20:14:17 +0000 | [diff] [blame] | 159 | ansibleServiceName: sdnc-ansible-server |
| 160 | ansiblePort: 8000 |
Timoney, Dan (dt5972) | 6819bc9 | 2019-02-12 13:30:49 -0500 | [diff] [blame] | 161 | javaHome: /usr/lib/jvm/java-1.8-openjdk |
jmac | 7c43467 | 2018-05-11 20:14:17 +0000 | [diff] [blame] | 162 | |
Timoney, Dan (dt5972) | 5877477 | 2019-08-21 16:50:54 -0400 | [diff] [blame] | 163 | odl: |
| 164 | etcDir: /opt/opendaylight/etc |
| 165 | binDir: /opt/opendaylight/bin |
| 166 | salConfigDir: /opt/opendaylight/system/org/opendaylight/controller/sal-clustering-config |
| 167 | salConfigVersion: 1.8.2 |
| 168 | akka: |
| 169 | seedNodeTimeout: 15s |
| 170 | circuitBreaker: |
| 171 | maxFailures: 10 |
| 172 | callTimeout: 90s |
| 173 | resetTimeout: 30s |
| 174 | recoveryEventTimeout: 90s |
| 175 | datastore: |
| 176 | persistentActorRestartMinBackoffInSeconds: 10 |
| 177 | persistentActorRestartMaxBackoffInSeconds: 40 |
| 178 | persistentActorRestartResetBackoffInSeconds: 20 |
| 179 | shardTransactionCommitTimeoutInSeconds: 120 |
| 180 | shardIsolatedLeaderCheckIntervalInMillis: 30000 |
| 181 | operationTimeoutInSeconds: 120 |
| 182 | javaOptions: |
| 183 | maxGCPauseMillis: 100 |
| 184 | parallelGCThreads : 3 |
| 185 | numberGGLogFiles: 10 |
| 186 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 187 | # dependency / sub-chart configuration |
Agarwal, Ruchira (ra1926) | ec7c75e | 2019-10-01 17:36:24 +0000 | [diff] [blame] | 188 | aaf_init: |
| 189 | agentImage: onap/aaf/aaf_agent:2.1.15 |
| 190 | app_ns: "org.osaaf.aaf" |
| 191 | fqi: "sdnc@sdnc.onap.org" |
| 192 | fqdn: "sdnc" |
| 193 | public_fqdn: "sdnc.onap.org" |
| 194 | deploy_fqi: "deployer@people.osaaf.org" |
| 195 | deploy_pass: "demo123456!" |
| 196 | cadi_latitude: "38.0" |
| 197 | cadi_longitude: "-72.0" |
| 198 | |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 199 | mariadb-galera: &mariadbGalera |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 200 | nameOverride: sdnc-db |
Konrad Bańka | a9d4403 | 2020-03-19 18:31:34 +0100 | [diff] [blame] | 201 | config: &mariadbGaleraConfig |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 202 | rootPasswordExternalSecret: '{{ ternary (include "common.release" .)-sdnc-db-root-password "" .Values.global.mariadbGalera.localCluster }}' |
| 203 | userName: sdnctl |
| 204 | userCredentialsExternalSecret: *dbSecretName |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 205 | service: |
| 206 | name: sdnc-dbhost |
jmac | bc92d13 | 2018-04-07 03:46:12 +0000 | [diff] [blame] | 207 | internalPort: 3306 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 208 | sdnctlPrefix: sdnc |
| 209 | persistence: |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 210 | mountSubPath: sdnc/mariadb-galera |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 211 | enabled: true |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 212 | replicaCount: 1 |
| 213 | |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 214 | cds: |
| 215 | enabled: false |
| 216 | |
| 217 | dmaap-listener: |
| 218 | nameOverride: sdnc-dmaap-listener |
| 219 | mariadb-galera: |
Konrad Bańka | a9d4403 | 2020-03-19 18:31:34 +0100 | [diff] [blame] | 220 | <<: *mariadbGalera |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 221 | config: |
Konrad Bańka | a9d4403 | 2020-03-19 18:31:34 +0100 | [diff] [blame] | 222 | <<: *mariadbGaleraConfig |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 223 | mysqlDatabase: *sdncDbName |
| 224 | config: |
| 225 | sdncChartName: sdnc |
| 226 | dmaapPort: 3904 |
| 227 | sdncPort: 8282 |
| 228 | configDir: /opt/onap/sdnc/data/properties |
| 229 | odlCredsExternalSecret: *odlCredsSecretName |
| 230 | |
| 231 | ueb-listener: |
| 232 | mariadb-galera: |
Konrad Bańka | a9d4403 | 2020-03-19 18:31:34 +0100 | [diff] [blame] | 233 | <<: *mariadbGalera |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 234 | config: |
Konrad Bańka | a9d4403 | 2020-03-19 18:31:34 +0100 | [diff] [blame] | 235 | <<: *mariadbGaleraConfig |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 236 | mysqlDatabase: *sdncDbName |
| 237 | nameOverride: sdnc-ueb-listener |
| 238 | config: |
| 239 | sdncPort: 8282 |
| 240 | sdncChartName: sdnc |
| 241 | configDir: /opt/onap/sdnc/data/properties |
| 242 | odlCredsExternalSecret: *odlCredsSecretName |
| 243 | |
| 244 | sdnc-portal: |
| 245 | mariadb-galera: |
Konrad Bańka | a9d4403 | 2020-03-19 18:31:34 +0100 | [diff] [blame] | 246 | <<: *mariadbGalera |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 247 | config: |
Konrad Bańka | a9d4403 | 2020-03-19 18:31:34 +0100 | [diff] [blame] | 248 | <<: *mariadbGaleraConfig |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 249 | mysqlDatabase: *sdncDbName |
| 250 | config: |
| 251 | sdncChartName: sdnc |
| 252 | configDir: /opt/onap/sdnc/data/properties |
| 253 | odlCredsExternalSecret: *odlCredsSecretName |
| 254 | |
| 255 | sdnc-ansible-server: |
| 256 | config: |
| 257 | restCredsExternalSecret: *ansibleSecretName |
| 258 | mariadb-galera: |
Konrad Bańka | a9d4403 | 2020-03-19 18:31:34 +0100 | [diff] [blame] | 259 | <<: *mariadbGalera |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 260 | config: |
Konrad Bańka | a9d4403 | 2020-03-19 18:31:34 +0100 | [diff] [blame] | 261 | <<: *mariadbGaleraConfig |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 262 | mysqlDatabase: ansible |
| 263 | service: |
| 264 | name: sdnc-ansible-server |
| 265 | internalPort: 8000 |
| 266 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 267 | dgbuilder: |
| 268 | nameOverride: sdnc-dgbuilder |
| 269 | config: |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 270 | db: |
| 271 | dbName: *sdncDbName |
| 272 | rootPasswordExternalSecret: '{{ ternary (printf "%s-sdnc-db-root-password" (include "common.release" .)) (include "common.mariadb.secret.rootPassSecretName" (dict "dot" . "chartName" "mariadb-galera")) .Values.global.mariadbGalera.localCluster }}' |
| 273 | userCredentialsExternalSecret: *dbSecretName |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame] | 274 | dbPodName: mariadb-galera |
| 275 | dbServiceName: mariadb-galera |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 276 | # This should be revisited and changed to plain text |
jmac | 70863e1 | 2018-05-16 14:53:03 +0000 | [diff] [blame] | 277 | dgUserPassword: cc03e747a6afbbcbf8be7668acfebee5 |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 278 | mariadb-galera: |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 279 | service: |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 280 | name: sdnc-dgbuilder |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 281 | nodePort: "03" |
| 282 | |
| 283 | # default number of instances |
| 284 | replicaCount: 1 |
| 285 | |
| 286 | nodeSelector: {} |
| 287 | |
| 288 | affinity: {} |
| 289 | |
| 290 | # probe configuration parameters |
| 291 | liveness: |
| 292 | initialDelaySeconds: 10 |
| 293 | periodSeconds: 10 |
| 294 | # necessary to disable liveness probe when setting breakpoints |
| 295 | # in debugger so K8s doesn't restart unresponsive container |
| 296 | enabled: true |
| 297 | |
| 298 | readiness: |
| 299 | initialDelaySeconds: 10 |
| 300 | periodSeconds: 10 |
| 301 | |
| 302 | service: |
| 303 | type: NodePort |
| 304 | name: sdnc |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 305 | portName: sdnc |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 306 | internalPort: 8181 |
| 307 | internalPort2: 8101 |
| 308 | internalPort3: 8080 |
Timoney, Dan (dt5972) | c6de269 | 2019-08-14 14:22:37 -0400 | [diff] [blame] | 309 | internalPort4: 8443 |
Mohammadreza Pasandideh | b756fb7 | 2018-04-03 10:06:45 -0400 | [diff] [blame] | 310 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 311 | #port |
| 312 | externalPort: 8282 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 313 | |
| 314 | externalPort2: 8202 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 315 | |
| 316 | externalPort3: 8280 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 317 | |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 318 | externalPort4: 8443 |
| 319 | nodePort4: 67 |
| 320 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 321 | clusterPort: 2550 |
Mohammadreza Pasandideh | b756fb7 | 2018-04-03 10:06:45 -0400 | [diff] [blame] | 322 | clusterPort2: 2650 |
| 323 | clusterPort3: 2681 |
| 324 | |
| 325 | geoNodePort1: 61 |
| 326 | geoNodePort2: 62 |
| 327 | geoNodePort3: 63 |
| 328 | geoNodePort4: 64 |
| 329 | geoNodePort5: 65 |
| 330 | geoNodePort6: 66 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 331 | |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 332 | ## Persist data to a persitent volume |
| 333 | persistence: |
| 334 | enabled: true |
| 335 | |
| 336 | ## A manually managed Persistent Volume and Claim |
| 337 | ## Requires persistence.enabled: true |
| 338 | ## If defined, PVC must be created manually before volume will be bound |
| 339 | # existingClaim: |
| 340 | volumeReclaimPolicy: Retain |
| 341 | |
| 342 | ## database data Persistent Volume Storage Class |
| 343 | ## If defined, storageClassName: <storageClass> |
| 344 | ## If set to "-", storageClassName: "", which disables dynamic provisioning |
| 345 | ## If undefined (the default) or set to null, no storageClassName spec is |
| 346 | ## set, choosing the default provisioner. (gp2 on AWS, standard on |
| 347 | ## GKE, AWS & OpenStack) |
| 348 | accessMode: ReadWriteOnce |
| 349 | size: 1Gi |
| 350 | mountPath: /dockerdata-nfs |
| 351 | mountSubPath: sdnc/mdsal |
| 352 | mdsalPath: /opt/opendaylight/current/daexim |
| 353 | |
Rahul Tyagi | 44cc1ac | 2019-03-02 06:15:35 +0000 | [diff] [blame] | 354 | certpersistence: |
| 355 | enabled: true |
| 356 | |
| 357 | ## A manually managed Persistent Volume and Claim |
| 358 | ## Requires persistence.enabled: true |
| 359 | ## If defined, PVC must be created manually before volume will be bound |
| 360 | # existingClaim: |
| 361 | |
| 362 | volumeReclaimPolicy: Retain |
| 363 | accessMode: ReadWriteOnce |
| 364 | size: 50Mi |
| 365 | mountPath: /dockerdata-nfs |
| 366 | mountSubPath: sdnc/certs |
Agarwal, Ruchira (ra1926) | ec7c75e | 2019-10-01 17:36:24 +0000 | [diff] [blame] | 367 | certPath: /opt/app/osaaf |
Rahul Tyagi | 44cc1ac | 2019-03-02 06:15:35 +0000 | [diff] [blame] | 368 | ##storageClass: "manual" |
| 369 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 370 | ingress: |
| 371 | enabled: false |
Lucjan Bryndza | 0844840 | 2019-11-27 14:26:54 +0100 | [diff] [blame] | 372 | service: |
| 373 | - baseaddr: "sdnc" |
| 374 | name: "sdnc" |
| 375 | port: 8443 |
| 376 | config: |
| 377 | ssl: "redirect" |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 378 | |
toshrajbhardwaj | 72b5f0f | 2018-09-13 02:45:22 +0000 | [diff] [blame] | 379 | #Resource Limit flavor -By Default using small |
| 380 | flavor: small |
| 381 | #segregation for different envionment (Small and Large) |
| 382 | |
| 383 | resources: |
Mandeep Khinda | de04571 | 2018-09-19 18:11:57 +0000 | [diff] [blame] | 384 | small: |
| 385 | limits: |
| 386 | cpu: 2 |
| 387 | memory: 4Gi |
| 388 | requests: |
Mandeep Khinda | 3c13425 | 2018-09-19 23:56:37 +0000 | [diff] [blame] | 389 | cpu: 1 |
| 390 | memory: 2Gi |
Mandeep Khinda | de04571 | 2018-09-19 18:11:57 +0000 | [diff] [blame] | 391 | large: |
| 392 | limits: |
| 393 | cpu: 4 |
| 394 | memory: 8Gi |
| 395 | requests: |
Mandeep Khinda | 3c13425 | 2018-09-19 23:56:37 +0000 | [diff] [blame] | 396 | cpu: 2 |
| 397 | memory: 4Gi |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 398 | unlimited: {} |