blob: 5fcd0c01e3487153db9ba753671d79dcdb865fd9 [file] [log] [blame]
Kailash6f5acb62019-08-28 14:38:45 -07001// 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
15node ("${TestNodeName}") {
Suchitra Vemurib4f365f2020-03-27 15:09:36 -070016 def withKind = false
17 if (params.withKind != null){
18 withKind = params.withKind
19 }
Kailash6f5acb62019-08-28 14:38:45 -070020 timeout (100) {
21 try {
22 stage ("Parse deployment configuration file") {
Suchitra Vemurib4f365f2020-03-27 15:09:36 -070023 sh returnStdout: true, script: "rm -rf ${configBaseDir} voltha-system-tests kind-voltha"
Suchitra Vemurie514b8c2019-09-23 19:37:18 -070024 sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
Suchitra Vemurib4f365f2020-03-27 15:09:36 -070025 sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/voltha-system-tests"
Andrea Campanellaf60f8832020-04-06 17:42:28 +020026 if (params.branch == "voltha-2.3") {
Suchitra Vemuri82bbd292020-04-08 21:09:39 -070027 sh returnStdout: true, script: "git clone -b 3.0.3 https://github.com/ciena/kind-voltha.git"
Andrea Campanellaf60f8832020-04-06 17:42:28 +020028 } else {
29 sh returnStdout: true, script: "git clone https://github.com/ciena/kind-voltha.git"
30 }
Suchitra Vemurib4f365f2020-03-27 15:09:36 -070031 if ( params.workFlow == "DT" ) {
32 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
33 }
34 else
35 {
36 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
37 }
Kailash6f5acb62019-08-28 14:38:45 -070038 }
39 stage('Clean up') {
You Wang25e58612019-10-01 16:30:28 -070040 timeout(10) {
Kailash6f5acb62019-08-28 14:38:45 -070041 sh returnStdout: true, script: """
42 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Matteo Scandolo1294aeb2019-09-24 16:20:32 -070043 for hchart in \$(helm list -q | grep -E -v 'docker-registry|mavenrepo|ponnet');
44 do
45 echo "Purging chart: \${hchart}"
46 helm delete --purge "\${hchart}"
47 done
Kailash6f5acb62019-08-28 14:38:45 -070048 """
49 timeout(5) {
50 waitUntil {
51 helm_deleted = sh returnStdout: true, script: """
52 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
53 helm ls -q | grep -E -v 'docker-registry|mavenrepo|ponnet' | wc -l
54 """
55 return helm_deleted.toInteger() == 0
56 }
57 }
58 timeout(5) {
59 waitUntil {
60 kubectl_deleted = sh returnStdout: true, script: """
61 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
62 kubectl get pods --all-namespaces --no-headers | grep -E -v 'kube-system|docker-registry|mavenrepo|ponnet' | wc -l
63 """
64 return kubectl_deleted.toInteger() == 0
65 }
66 }
Suchitra Vemurib4f365f2020-03-27 15:09:36 -070067 timeout(1) {
Hung-Wei Chiu2fa15622020-04-07 16:40:35 -070068 sh returnStdout: false, script: """
69 #Remove all while true; do kubectl port-forward ...done; rules
70 for port_fwd_id in `ps -ax | grep "port-forward" | grep -E "onos|voltha" | grep "while true"| awk '{print \$1}'`;
71 do
72 cat /proc/\$port_fwd_id/cmdline
73 kill -9 \$port_fwd_id
74 done
75
76 #Remove all kubectl port-forward rules
77 for port_fwd_id in `ps -ax | grep "port-forward" | grep -E "onos|voltha" | awk '{print \$1}'`;
78 do
79 cat /proc/\$port_fwd_id/cmdline
80 kill -9 \$port_fwd_id
81 done
Suchitra Vemurib4f365f2020-03-27 15:09:36 -070082 """
83 }
Kailash6f5acb62019-08-28 14:38:45 -070084 }
85 }
Suchitra Vemuri1934abc2019-11-05 12:41:11 -080086 stage('Install Voltha') {
Kailash6f5acb62019-08-28 14:38:45 -070087 timeout(10) {
88 sh returnStdout: true, script: """
89 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
90 cd kind-voltha/
Suchitra Vemurib4f365f2020-03-27 15:09:36 -070091 if [ "${branch}" != "master" ]; then
92 cd $WORKSPACE/kind-voltha
93 source releases/${branch}
Suchitra Vemurib9483862019-11-05 21:37:29 -080094 else
Andy Bavier7cee6f42019-11-05 16:49:47 -070095 export EXTRA_HELM_FLAGS='-f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/voltha/${configFileName}.yml'
Suchitra Vemuri1934abc2019-11-05 12:41:11 -080096 fi
Andy Bavier7cee6f42019-11-05 16:49:47 -070097
98 # VOL-2194 ONOS SSH and REST ports hardcoded to 30115/30120 in tests
hwchiu0a39d512020-04-04 05:00:29 +000099 # JENKINS_NODE_COOKIE=dontKillMe ask Jenkins doesn't kill the proces after this job. we want the `while true; do kubectl port-forward` keep alive
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700100 if [[ "${workFlow}" == "DT" ]]; then
hwchiu0a39d512020-04-04 05:00:29 +0000101 JENKINS_NODE_COOKIE=dontKillMe ONOS_SSH_PORT=30115 ONOS_API_PORT=30120 VOLTHA_LOG_LEVEL=DEBUG WITH_SIM_ADAPTERS=n WITH_TP=yes DEPLOY_K8S=no INSTALL_KUBECTL=no INSTALL_HELM=no WITH_EAPOL=no WITH_DHCP=no WITH_IGMP=no WITH_RADIUS=no FANCY=0 ./voltha up
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700102 else
hwchiu0a39d512020-04-04 05:00:29 +0000103 JENKINS_NODE_COOKIE=dontKillMe 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
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700104 fi
Andy Bavier7cee6f42019-11-05 16:49:47 -0700105
Suchitra Vemuri1934abc2019-11-05 12:41:11 -0800106 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
107 kubectl get nodes -o wide
108 kubectl get pods -n voltha -o wide
Kailash6f5acb62019-08-28 14:38:45 -0700109 """
Suchitra Vemuri1934abc2019-11-05 12:41:11 -0800110 }
Kailash6f5acb62019-08-28 14:38:45 -0700111 }
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700112 if ( withKind && deployment_config.fabric_switches.size() > 0 ) {
113 stage('OpenFlow port forward for aggregation switch') {
114 timeout(1) {
115 sh returnStdout: true, script: """
116 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
117 #This uses the default route out, porperly configured is the management
118 mgmt_address=`ip route get 1 | awk '{print \$NF;exit}'`
119 JENKINS_NODE_COOKIE=dontkill kubectl port-forward -n default service/onos-openflow --address=\$mgmt_address 6653:6653 >> /dev/null 2>&1 &
120 """
121 }
122 }
123 }
124 if ( params.configurePod && params.profile != "Default" ) {
Suchitra Vemuri72680092019-10-03 12:39:20 -0700125 stage('Push Tech-Profile') {
126 timeout(1) {
127 out_push_tp = sh returnStatus: true, script: """
128 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
129 etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}')
hwchiuc77c7d22019-10-18 13:58:35 -0700130 kubectl cp $WORKSPACE/voltha-system-tests/tests/data/TechProfile-${profile}.json voltha/\$etcd_container:/tmp/flexpod.json
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700131 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 Vemuri72680092019-10-03 12:39:20 -0700132 """
133 return out_push_tp == 0
134 }
135 timeout(1) {
136 out_get_tp = sh returnStatus: true, script: """
137 etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}')
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700138 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 Vemuri72680092019-10-03 12:39:20 -0700139 """
140 return out_get_tp == 0
141 }
hwchiuc77c7d22019-10-18 13:58:35 -0700142 }
143 }
144 stage('Push Sadis-config') {
145 timeout(1) {
146 sadis_out = sh returnStatus: true, script: """
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700147 if [[ "${workFlow}" == "DT" ]]; then
148 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-DT.json
149 else
Suchitra Vemuri72680092019-10-03 12:39:20 -0700150 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 Vemurib4f365f2020-03-27 15:09:36 -0700151 fi
152 """
153 return sadis_out == 0
You Wangb9526e62019-10-07 15:25:48 -0700154 }
hwchiuc77c7d22019-10-18 13:58:35 -0700155 }
Kailash6f5acb62019-08-28 14:38:45 -0700156 if ( params.reinstallOlt ) {
157 stage('Reinstall OLT software') {
158 for(int i=0; i < deployment_config.olts.size(); i++) {
159 sh returnStdout: true, script: """
Kailash6f5acb62019-08-28 14:38:45 -0700160 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} "dpkg --install ${oltDebVersion}"
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700161 sleep 10
Kailash6f5acb62019-08-28 14:38:45 -0700162 """
163 timeout(5) {
164 waitUntil {
165 olt_sw_present = sh returnStdout: true, script: """
Andrea Campanellace9e9902020-04-07 18:29:42 +0200166 if [[ "${oltDebVersion}" == *"asfvolt16"* ]]; then
167 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'
168 else
169 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'dpkg --list | grep asgvolt64 | wc -l'
170 fi
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700171 if ( ${deployment_config.olts[i].fortygig} ); then
172 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'
173 fi
Kailash6f5acb62019-08-28 14:38:45 -0700174 """
Andrea Campanellace9e9902020-04-07 18:29:42 +0200175 return olt_sw_present.toInteger() > 0
Kailash6f5acb62019-08-28 14:38:45 -0700176 }
177 }
Kailash6f5acb62019-08-28 14:38:45 -0700178 }
179 }
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700180 stage('Restart OLT processes') {
Kailash6f5acb62019-08-28 14:38:45 -0700181 for(int i=0; i < deployment_config.olts.size(); i++) {
182 timeout(5) {
183 sh returnStdout: true, script: """
184 ssh-keyscan -H ${deployment_config.olts[i].ip} >> ~/.ssh/known_hosts
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700185 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'reboot' || true
186 sleep 120
Kailash6f5acb62019-08-28 14:38:45 -0700187 """
188 }
189 timeout(15) {
190 waitUntil {
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700191 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'"
192 return devprocess.toInteger() > 0
193 }
194 }
195 timeout(15) {
196 waitUntil {
197 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'"
198 return openoltprocess.toInteger() > 0
Kailash6f5acb62019-08-28 14:38:45 -0700199 }
200 }
201 }
202 }
203 }
Matteo Scandolo1294aeb2019-09-24 16:20:32 -0700204 if ( deployment_config.fabric_switches.size() > 0 ) {
You Wang25e58612019-10-01 16:30:28 -0700205 stage('Switch Configurations in ONOS') {
206 timeout(1) {
207 netcfg_out = sh returnStatus: true, script: """
208 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
209 curl -sSL --user karaf:karaf -X POST http://${deployment_config.nodes[0].ip}:30120/onos/v1/applications/org.onosproject.segmentrouting/active
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700210
You Wang25e58612019-10-01 16:30:28 -0700211 """
212 return netcfg_out == 0
213 }
214 timeout(1) {
215 waitUntil {
216 sr_active_out = sh returnStatus: true, script: """
You Wangeb76aeb2019-12-09 22:08:23 -0800217 ssh-keygen -R [${deployment_config.nodes[0].ip}]:30115
Suchitra Vemuric3257262019-12-05 19:06:42 -0800218 ssh-keyscan -p 30115 -H ${deployment_config.nodes[0].ip} >> ~/.ssh/known_hosts
219 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.dhcpl2relay"
220 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.aaa"
221 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.olt"
You Wang25e58612019-10-01 16:30:28 -0700222 curl -sSL --user karaf:karaf -X GET http://${deployment_config.nodes[0].ip}:30120/onos/v1/applications/org.onosproject.segmentrouting | jq '.state' | grep ACTIVE
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700223 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "cfg set org.onosproject.net.flow.impl.FlowRuleManager purgeOnDisconnection false"
Andrea Campanella086bcbb2020-04-01 09:56:23 +0200224 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "cfg set org.onosproject.net.meter.impl.MeterManager purgeOnDisconnection false"
You Wang25e58612019-10-01 16:30:28 -0700225 """
226 return sr_active_out == 0
227 }
228 }
229 timeout(1) {
230 // FIXME support multiple OLTs
231 for(int i=0; i < deployment_config.hosts.src.size(); i++) {
232 xconnect_out = sh returnStatus: true, script: """
Suchitra Vemurif82086d2020-01-16 19:55:16 -0800233 version=\$(sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "summary" | grep version)
Suchitra Vemurib4f365f2020-03-27 15:09:36 -0700234 sleep 10
Suchitra Vemurif82086d2020-01-16 19:55:16 -0800235 if [[ \$version == *"version=2.2"* ]]; then
236 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'
237 else
238 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'
239 fi
You Wang25e58612019-10-01 16:30:28 -0700240 """
241 }
242 }
Kailash6f5acb62019-08-28 14:38:45 -0700243 }
Matteo Scandolo1294aeb2019-09-24 16:20:32 -0700244 }
Kailash6f5acb62019-08-28 14:38:45 -0700245 currentBuild.result = 'SUCCESS'
246 } catch (err) {
247 currentBuild.result = 'FAILURE'
248 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
249 throw err
250 }
251 echo "RESULT: ${currentBuild.result}"
252 }
253}