blob: cac600e8bcee1345ee8639b54d7a3ab5805e9002 [file] [log] [blame]
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -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}") {
Andrea Campanella80dcae02020-01-28 11:23:26 +010016 def withKind = false
17 if (params.withKind != null){
18 withKind = params.withKind
19 }
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070020 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 Campanella80dcae02020-01-28 11:23:26 +010058 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 Vemuria8e7bb22019-10-22 15:50:05 -070066 }
67 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080068 stage('Install Voltha') {
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070069 timeout(10) {
70 sh returnStdout: true, script: """
71 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
72 cd kind-voltha/
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080073 if ( ${released} ); then
Suchitra Vemuria7dae322020-02-19 22:38:18 -080074 export EXTRA_HELM_FLAGS="--set defaults.image_tag=null,images.onos.tag=4.0.0,images.onos.repository=voltha/voltha-onos"
Suchitra Vemuri946da612020-02-25 16:36:30 -080075 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 Vemuri225a2c82020-03-04 18:16:40 -080086 elif ( ${ofagentGo} ); then
87 export EXTRA_HELM_FLAGS='-f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/voltha/${configFileName}-ofagent-go.yml'
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080088 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 Vemuria8e7bb22019-10-22 15:50:05 -070098 """
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080099 }
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700100 }
Andrea Campanella80dcae02020-01-28 11:23:26 +0100101 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 Campanella12d1ff02020-02-03 16:52:30 +0100108 bash -c "while true; do kubectl port-forward -n default service/onos-openflow --address=\$mgmt_address 6653:6653; done" >> /dev/null 2>&1 &
Andrea Campanella80dcae02020-01-28 11:23:26 +0100109 """
110 }
111 }
112 }
Suchitra Vemuri225a2c82020-03-04 18:16:40 -0800113 if ( params.configurePod && params.profile != "Default" ) {
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700114 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 Vemuri4ac44632019-11-12 13:41:08 -0800119 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 Vemuria8e7bb22019-10-22 15:50:05 -0700121 """
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 Vemuri4ac44632019-11-12 13:41:08 -0800127 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 Vemuria8e7bb22019-10-22 15:50:05 -0700128 """
129 return out_get_tp == 0
130 }
131 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -0800132 }
133 stage('Push Sadis-config') {
134 timeout(1) {
135 sadis_out = sh returnStatus: true, script: """
Suchitra Vemurid3bf85c2020-02-14 14:15:39 -0800136 if [[ "${onosVersion}" == "1.13.9" ]]; then
Suchitra Vemuric735bab2020-02-05 14:55:00 -0800137 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 Vemuria8e7bb22019-10-22 15:50:05 -0700139 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 Vemuric735bab2020-02-05 14:55:00 -0800140 fi
141
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700142 """
143 return sadis_out == 0
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700144 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -0800145 }
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700146 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 Vemurif574b942020-01-27 16:39:58 -0800157 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 Vemuria8e7bb22019-10-22 15:50:05 -0700160 """
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 Vemuria8e7bb22019-10-22 15:50:05 -0700190 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 Vemuric735bab2020-02-05 14:55:00 -0800196
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700197 """
198 return netcfg_out == 0
199 }
200 timeout(1) {
201 waitUntil {
202 sr_active_out = sh returnStatus: true, script: """
You Wangeb76aeb2019-12-09 22:08:23 -0800203 ssh-keygen -R [${deployment_config.nodes[0].ip}]:30115
Suchitra Vemuri6db64b22019-12-09 13:00:54 -0800204 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 Vemuria8e7bb22019-10-22 15:50:05 -0700208 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 Vemuric4d92932020-01-16 21:50:30 -0800217 version=\$(sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "summary" | grep version)
Suchitra Vemurid3bf85c2020-02-14 14:15:39 -0800218 sleep 10
Suchitra Vemuric4d92932020-01-16 21:50:30 -0800219 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 Vemuria8e7bb22019-10-22 15:50:05 -0700224 """
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}