Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -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}") { |
Andrea Campanella | 80dcae0 | 2020-01-28 11:23:26 +0100 | [diff] [blame] | 16 | def withKind = false |
| 17 | if (params.withKind != null){ |
| 18 | withKind = params.withKind |
| 19 | } |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 20 | timeout (100) { |
| 21 | try { |
| 22 | stage ("Parse deployment configuration file") { |
| 23 | sh returnStdout: true, script: "rm -rf helm-repo-tools ${configBaseDir} voltha-system-tests kind-voltha" |
| 24 | sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/helm-repo-tools" |
| 25 | sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}" |
| 26 | sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/voltha-system-tests" |
| 27 | sh returnStdout: true, script: "git clone https://github.com/ciena/kind-voltha.git" |
| 28 | deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml" |
| 29 | } |
| 30 | stage('Clean up') { |
| 31 | timeout(10) { |
| 32 | sh returnStdout: true, script: """ |
| 33 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 34 | for hchart in \$(helm list -q | grep -E -v 'docker-registry|mavenrepo|ponnet'); |
| 35 | do |
| 36 | echo "Purging chart: \${hchart}" |
| 37 | helm delete --purge "\${hchart}" |
| 38 | done |
| 39 | """ |
| 40 | timeout(5) { |
| 41 | waitUntil { |
| 42 | helm_deleted = sh returnStdout: true, script: """ |
| 43 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 44 | helm ls -q | grep -E -v 'docker-registry|mavenrepo|ponnet' | wc -l |
| 45 | """ |
| 46 | return helm_deleted.toInteger() == 0 |
| 47 | } |
| 48 | } |
| 49 | timeout(5) { |
| 50 | waitUntil { |
| 51 | kubectl_deleted = sh returnStdout: true, script: """ |
| 52 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf && |
| 53 | kubectl get pods --all-namespaces --no-headers | grep -E -v 'kube-system|docker-registry|mavenrepo|ponnet' | wc -l |
| 54 | """ |
| 55 | return kubectl_deleted.toInteger() == 0 |
| 56 | } |
| 57 | } |
Andrea Campanella | 80dcae0 | 2020-01-28 11:23:26 +0100 | [diff] [blame] | 58 | timeout(1) { |
| 59 | sh returnStdout: true, script: """ |
| 60 | port_fwd_pid=`ps -ax | grep "port-forward -n default service/onos-openflow" | grep -v "grep" | awk '{print \$1}'` |
| 61 | if [[ "" != "\$port_fwd_pid" ]]; then |
| 62 | kill -9 \$port_fwd_pid > /dev/null 2>&1 |
| 63 | fi |
| 64 | """ |
| 65 | } |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 66 | } |
| 67 | } |
Suchitra Vemuri | 4ac4463 | 2019-11-12 13:41:08 -0800 | [diff] [blame] | 68 | stage('Install Voltha') { |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 69 | timeout(10) { |
| 70 | sh returnStdout: true, script: """ |
| 71 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 72 | cd kind-voltha/ |
Suchitra Vemuri | 4ac4463 | 2019-11-12 13:41:08 -0800 | [diff] [blame] | 73 | if ( ${released} ); then |
Suchitra Vemuri | a7dae32 | 2020-02-19 22:38:18 -0800 | [diff] [blame] | 74 | export EXTRA_HELM_FLAGS="--set defaults.image_tag=null,images.onos.tag=4.0.0,images.onos.repository=voltha/voltha-onos" |
Suchitra Vemuri | 946da61 | 2020-02-25 16:36:30 -0800 | [diff] [blame] | 75 | git clone -b '2.3.0rc1' --single-branch --depth 1 https://gerrit.opencord.org/voltha-helm-charts.git |
| 76 | cd voltha-helm-charts |
| 77 | helm dep update voltha-adapter-openolt |
| 78 | helm dep update voltha-adapter-openonu |
| 79 | helm dep update voltha-adapter-simulated |
| 80 | helm dep update voltha |
| 81 | export VOLTHA_ADAPTER_OPEN_OLT_CHART=voltha-helm-charts/voltha-adapter-openolt |
| 82 | export VOLTHA_ADAPTER_OPEN_ONU_CHART=voltha-helm-charts/voltha-adapter-openonu |
| 83 | export VOLTHA_ADAPTER_SIM_CHART=voltha-helm-charts/voltha-adapter-simulated |
| 84 | export VOLTHA_CHART=voltha-helm-charts/voltha |
| 85 | cd $WORKSPACE/kind-voltha |
Suchitra Vemuri | 225a2c8 | 2020-03-04 18:16:40 -0800 | [diff] [blame] | 86 | elif ( ${ofagentGo} ); then |
| 87 | export EXTRA_HELM_FLAGS='-f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/voltha/${configFileName}-ofagent-go.yml' |
Suchitra Vemuri | 4ac4463 | 2019-11-12 13:41:08 -0800 | [diff] [blame] | 88 | else |
| 89 | export EXTRA_HELM_FLAGS='-f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/voltha/${configFileName}.yml' |
| 90 | fi |
| 91 | |
| 92 | # VOL-2194 ONOS SSH and REST ports hardcoded to 30115/30120 in tests |
| 93 | ONOS_SSH_PORT=30115 ONOS_API_PORT=30120 VOLTHA_LOG_LEVEL=DEBUG WITH_SIM_ADAPTERS=n WITH_RADIUS=y WITH_TP=yes DEPLOY_K8S=no INSTALL_KUBECTL=no INSTALL_HELM=no FANCY=0 ./voltha up |
| 94 | |
| 95 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c |
| 96 | kubectl get nodes -o wide |
| 97 | kubectl get pods -n voltha -o wide |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 98 | """ |
Suchitra Vemuri | 4ac4463 | 2019-11-12 13:41:08 -0800 | [diff] [blame] | 99 | } |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 100 | } |
Andrea Campanella | 80dcae0 | 2020-01-28 11:23:26 +0100 | [diff] [blame] | 101 | if ( withKind && deployment_config.fabric_switches.size() > 0 ) { |
| 102 | stage('OpenFlow port forward for aggregation switch') { |
| 103 | timeout(1) { |
| 104 | sh returnStdout: true, script: """ |
| 105 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 106 | #This uses the default route out, porperly configured is the management |
| 107 | mgmt_address=`ip route get 1 | awk '{print \$NF;exit}'` |
Andrea Campanella | 8eeba9f | 2020-03-10 10:51:25 +0100 | [diff] [blame] | 108 | JENKINS_NODE_COOKIE=dontkill kubectl port-forward -n default service/onos-openflow --address=\$mgmt_address 6653:6653 >> /dev/null 2>&1 & |
Andrea Campanella | 80dcae0 | 2020-01-28 11:23:26 +0100 | [diff] [blame] | 109 | """ |
| 110 | } |
| 111 | } |
| 112 | } |
Suchitra Vemuri | 225a2c8 | 2020-03-04 18:16:40 -0800 | [diff] [blame] | 113 | if ( params.configurePod && params.profile != "Default" ) { |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 114 | stage('Push Tech-Profile') { |
| 115 | timeout(1) { |
| 116 | out_push_tp = sh returnStatus: true, script: """ |
| 117 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 118 | etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}') |
Suchitra Vemuri | 4ac4463 | 2019-11-12 13:41:08 -0800 | [diff] [blame] | 119 | kubectl cp $WORKSPACE/voltha-system-tests/tests/data/TechProfile-${profile}.json voltha/\$etcd_container:/tmp/flexpod.json |
| 120 | put_result=\$(kubectl exec -it \$etcd_container -n voltha -- /bin/sh -c 'cat /tmp/flexpod.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/XGS-PON/64') |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 121 | """ |
| 122 | return out_push_tp == 0 |
| 123 | } |
| 124 | timeout(1) { |
| 125 | out_get_tp = sh returnStatus: true, script: """ |
| 126 | etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}') |
Suchitra Vemuri | 4ac4463 | 2019-11-12 13:41:08 -0800 | [diff] [blame] | 127 | get_result=\$(kubectl exec -it \$etcd_container -n voltha -- /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/technology_profiles/XGS-PON/64') |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 128 | """ |
| 129 | return out_get_tp == 0 |
| 130 | } |
| 131 | } |
Suchitra Vemuri | 4ac4463 | 2019-11-12 13:41:08 -0800 | [diff] [blame] | 132 | } |
| 133 | stage('Push Sadis-config') { |
| 134 | timeout(1) { |
| 135 | sadis_out = sh returnStatus: true, script: """ |
Suchitra Vemuri | d3bf85c | 2020-02-14 14:15:39 -0800 | [diff] [blame] | 136 | if [[ "${onosVersion}" == "1.13.9" ]]; then |
Suchitra Vemuri | c735bab | 2020-02-05 14:55:00 -0800 | [diff] [blame] | 137 | curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:30120/onos/v1/network/configuration --data @$WORKSPACE/voltha-system-tests/tests/data/${configFileName}-${onosVersion}-sadis.json |
| 138 | else |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 139 | curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:30120/onos/v1/network/configuration --data @$WORKSPACE/voltha-system-tests/tests/data/${configFileName}-sadis.json |
Suchitra Vemuri | c735bab | 2020-02-05 14:55:00 -0800 | [diff] [blame] | 140 | fi |
| 141 | |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 142 | """ |
| 143 | return sadis_out == 0 |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 144 | } |
Suchitra Vemuri | 4ac4463 | 2019-11-12 13:41:08 -0800 | [diff] [blame] | 145 | } |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 146 | if ( params.reinstallOlt ) { |
| 147 | stage('Reinstall OLT software') { |
| 148 | for(int i=0; i < deployment_config.olts.size(); i++) { |
| 149 | sh returnStdout: true, script: """ |
| 150 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} "dpkg --install ${oltDebVersion}" |
| 151 | sleep 10 |
| 152 | """ |
| 153 | timeout(5) { |
| 154 | waitUntil { |
| 155 | olt_sw_present = sh returnStdout: true, script: """ |
| 156 | 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' |
Suchitra Vemuri | f574b94 | 2020-01-27 16:39:58 -0800 | [diff] [blame] | 157 | if ( ${deployment_config.olts[i].fortygig} ); then |
| 158 | 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' |
| 159 | fi |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 160 | """ |
| 161 | return olt_sw_present.toInteger() == 1 |
| 162 | } |
| 163 | } |
| 164 | } |
| 165 | } |
| 166 | stage('Restart OLT processes') { |
| 167 | for(int i=0; i < deployment_config.olts.size(); i++) { |
| 168 | timeout(5) { |
| 169 | sh returnStdout: true, script: """ |
| 170 | ssh-keyscan -H ${deployment_config.olts[i].ip} >> ~/.ssh/known_hosts |
| 171 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'reboot' || true |
| 172 | sleep 120 |
| 173 | """ |
| 174 | } |
| 175 | timeout(15) { |
| 176 | waitUntil { |
| 177 | devprocess = sh returnStdout: true, script: "sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'ps -ef | grep dev_mgmt_daemon | wc -l'" |
| 178 | return devprocess.toInteger() > 0 |
| 179 | } |
| 180 | } |
| 181 | timeout(15) { |
| 182 | waitUntil { |
| 183 | openoltprocess = sh returnStdout: true, script: "sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'ps -ef | grep openolt | wc -l'" |
| 184 | return openoltprocess.toInteger() > 0 |
| 185 | } |
| 186 | } |
| 187 | } |
| 188 | } |
| 189 | } |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 190 | if ( deployment_config.fabric_switches.size() > 0 ) { |
| 191 | stage('Switch Configurations in ONOS') { |
| 192 | timeout(1) { |
| 193 | netcfg_out = sh returnStatus: true, script: """ |
| 194 | curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:30120/onos/v1/network/configuration --data @$WORKSPACE/${configBaseDir}/${configToscaDir}/voltha/${configFileName}-onos-netcfg-switch.json |
| 195 | curl -sSL --user karaf:karaf -X POST http://${deployment_config.nodes[0].ip}:30120/onos/v1/applications/org.onosproject.segmentrouting/active |
Suchitra Vemuri | c735bab | 2020-02-05 14:55:00 -0800 | [diff] [blame] | 196 | |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 197 | """ |
| 198 | return netcfg_out == 0 |
| 199 | } |
| 200 | timeout(1) { |
| 201 | waitUntil { |
| 202 | sr_active_out = sh returnStatus: true, script: """ |
You Wang | eb76aeb | 2019-12-09 22:08:23 -0800 | [diff] [blame] | 203 | ssh-keygen -R [${deployment_config.nodes[0].ip}]:30115 |
Suchitra Vemuri | 6db64b2 | 2019-12-09 13:00:54 -0800 | [diff] [blame] | 204 | ssh-keyscan -p 30115 -H ${deployment_config.nodes[0].ip} >> ~/.ssh/known_hosts |
| 205 | sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.dhcpl2relay" |
| 206 | sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.aaa" |
| 207 | sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.olt" |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 208 | curl -sSL --user karaf:karaf -X GET http://${deployment_config.nodes[0].ip}:30120/onos/v1/applications/org.onosproject.segmentrouting | jq '.state' | grep ACTIVE |
| 209 | """ |
| 210 | return sr_active_out == 0 |
| 211 | } |
| 212 | } |
| 213 | timeout(1) { |
| 214 | // FIXME support multiple OLTs |
| 215 | for(int i=0; i < deployment_config.hosts.src.size(); i++) { |
| 216 | xconnect_out = sh returnStatus: true, script: """ |
Suchitra Vemuri | c4d9293 | 2020-01-16 21:50:30 -0800 | [diff] [blame] | 217 | version=\$(sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "summary" | grep version) |
Suchitra Vemuri | d3bf85c | 2020-02-14 14:15:39 -0800 | [diff] [blame] | 218 | sleep 10 |
Suchitra Vemuri | c4d9293 | 2020-01-16 21:50:30 -0800 | [diff] [blame] | 219 | if [[ \$version == *"version=2.2"* ]]; then |
| 220 | curl -X POST --user karaf:karaf --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"deviceId": "${deployment_config.fabric_switches[0].device_id}", "vlanId": "${deployment_config.hosts.src[i].s_tag}", "endpoints": [${deployment_config.fabric_switches[0].bngPort},${deployment_config.fabric_switches[0].oltPort}]}' 'http://${deployment_config.nodes[0].ip}:30120/onos/segmentrouting/xconnect' |
| 221 | else |
| 222 | curl -X POST --user karaf:karaf --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"deviceId": "${deployment_config.fabric_switches[0].device_id}", "vlanId": "${deployment_config.hosts.src[i].s_tag}", "ports": [${deployment_config.fabric_switches[0].bngPort},${deployment_config.fabric_switches[0].oltPort}]}' 'http://${deployment_config.nodes[0].ip}:30120/onos/segmentrouting/xconnect' |
| 223 | fi |
Suchitra Vemuri | a8e7bb2 | 2019-10-22 15:50:05 -0700 | [diff] [blame] | 224 | """ |
| 225 | } |
| 226 | } |
| 227 | } |
| 228 | } |
| 229 | currentBuild.result = 'SUCCESS' |
| 230 | } catch (err) { |
| 231 | currentBuild.result = 'FAILURE' |
| 232 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false]) |
| 233 | throw err |
| 234 | } |
| 235 | echo "RESULT: ${currentBuild.result}" |
| 236 | } |
| 237 | } |