Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -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 | |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 15 | node ("${TestNodeName}") { |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 16 | timeout (100) { |
| 17 | try { |
| 18 | stage ("Parse deployment configuration file") { |
| 19 | sh returnStdout: true, script: "rm -rf ${configBaseDir}" |
You Wang | d6c5e8c | 2018-08-29 12:49:51 -0700 | [diff] [blame] | 20 | sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}" |
Luca Prete | 43f52cd | 2018-08-28 16:36:36 -0700 | [diff] [blame] | 21 | deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yml" |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 22 | } |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 23 | stage('Clean up') { |
| 24 | timeout(10) { |
| 25 | sh returnStdout: true, script: """ |
| 26 | rm -rf helm-charts cord-tester |
You Wang | d6c5e8c | 2018-08-29 12:49:51 -0700 | [diff] [blame] | 27 | git clone -b ${branch} ${cordRepoUrl}/helm-charts |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 28 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
Luca Prete | 5a97015 | 2018-08-29 15:20:47 -0700 | [diff] [blame] | 29 | for hchart in \$(helm list -q | grep -E -v 'docker-registry|mavenrepo|ponnet'); |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 30 | do |
| 31 | echo "Purging chart: \${hchart}" |
| 32 | helm delete --purge "\${hchart}" |
| 33 | done |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 34 | """ |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 35 | timeout(5) { |
| 36 | waitUntil { |
| 37 | helm_deleted = sh returnStdout: true, script: """ |
| 38 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
Luca Prete | b496667 | 2018-08-29 16:49:48 -0700 | [diff] [blame] | 39 | helm ls -q | grep -E -v 'docker-registry|mavenrepo|ponnet' | wc -l |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 40 | """ |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 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 && |
Luca Prete | b496667 | 2018-08-29 16:49:48 -0700 | [diff] [blame] | 48 | kubectl get pods --all-namespaces --no-headers | grep -E -v 'kube-system|docker-registry|mavenrepo|ponnet' | wc -l |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 49 | """ |
| 50 | return kubectl_deleted.toInteger() == 0 |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 51 | } |
| 52 | } |
| 53 | } |
| 54 | } |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 55 | dir ("helm-charts") { |
| 56 | stage('Install Voltha Kafka') { |
| 57 | timeout(10) { |
| 58 | sh returnStdout: true, script: """ |
| 59 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
Kailash Khalasi | def2f4e | 2018-09-17 10:39:14 -0700 | [diff] [blame^] | 60 | helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator |
| 61 | helm install -f examples/kafka-single.yaml --version 0.8.8 -n voltha-kafka incubator/kafka |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 62 | """ |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 63 | } |
| 64 | timeout(10) { |
| 65 | waitUntil { |
| 66 | kafka_instances_running = sh returnStdout: true, script: """ |
| 67 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 68 | kubectl get pods | grep voltha-kafka | grep -i running | grep 1/1 | wc -l |
| 69 | """ |
| 70 | return kafka_instances_running.toInteger() == 2 |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | stage('Install voltha') { |
| 75 | timeout(10) { |
| 76 | sh returnStdout: true, script: """ |
| 77 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 78 | helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ |
| 79 | helm dep build voltha |
| 80 | helm install -n voltha -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml --set etcd-operator.customResources.createEtcdClusterCRD=false voltha |
Matteo Scandolo | a6e1f9d | 2018-08-29 17:23:19 -0700 | [diff] [blame] | 81 | helm upgrade -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml --set etcd-operator.customResources.createEtcdClusterCRD=true voltha ./voltha |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 82 | """ |
| 83 | } |
| 84 | timeout(10) { |
| 85 | waitUntil { |
| 86 | voltha_completed = sh returnStdout: true, script: """ |
| 87 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 88 | kubectl get pods -n voltha | grep -i running | grep 1/1 | wc -l |
| 89 | """ |
| 90 | return voltha_completed.toInteger() == 8 |
| 91 | } |
| 92 | } |
| 93 | } |
| 94 | stage('Install CORD Kafka') { |
| 95 | timeout(10) { |
| 96 | sh returnStdout: true, script: """ |
| 97 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
Kailash Khalasi | def2f4e | 2018-09-17 10:39:14 -0700 | [diff] [blame^] | 98 | helm install -f examples/kafka-single.yaml --version 0.8.8 -n cord-kafka incubator/kafka |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 99 | """ |
| 100 | } |
| 101 | timeout(10) { |
| 102 | waitUntil { |
| 103 | kafka_instances_running = sh returnStdout: true, script: """ |
| 104 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 105 | kubectl get pods | grep cord-kafka | grep -i running | grep 1/1 | wc -l |
| 106 | """ |
| 107 | return kafka_instances_running.toInteger() == 2 |
| 108 | } |
| 109 | } |
| 110 | } |
| 111 | stage('Install ONOS') { |
| 112 | timeout(10) { |
| 113 | sh returnStdout: true, script: """ |
| 114 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
Luca Prete | 5a97015 | 2018-08-29 15:20:47 -0700 | [diff] [blame] | 115 | helm install -n onos -f configs/onos.yaml -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml onos |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 116 | """ |
| 117 | } |
| 118 | timeout(10) { |
| 119 | waitUntil { |
| 120 | onos_completed = sh returnStdout: true, script: """ |
| 121 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
Luca Prete | b1ae41b | 2018-08-28 16:47:54 -0700 | [diff] [blame] | 122 | kubectl get pods | grep -i onos | grep -i running | grep 1/1 | wc -l |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 123 | """ |
| 124 | return onos_completed.toInteger() == 1 |
| 125 | } |
| 126 | } |
| 127 | } |
| 128 | stage('Install xos-core') { |
| 129 | timeout(10) { |
| 130 | sh returnStdout: true, script: """ |
| 131 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 132 | helm dep update xos-core |
| 133 | helm install -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n xos-core xos-core |
| 134 | """ |
| 135 | } |
| 136 | timeout(10) { |
| 137 | waitUntil { |
| 138 | xos_core_completed = sh returnStdout: true, script: """ |
| 139 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 140 | kubectl get pods | grep -i xos | grep -i running | grep 1/1 | wc -l |
| 141 | """ |
| 142 | return xos_core_completed.toInteger() == 7 |
| 143 | } |
| 144 | } |
| 145 | } |
| 146 | stage('Install att-workflow') { |
| 147 | timeout(10) { |
| 148 | sh returnStdout: true, script: """ |
| 149 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 150 | helm dep update xos-profiles/att-workflow |
| 151 | helm install -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n att-workflow xos-profiles/att-workflow |
| 152 | """ |
| 153 | } |
| 154 | timeout(10) { |
| 155 | waitUntil { |
| 156 | att_workflow_tosca_completed = sh returnStdout: true, script: """ |
| 157 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 158 | kubectl get pods | grep -i att-workflow-tosca-loader | grep -i completed | wc -l |
| 159 | """ |
| 160 | return att_workflow_tosca_completed.toInteger() == 1 |
| 161 | } |
| 162 | } |
| 163 | } |
| 164 | stage('Install base-kubernetes') { |
| 165 | timeout(10) { |
| 166 | sh returnStdout: true, script: """ |
| 167 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 168 | helm dep update xos-profiles/base-kubernetes |
| 169 | helm install -f ../${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n base-kubernetes xos-profiles/base-kubernetes |
| 170 | """ |
| 171 | } |
| 172 | timeout(10) { |
| 173 | waitUntil { |
| 174 | base_kubernetes_tosca_running = sh returnStdout: true, script: """ |
| 175 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 176 | kubectl get pods | grep -i base-kubernetes-tosca-loader | grep -i completed | wc -l |
| 177 | """ |
| 178 | return base_kubernetes_tosca_running.toInteger() == 1 |
| 179 | } |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 180 | } |
| 181 | } |
| 182 | } |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 183 | stage('Reinstall OLT software') { |
| 184 | for(int i=0; i < deployment_config.olts.size(); i++) { |
| 185 | sh returnStdout: true, script: """ |
| 186 | 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' |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 187 | """ |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 188 | timeout(5) { |
| 189 | waitUntil { |
| 190 | olt_sw_present = sh returnStdout: true, script: """ |
| 191 | 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' |
| 192 | """ |
| 193 | return olt_sw_present.toInteger() == 0 |
| 194 | } |
| 195 | } |
| 196 | sh returnStdout: true, script: """ |
| 197 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} "dpkg --install ${oltDebVersion}" |
| 198 | """ |
| 199 | timeout(5) { |
| 200 | waitUntil { |
| 201 | olt_sw_present = sh returnStdout: true, script: """ |
| 202 | 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' |
| 203 | """ |
| 204 | return olt_sw_present.toInteger() == 1 |
| 205 | } |
| 206 | } |
| 207 | // If the OLT is connected to a 40G switch interface, set the NNI port to be downgraded |
| 208 | if ("${deployment_config.olts[i].fortygig}" != null && "${deployment_config.olts[i].fortygig}" == 'true') { |
| 209 | sh returnStdout: true, script: """ |
| 210 | 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' |
| 211 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} '/opt/bcm68620/svk_init.sh' |
| 212 | """ |
| 213 | } |
| 214 | } |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 215 | } |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 216 | stage('Restart OLT processes') { |
| 217 | for(int i=0; i < deployment_config.olts.size(); i++) { |
| 218 | timeout(5) { |
| 219 | sh returnStdout: true, script: """ |
| 220 | ssh-keyscan -H ${deployment_config.olts[i].ip} >> ~/.ssh/known_hosts |
| 221 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'service bal_core_dist stop' || true |
| 222 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'service openolt stop' || true |
| 223 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} '> /var/log/bal_core_dist.log' |
| 224 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} '> /var/log/openolt.log' |
| 225 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'service bal_core_dist start &' |
| 226 | sleep 5 |
| 227 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'service openolt start &' |
| 228 | """ |
| 229 | } |
| 230 | timeout(15) { |
| 231 | waitUntil { |
Kailash Khalasi | 23b693c | 2018-09-14 14:46:50 -0700 | [diff] [blame] | 232 | 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 /var/log/openolt.log | grep \"oper_state: up\" | wc -l'" |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 233 | return onu_discovered.toInteger() > 0 |
| 234 | } |
| 235 | } |
| 236 | } |
| 237 | } |
Kailash Khalasi | 4d18e20 | 2018-09-14 13:32:16 -0700 | [diff] [blame] | 238 | if ( params.configurePod ) { |
Kailash Khalasi | def2f4e | 2018-09-17 10:39:14 -0700 | [diff] [blame^] | 239 | dir ("${configBaseDir}/${configToscaDir}/att-workflow") { |
Kailash Khalasi | 4d18e20 | 2018-09-14 13:32:16 -0700 | [diff] [blame] | 240 | stage('Configure R-CORD - Fabric and whitelist') { |
| 241 | timeout(1) { |
| 242 | waitUntil { |
| 243 | out_fabric = sh returnStdout: true, script: """ |
| 244 | 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 |
| 245 | """ |
| 246 | return out_fabric.toInteger() == 1 |
| 247 | } |
Kailash Khalasi | c1a90f1 | 2018-09-13 13:13:22 -0700 | [diff] [blame] | 248 | } |
| 249 | } |
Kailash Khalasi | 4d18e20 | 2018-09-14 13:32:16 -0700 | [diff] [blame] | 250 | stage('Configure R-CORD - Subscriber') { |
| 251 | timeout(1) { |
| 252 | waitUntil { |
| 253 | out_subscriber = sh returnStdout: true, script: """ |
| 254 | 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 |
| 255 | """ |
| 256 | return out_subscriber.toInteger() == 1 |
| 257 | } |
Kailash Khalasi | c1a90f1 | 2018-09-13 13:13:22 -0700 | [diff] [blame] | 258 | } |
| 259 | } |
Kailash Khalasi | 4d18e20 | 2018-09-14 13:32:16 -0700 | [diff] [blame] | 260 | stage('Configure R-CORD - OLT') { |
| 261 | timeout(1) { |
| 262 | waitUntil { |
| 263 | out_olt = sh returnStdout: true, script: """ |
| 264 | 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 |
| 265 | """ |
| 266 | return out_olt.toInteger() == 1 |
| 267 | } |
Kailash Khalasi | c1a90f1 | 2018-09-13 13:13:22 -0700 | [diff] [blame] | 268 | } |
| 269 | } |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 270 | } |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 271 | } |
Luca Prete | b3029bd | 2018-08-28 16:31:39 -0700 | [diff] [blame] | 272 | currentBuild.result = 'SUCCESS' |
| 273 | } catch (err) { |
| 274 | currentBuild.result = 'FAILURE' |
| 275 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false]) |
| 276 | } |
| 277 | echo "RESULT: ${currentBuild.result}" |
Suchitra Vemuri | ddb2779 | 2018-08-23 15:29:42 -0700 | [diff] [blame] | 278 | } |
| 279 | } |