blob: 58da200f0b8b596336bf5b6f20f9931fe2197881 [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}") {
16 timeout (100) {
17 try {
18 stage ("Parse deployment configuration file") {
19 sh returnStdout: true, script: "rm -rf helm-repo-tools ${configBaseDir} voltha-system-tests kind-voltha"
20 sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/helm-repo-tools"
21 sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
22 sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/voltha-system-tests"
23 sh returnStdout: true, script: "git clone https://github.com/ciena/kind-voltha.git"
24 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
25 }
26 stage('Clean up') {
27 timeout(10) {
28 sh returnStdout: true, script: """
29 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
30 for hchart in \$(helm list -q | grep -E -v 'docker-registry|mavenrepo|ponnet');
31 do
32 echo "Purging chart: \${hchart}"
33 helm delete --purge "\${hchart}"
34 done
35 """
36 timeout(5) {
37 waitUntil {
38 helm_deleted = sh returnStdout: true, script: """
39 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
40 helm ls -q | grep -E -v 'docker-registry|mavenrepo|ponnet' | wc -l
41 """
42 return helm_deleted.toInteger() == 0
43 }
44 }
45 timeout(5) {
46 waitUntil {
47 kubectl_deleted = sh returnStdout: true, script: """
48 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
49 kubectl get pods --all-namespaces --no-headers | grep -E -v 'kube-system|docker-registry|mavenrepo|ponnet' | wc -l
50 """
51 return kubectl_deleted.toInteger() == 0
52 }
53 }
54 }
55 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080056 stage('Install Voltha') {
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070057 timeout(10) {
58 sh returnStdout: true, script: """
59 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
60 cd kind-voltha/
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080061 if ( ${released} ); then
62 export EXTRA_HELM_FLAGS="--set defaults.image_tag=null,images.onos.tag=2.2.0"
63 else
64 export EXTRA_HELM_FLAGS='-f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/voltha/${configFileName}.yml'
65 fi
66
67 # VOL-2194 ONOS SSH and REST ports hardcoded to 30115/30120 in tests
68 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
69
70 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
71 kubectl get nodes -o wide
72 kubectl get pods -n voltha -o wide
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070073 """
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080074 }
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070075 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080076 if ( params.configurePod && params.profile != "Default") {
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070077 stage('Push Tech-Profile') {
78 timeout(1) {
79 out_push_tp = sh returnStatus: true, script: """
80 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
81 etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}')
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080082 kubectl cp $WORKSPACE/voltha-system-tests/tests/data/TechProfile-${profile}.json voltha/\$etcd_container:/tmp/flexpod.json
83 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 -070084 """
85 return out_push_tp == 0
86 }
87 timeout(1) {
88 out_get_tp = sh returnStatus: true, script: """
89 etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}')
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080090 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 -070091 """
92 return out_get_tp == 0
93 }
94 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080095 }
96 stage('Push Sadis-config') {
97 timeout(1) {
98 sadis_out = sh returnStatus: true, script: """
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070099 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
100 """
101 return sadis_out == 0
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700102 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -0800103 }
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700104 if ( params.reinstallOlt ) {
105 stage('Reinstall OLT software') {
106 for(int i=0; i < deployment_config.olts.size(); i++) {
107 sh returnStdout: true, script: """
108 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} "dpkg --install ${oltDebVersion}"
109 sleep 10
110 """
111 timeout(5) {
112 waitUntil {
113 olt_sw_present = sh returnStdout: true, script: """
114 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'
115 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'
116 """
117 return olt_sw_present.toInteger() == 1
118 }
119 }
120 }
121 }
122 stage('Restart OLT processes') {
123 for(int i=0; i < deployment_config.olts.size(); i++) {
124 timeout(5) {
125 sh returnStdout: true, script: """
126 ssh-keyscan -H ${deployment_config.olts[i].ip} >> ~/.ssh/known_hosts
127 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'reboot' || true
128 sleep 120
129 """
130 }
131 timeout(15) {
132 waitUntil {
133 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'"
134 return devprocess.toInteger() > 0
135 }
136 }
137 timeout(15) {
138 waitUntil {
139 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'"
140 return openoltprocess.toInteger() > 0
141 }
142 }
143 }
144 }
145 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -0800146
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700147 if ( deployment_config.fabric_switches.size() > 0 ) {
148 stage('Switch Configurations in ONOS') {
149 timeout(1) {
150 netcfg_out = sh returnStatus: true, script: """
151 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
152 curl -sSL --user karaf:karaf -X POST http://${deployment_config.nodes[0].ip}:30120/onos/v1/applications/org.onosproject.segmentrouting/active
153 """
154 return netcfg_out == 0
155 }
156 timeout(1) {
157 waitUntil {
158 sr_active_out = sh returnStatus: true, script: """
159 curl -sSL --user karaf:karaf -X GET http://${deployment_config.nodes[0].ip}:30120/onos/v1/applications/org.onosproject.segmentrouting | jq '.state' | grep ACTIVE
160 """
161 return sr_active_out == 0
162 }
163 }
164 timeout(1) {
165 // FIXME support multiple OLTs
166 for(int i=0; i < deployment_config.hosts.src.size(); i++) {
167 xconnect_out = sh returnStatus: true, script: """
168 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'
169 """
170 }
171 }
172 }
173 }
174 currentBuild.result = 'SUCCESS'
175 } catch (err) {
176 currentBuild.result = 'FAILURE'
177 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
178 throw err
179 }
180 echo "RESULT: ${currentBuild.result}"
181 }
182}