Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 1 | // Copyright 2017-present Open Networking Foundation |
| 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 | node ("${TestNodeName}") { |
| 16 | timeout (100) { |
| 17 | try { |
| 18 | stage ("Parse deployment configuration file") { |
| 19 | sh returnStdout: true, script: "rm -rf ${configBaseDir}" |
| 20 | sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}" |
You Wang | 59ded6c | 2018-10-05 17:43:44 -0700 | [diff] [blame] | 21 | deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml" |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 22 | } |
| 23 | stage('Clean up') { |
| 24 | timeout(10) { |
| 25 | sh returnStdout: true, script: """ |
| 26 | rm -rf helm-charts cord-tester |
| 27 | git clone -b ${branch} ${cordRepoUrl}/helm-charts |
| 28 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 29 | for hchart in \$(helm list -q | grep -E -v 'docker-registry|mavenrepo|ponnet'); |
| 30 | do |
| 31 | echo "Purging chart: \${hchart}" |
| 32 | helm delete --purge "\${hchart}" |
| 33 | done |
| 34 | """ |
| 35 | timeout(5) { |
| 36 | waitUntil { |
| 37 | helm_deleted = sh returnStdout: true, script: """ |
| 38 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 39 | helm ls -q | grep -E -v 'docker-registry|mavenrepo|ponnet' | wc -l |
| 40 | """ |
| 41 | return helm_deleted.toInteger() == 0 |
| 42 | } |
| 43 | } |
| 44 | timeout(5) { |
| 45 | waitUntil { |
| 46 | kubectl_deleted = sh returnStdout: true, script: """ |
| 47 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 48 | kubectl get pods --all-namespaces --no-headers | grep -E -v 'kube-system|docker-registry|mavenrepo|ponnet' | wc -l |
| 49 | """ |
| 50 | return kubectl_deleted.toInteger() == 0 |
| 51 | } |
You Wang | 004ff24 | 2018-09-25 13:26:21 -0700 | [diff] [blame] | 52 | }/* |
Matteo Scandolo | 5bb2c77 | 2018-09-21 11:49:57 -0700 | [diff] [blame] | 53 | timeout(5) { |
| 54 | waitUntil { |
| 55 | kubectl_deleted = sh returnStdout: true, script: """ |
| 56 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 57 | kubectl get statefulset --all-namespaces --no-headers | grep -E -v 'kube-system|docker-registry|mavenrepo|ponnet' | wc -l |
| 58 | """ |
| 59 | return kubectl_deleted.toInteger() == 0 |
| 60 | } |
You Wang | 004ff24 | 2018-09-25 13:26:21 -0700 | [diff] [blame] | 61 | }*/ |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | dir ("helm-charts") { |
Kailash Khalasi | 100cf46 | 2018-09-20 10:24:57 -0700 | [diff] [blame] | 65 | stage('Install CORD Kafka') { |
| 66 | timeout(10) { |
| 67 | sh returnStdout: true, script: """ |
| 68 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
Zack Williams | 2a45834 | 2019-01-14 14:53:24 -0700 | [diff] [blame] | 69 | helm install -f examples/kafka-single.yaml --version 0.13.3 -n cord-kafka incubator/kafka |
Kailash Khalasi | 100cf46 | 2018-09-20 10:24:57 -0700 | [diff] [blame] | 70 | """ |
| 71 | } |
| 72 | timeout(10) { |
| 73 | waitUntil { |
| 74 | kafka_instances_running = sh returnStdout: true, script: """ |
| 75 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 76 | kubectl get pods | grep cord-kafka | grep -i running | grep 1/1 | wc -l |
| 77 | """ |
| 78 | return kafka_instances_running.toInteger() == 2 |
| 79 | } |
| 80 | } |
You Wang | 004ff24 | 2018-09-25 13:26:21 -0700 | [diff] [blame] | 81 | }/* |
Kailash Khalasi | 100cf46 | 2018-09-20 10:24:57 -0700 | [diff] [blame] | 82 | stage('Install Logging Infrastructure') { |
| 83 | timeout(10) { |
| 84 | sh returnStdout: true, script: """ |
| 85 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 86 | helm dep update logging |
| 87 | helm install -f examples/logging-single.yaml -n logging logging |
| 88 | scripts/wait_for_pods.sh |
| 89 | """ |
| 90 | } |
| 91 | } |
| 92 | stage('Install Monitoring Infrastructure') { |
| 93 | timeout(10) { |
| 94 | sh returnStdout: true, script: """ |
| 95 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 96 | helm dep update nem-monitoring |
| 97 | helm install -n nem-monitoring nem-monitoring |
| 98 | scripts/wait_for_pods.sh |
| 99 | """ |
| 100 | } |
You Wang | 004ff24 | 2018-09-25 13:26:21 -0700 | [diff] [blame] | 101 | }*/ |
Kailash | 9b51318 | 2018-11-16 09:36:20 -0800 | [diff] [blame] | 102 | stage('Install etcd-cluster') { |
| 103 | timeout(10) { |
| 104 | sh returnStdout: true, script: """ |
| 105 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
Zack Williams | 2a45834 | 2019-01-14 14:53:24 -0700 | [diff] [blame] | 106 | helm install -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml --version 0.8.3 -n etcd-operator stable/etcd-operator |
Kailash | 9b51318 | 2018-11-16 09:36:20 -0800 | [diff] [blame] | 107 | """ |
| 108 | } |
| 109 | timeout(10) { |
| 110 | waitUntil { |
| 111 | etcd_running = sh returnStdout: true, script: """ |
| 112 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 113 | kubectl get pods | grep etcd | grep -i running | grep 1/1 | wc -l |
| 114 | """ |
Kailash | 4da7016 | 2018-11-16 12:58:33 -0800 | [diff] [blame] | 115 | return etcd_running.toInteger() == 3 |
Kailash | 9b51318 | 2018-11-16 09:36:20 -0800 | [diff] [blame] | 116 | } |
| 117 | } |
| 118 | } |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 119 | stage('Install voltha') { |
| 120 | timeout(10) { |
| 121 | sh returnStdout: true, script: """ |
| 122 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 123 | helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ |
| 124 | helm dep build voltha |
Kailash | 9b51318 | 2018-11-16 09:36:20 -0800 | [diff] [blame] | 125 | helm install -n voltha -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml voltha |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 126 | """ |
| 127 | } |
| 128 | timeout(10) { |
| 129 | waitUntil { |
| 130 | voltha_completed = sh returnStdout: true, script: """ |
| 131 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 132 | kubectl get pods -n voltha | grep -i running | grep 1/1 | wc -l |
| 133 | """ |
| 134 | return voltha_completed.toInteger() == 8 |
| 135 | } |
| 136 | } |
| 137 | } |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 138 | stage('Install ONOS') { |
| 139 | timeout(10) { |
| 140 | sh returnStdout: true, script: """ |
| 141 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
Luca Prete | 6ba2d9c | 2018-12-12 15:54:26 -0800 | [diff] [blame] | 142 | helm install -n onos -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml onos |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 143 | """ |
| 144 | } |
| 145 | timeout(10) { |
| 146 | waitUntil { |
| 147 | onos_completed = sh returnStdout: true, script: """ |
| 148 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
You Wang | d37e182 | 2018-11-09 13:39:10 -0800 | [diff] [blame] | 149 | kubectl get pods | grep -i onos | grep -i running | grep 2/2 | wc -l |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 150 | """ |
| 151 | return onos_completed.toInteger() == 1 |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | stage('Install xos-core') { |
| 156 | timeout(10) { |
| 157 | sh returnStdout: true, script: """ |
| 158 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 159 | helm dep update xos-core |
| 160 | helm install -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n xos-core xos-core |
| 161 | """ |
| 162 | } |
| 163 | timeout(10) { |
| 164 | waitUntil { |
| 165 | xos_core_completed = sh returnStdout: true, script: """ |
| 166 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 167 | kubectl get pods | grep -i xos | grep -i running | grep 1/1 | wc -l |
| 168 | """ |
You Wang | 004ff24 | 2018-09-25 13:26:21 -0700 | [diff] [blame] | 169 | return xos_core_completed.toInteger() == 6 |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 170 | } |
| 171 | } |
| 172 | } |
| 173 | stage('Install rcord-lite') { |
| 174 | timeout(10) { |
| 175 | sh returnStdout: true, script: """ |
| 176 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 177 | helm dep update xos-profiles/rcord-lite |
| 178 | helm install -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n rcord-lite xos-profiles/rcord-lite |
| 179 | """ |
| 180 | } |
| 181 | timeout(10) { |
| 182 | waitUntil { |
| 183 | rcord_tosca_completed = sh returnStdout: true, script: """ |
| 184 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 185 | kubectl get pods | grep -i tosca-loader | grep -i completed | wc -l |
| 186 | """ |
| 187 | return rcord_tosca_completed.toInteger() == 1 |
| 188 | } |
| 189 | } |
| 190 | } |
| 191 | stage('Install hippie-oss') { |
| 192 | timeout(10) { |
| 193 | sh returnStdout: true, script: """ |
| 194 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 195 | helm install -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n hippie-oss xos-services/hippie-oss |
| 196 | """ |
| 197 | } |
| 198 | timeout(10) { |
| 199 | waitUntil { |
| 200 | hippie_oss_running = sh returnStdout: true, script: """ |
| 201 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 202 | kubectl get pods | grep -i hippie-oss | grep -i running | grep 1/1 | wc -l |
| 203 | """ |
| 204 | return hippie_oss_running.toInteger() == 1 |
| 205 | } |
| 206 | } |
| 207 | } |
| 208 | } |
Kailash | 9b56c86 | 2018-11-29 08:45:25 -0800 | [diff] [blame] | 209 | if ( params.reinstallOlt ) { |
| 210 | stage('Reinstall OLT software') { |
| 211 | for(int i=0; i < deployment_config.olts.size(); i++) { |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 212 | sh returnStdout: true, script: """ |
Kailash | 9b56c86 | 2018-11-29 08:45:25 -0800 | [diff] [blame] | 213 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'dpkg --remove asfvolt16 && dpkg --purge asfvolt16' |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 214 | """ |
Kailash | 9b56c86 | 2018-11-29 08:45:25 -0800 | [diff] [blame] | 215 | timeout(5) { |
| 216 | waitUntil { |
| 217 | olt_sw_present = sh returnStdout: true, script: """ |
| 218 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'dpkg --list | grep asfvolt16 | wc -l' |
| 219 | """ |
| 220 | return olt_sw_present.toInteger() == 0 |
| 221 | } |
| 222 | } |
| 223 | sh returnStdout: true, script: """ |
| 224 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} "dpkg --install ${oltDebVersion}" |
| 225 | """ |
| 226 | timeout(5) { |
| 227 | waitUntil { |
| 228 | olt_sw_present = sh returnStdout: true, script: """ |
| 229 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'dpkg --list | grep asfvolt16 | wc -l' |
| 230 | """ |
| 231 | return olt_sw_present.toInteger() == 1 |
| 232 | } |
| 233 | } |
| 234 | // If the OLT is connected to a 40G switch interface, set the NNI port to be downgraded |
| 235 | if ("${deployment_config.olts[i].fortygig}" != null && "${deployment_config.olts[i].fortygig}" == 'true') { |
| 236 | sh returnStdout: true, script: """ |
| 237 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'echo "port ce128 sp=40000" >> /broadcom/qax.soc' |
| 238 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} '/opt/bcm68620/svk_init.sh' |
| 239 | """ |
| 240 | } |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 241 | } |
| 242 | } |
Kailash | 9b56c86 | 2018-11-29 08:45:25 -0800 | [diff] [blame] | 243 | stage('Restart OLT processes') { |
| 244 | for(int i=0; i < deployment_config.olts.size(); i++) { |
| 245 | timeout(5) { |
| 246 | sh returnStdout: true, script: """ |
| 247 | ssh-keyscan -H ${deployment_config.olts[i].ip} >> ~/.ssh/known_hosts |
| 248 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'pkill bal_core_dist' || true |
| 249 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'pkill openolt' || true |
| 250 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} '> /broadcom/bal.log' |
| 251 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} '> /broadcom/openolt.log' |
| 252 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'cd /broadcom; ./bal_core_dist -C :55001 < /dev/tty1 > ./bal.log 2>&1 &' |
| 253 | sleep 5 |
| 254 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'cd /broadcom; ./openolt -C 127.0.0.1:55001 < /dev/tty1 > ./openolt.log 2>&1 &' |
| 255 | """ |
| 256 | } |
| 257 | timeout(15) { |
| 258 | waitUntil { |
| 259 | onu_discovered = sh returnStdout: true, script: "sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'cat /broadcom/openolt.log | grep \"oper_state: up\" | wc -l'" |
| 260 | return onu_discovered.toInteger() > 0 |
| 261 | } |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 262 | } |
| 263 | } |
| 264 | } |
| 265 | } |
Kailash Khalasi | 4d18e20 | 2018-09-14 13:32:16 -0700 | [diff] [blame] | 266 | if ( params.configurePod ) { |
| 267 | dir ("${configBaseDir}/${configToscaDir}/${profile}") { |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 268 | stage('Configure R-CORD - Fabric and whitelist') { |
| 269 | timeout(1) { |
| 270 | waitUntil { |
| 271 | out_fabric = sh returnStdout: true, script: """ |
Kailash Khalasi | 4d18e20 | 2018-09-14 13:32:16 -0700 | [diff] [blame] | 272 | curl -s -H "xos-username:admin@opencord.org" -H "xos-password:letmein" -X POST --data-binary @${configFileName}-fabric.yaml http://${deployment_config.nodes[0].ip}:30007/run | grep -i "created models" | wc -l |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 273 | """ |
| 274 | return out_fabric.toInteger() == 1 |
| 275 | } |
| 276 | } |
| 277 | } |
| 278 | stage('Configure R-CORD - Subscriber') { |
| 279 | timeout(1) { |
| 280 | waitUntil { |
| 281 | out_subscriber = sh returnStdout: true, script: """ |
Kailash Khalasi | 4d18e20 | 2018-09-14 13:32:16 -0700 | [diff] [blame] | 282 | curl -s -H 'xos-username:admin@opencord.org' -H 'xos-password:letmein' -X POST --data-binary @${configFileName}-subscriber.yaml http://${deployment_config.nodes[0].ip}:30007/run | grep -i "created models" | wc -l |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 283 | """ |
| 284 | return out_subscriber.toInteger() == 1 |
| 285 | } |
| 286 | } |
| 287 | } |
| 288 | stage('Configure R-CORD - OLT') { |
| 289 | timeout(1) { |
| 290 | waitUntil { |
| 291 | out_olt = sh returnStdout: true, script: """ |
Kailash Khalasi | 4d18e20 | 2018-09-14 13:32:16 -0700 | [diff] [blame] | 292 | curl -H 'xos-username:admin@opencord.org' -H 'xos-password:letmein' -X POST --data-binary @${configFileName}-olt.yaml http://${deployment_config.nodes[0].ip}:30007/run | grep -i "created models" | wc -l |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 293 | """ |
| 294 | return out_olt.toInteger() == 1 |
| 295 | } |
| 296 | } |
| 297 | } |
| 298 | } |
| 299 | } |
| 300 | currentBuild.result = 'SUCCESS' |
| 301 | } catch (err) { |
| 302 | currentBuild.result = 'FAILURE' |
| 303 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false]) |
| 304 | } |
| 305 | echo "RESULT: ${currentBuild.result}" |
| 306 | } |
| 307 | } |