blob: c722b021b11c6787c22c1fd86d9c3d5cd66eece6 [file] [log] [blame]
Andy Bavier61c5b2a2019-11-12 12:08:19 -07001// Copyright 2019-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// deploy VOLTHA built from patchset on a physical pod and run e2e test
16// uses kind-voltha to deploy voltha-2.X
17
18node {
19 // Need this so that deployment_config has global scope when it's read later
20 deployment_config = null
21 localDeploymentConfigFile = null
22 localKindVolthaValuesFile = null
23 localSadisConfigFile = null
24}
25
26pipeline {
27
28 /* no label, executor is determined by JJB */
29 agent {
30 label "${params.buildNode}"
31 }
32 options {
33 timeout(time: 60, unit: 'MINUTES')
34 }
35
36 environment {
37 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
38 VOLTCONFIG="$HOME/.volt/config-minimal"
Andy Bavier6ba9f9c2019-12-12 17:54:53 -070039 PATH="$WORKSPACE/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Andy Bavier61c5b2a2019-11-12 12:08:19 -070040 TYPE="minimal"
41 FANCY=0
42 //VOL-2194 ONOS SSH and REST ports hardcoded to 30115/30120 in tests
43 ONOS_SSH_PORT=30115
44 ONOS_API_PORT=30120
45 }
46
47 stages {
48 stage ('Initialize') {
49 steps {
hwchiu1f0b0fe2019-12-06 11:45:23 -080050 sh returnStdout: false, script: """
Andy Bavier61c5b2a2019-11-12 12:08:19 -070051 test -e $WORKSPACE/kind-voltha/voltha && cd $WORKSPACE/kind-voltha && ./voltha down
52 cd $WORKSPACE
53 rm -rf $WORKSPACE/*
54 """
55 script {
56 if (env.configRepo && ! env.localConfigDir) {
57 env.localConfigDir = "$WORKSPACE"
hwchiu1f0b0fe2019-12-06 11:45:23 -080058 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configRepo}"
Andy Bavier61c5b2a2019-11-12 12:08:19 -070059 }
60 localDeploymentConfigFile = "${env.localConfigDir}/${params.deploymentConfigFile}"
61 localKindVolthaValuesFile = "${env.localConfigDir}/${params.kindVolthaValuesFile}"
62 localSadisConfigFile = "${env.localConfigDir}/${params.sadisConfigFile}"
Andy Bavier61c5b2a2019-11-12 12:08:19 -070063 }
64 }
65 }
66
Andy Bavier06d816c2019-11-19 11:40:48 -070067 stage('Repo') {
68 steps {
69 checkout(changelog: true,
70 poll: false,
71 scm: [$class: 'RepoScm',
72 manifestRepositoryUrl: "${params.manifestUrl}",
73 manifestBranch: "${params.manifestBranch}",
74 currentBranch: true,
75 destinationDir: 'voltha',
76 forceSync: true,
77 resetFirst: true,
78 quiet: true,
79 jobs: 4,
80 showAllChanges: true]
81 )
82 }
83 }
84
Andy Bavier61c5b2a2019-11-12 12:08:19 -070085 stage('Get Patch') {
86 when {
87 expression { params.withPatchset }
88 }
89 steps {
Andy Bavier61c5b2a2019-11-12 12:08:19 -070090 sh returnStdout: false, script: """
91 cd voltha
92 PROJECT_PATH=\$(xmllint --xpath "string(//project[@name=\\\"${gerritProject}\\\"]/@path)" .repo/manifest.xml)
93 repo download "\$PROJECT_PATH" "${gerritChangeNumber}/${gerritPatchsetNumber}"
94 """
95 }
96 }
97
Andy Bavier9a376602019-11-13 11:53:37 -070098 stage('Check config files') {
99 steps {
Andy Bavier85ab0942019-11-13 14:43:25 -0700100 script {
101 try {
102 deployment_config = readYaml file: "${localDeploymentConfigFile}"
103 } catch (err) {
104 echo "Error reading ${localDeploymentConfigFile}"
105 throw err
106 }
107 sh returnStdout: false, script: """
108 if [ ! -e ${localKindVolthaValuesFile} ]; then echo "${localKindVolthaValuesFile} not found"; exit 1; fi
109 if [ ! -e ${localSadisConfigFile} ]; then echo "${localSadisConfigFile} not found"; exit 1; fi
110 """
Andy Bavier9a376602019-11-13 11:53:37 -0700111 }
Andy Bavier9a376602019-11-13 11:53:37 -0700112 }
113 }
114
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700115 stage('Create KinD Cluster') {
116 steps {
117 sh returnStdout: false, script: """
118 git clone https://github.com/ciena/kind-voltha.git
119 cd kind-voltha/
120 JUST_K8S=y ./voltha up
121 """
122 }
123 }
124
125 stage('Build and Push Images') {
126 when {
127 expression { params.withPatchset }
128 }
129 steps {
130 sh returnStdout: false, script: """
131 if ! [[ "${gerritProject}" =~ ^(voltha-system-tests)\$ ]]; then
132 make -C $WORKSPACE/voltha/${gerritProject} DOCKER_REPOSITORY=voltha/ DOCKER_TAG=citest docker-build
133 docker images | grep citest
134 for image in \$(docker images -f "reference=*/*citest" --format "{{.Repository}}")
135 do
136 echo "Pushing \$image to nodes"
137 kind load docker-image \$image:citest --name voltha-\$TYPE --nodes voltha-\$TYPE-worker,voltha-\$TYPE-worker2
138 docker rmi \$image:citest \$image:latest || true
139 done
140 fi
141 """
142 }
143 }
144
145 stage('Deploy Voltha') {
146 environment {
147 WITH_SIM_ADAPTERS="n"
148 WITH_RADIUS="y"
149 DEPLOY_K8S="n"
150 VOLTHA_LOG_LEVEL="debug"
151 }
152 steps {
153 script {
154 if ( params.withPatchset ) {
155 sh returnStdout: false, script: """
156 export EXTRA_HELM_FLAGS='-f ${localKindVolthaValuesFile} '
157
158 IMAGES=""
159 if [ "${gerritProject}" = "voltha-go" ]; then
Zack Williamse65b1ee2019-12-09 15:57:16 -0700160 IMAGES="rw_core ro_core "
161 elif [ "${gerritProject}" = "ofagent-py" ]; then
162 IMAGES="ofagent "
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700163 elif [ "${gerritProject}" = "voltha-openolt-adapter" ]; then
164 IMAGES="adapter_open_olt "
165 elif [ "${gerritProject}" = "voltha-openonu-adapter" ]; then
166 IMAGES="adapter_open_onu "
167 elif [ "${gerritProject}" = "voltha-api-server" ]; then
168 IMAGES="afrouter afrouterd "
169 else
170 echo "No images to push"
171 fi
172
173 for I in \$IMAGES
174 do
175 EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never "
176 done
177
178 cd $WORKSPACE/kind-voltha/
179 echo \$EXTRA_HELM_FLAGS
180 ./voltha up
181 """
182 } else {
183 sh returnStdout: false, script: """
184 export EXTRA_HELM_FLAGS='-f ${localKindVolthaValuesFile} '
185 cd $WORKSPACE/kind-voltha/
186 echo \$EXTRA_HELM_FLAGS
187 ./voltha up
188 """
189 }
190 }
191 }
192 }
193
Scott Bakerfb0284c2019-12-12 17:22:38 -0800194 stage('Deploy Kafka Dump Chart') {
195 steps {
196 script {
197 sh returnStdout: false, script: """
198 helm repo add cord https://charts.opencord.org
199 helm repo update
200 helm install -n voltha-kafka-dump cord/voltha-kafka-dump
201 """
202 }
203 }
204 }
205
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700206 stage('Push Tech-Profile') {
207 when {
208 expression { params.profile != "Default" }
209 }
210 steps {
211 sh returnStdout: false, script: """
212 etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}')
213 kubectl cp $WORKSPACE/voltha/voltha-system-tests/tests/data/TechProfile-${profile}.json voltha/\$etcd_container:/tmp/flexpod.json
Andy Bavier6ebf3182019-11-21 13:47:21 -0700214 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'
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700215 """
216 }
217 }
218
219 stage('Push Sadis-config') {
220 steps {
221 sh returnStdout: false, script: """
222 curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:$ONOS_API_PORT/onos/v1/network/configuration --data @${localSadisConfigFile}
223 """
224 }
225 }
226
227 stage('Reinstall OLT software') {
228 when {
229 expression { params.reinstallOlt }
230 }
231 steps {
232 script {
233 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800234 sh returnStdout: false, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'service openolt stop' || true"
235 sh returnStdout: false, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'killall dev_mgmt_daemon' || true"
236 sh returnStdout: false, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --remove asfvolt16 && dpkg --purge asfvolt16'"
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700237 waitUntil {
238 olt_sw_present = sh returnStdout: true, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --list | grep asfvolt16 | wc -l'"
239 return olt_sw_present.toInteger() == 0
240 }
hwchiu1f0b0fe2019-12-06 11:45:23 -0800241 sh returnStdout: false, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --install ${oltDebVersion}'"
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700242 waitUntil {
243 olt_sw_present = sh returnStdout: true, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --list | grep asfvolt16 | wc -l'"
244 return olt_sw_present.toInteger() == 1
245 }
246 if ( olt.fortygig ) {
247 // If the OLT is connected to a 40G switch interface, set the NNI port to be downgraded
hwchiu1f0b0fe2019-12-06 11:45:23 -0800248 sh returnStdout: false, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'echo port ce128 sp=40000 >> /broadcom/qax.soc ; /opt/bcm68620/svk_init.sh'"
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700249 }
250 }
251 }
252 }
253 }
254
255 stage('Restart OLT processes') {
256 steps {
257 script {
258 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800259 sh returnStdout: false, script: """
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700260 ssh-keyscan -H ${olt.ip} >> ~/.ssh/known_hosts
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700261 sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'service openolt stop' || true
Andy Bavierb502a372019-11-22 01:05:04 +0000262 sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'killall dev_mgmt_daemon' || true
Andy Bavierfc4dcc42019-11-18 15:33:52 -0700263 sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'rm -f /var/log/openolt.log'
Andy Bavierb502a372019-11-22 01:05:04 +0000264 sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'service dev_mgmt_daemon start &'
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700265 sleep 5
266 sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'service openolt start &'
267 """
268 waitUntil {
269 onu_discovered = sh returnStdout: true, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'grep \"onu discover indication\" /var/log/openolt.log | wc -l'"
270 return onu_discovered.toInteger() > 0
271 }
272 }
273 }
274 }
275 }
276
277 stage('Run E2E Tests') {
278 environment {
Andy Bavierbda4c6b2019-11-12 17:06:22 -0700279 ROBOT_CONFIG_FILE="${localDeploymentConfigFile}"
Andy Baviera64d9e72019-12-09 15:16:06 -0700280 ROBOT_MISC_ARGS="--removekeywords wuks -e bbsim -d $WORKSPACE/RobotLogs"
Andy Bavierbda4c6b2019-11-12 17:06:22 -0700281 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700282 }
283 steps {
284 sh returnStdout: false, script: """
285 cd voltha
286 git clone -b ${branch} ${cordRepoUrl}/cord-tester
287 git clone -b ${branch} ${cordRepoUrl}/voltha # VOL-2104 recommends we get rid of this
288 mkdir -p $WORKSPACE/RobotLogs
Andy Bavierbda4c6b2019-11-12 17:06:22 -0700289 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700290 """
291 }
292 }
293 }
294
295 post {
296 always {
hwchiu1f0b0fe2019-12-06 11:45:23 -0800297 sh returnStdout: false, script: """
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700298 set +e
299 cp kind-voltha/install-minimal.log $WORKSPACE/
300 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
301 kubectl get nodes -o wide
302 kubectl get pods -o wide
303 kubectl get pods -n voltha -o wide
304 ## get default pod logs
305 for pod in \$(kubectl get pods --no-headers | awk '{print \$1}');
306 do
307 if [[ \$pod == *"onos"* && \$pod != *"onos-service"* ]]; then
308 kubectl logs \$pod onos> $WORKSPACE/\$pod.log;
309 else
310 kubectl logs \$pod> $WORKSPACE/\$pod.log;
311 fi
312 done
313 ## get voltha pod logs
314 for pod in \$(kubectl get pods --no-headers -n voltha | awk '{print \$1}');
315 do
316 if [[ \$pod == *"-api-"* ]]; then
317 kubectl logs \$pod arouter -n voltha > $WORKSPACE/\$pod.log;
318 elif [[ \$pod == "bbsim-"* ]]; then
319 kubectl logs \$pod -n voltha -p > $WORKSPACE/\$pod.log;
320 else
321 kubectl logs \$pod -n voltha > $WORKSPACE/\$pod.log;
322 fi
323 done
Scott Bakerfb0284c2019-12-12 17:22:38 -0800324 ## collect events, the chart should be running by now
325 kubectl get pods | grep -i voltha-kafka-dump | grep -i running
326 if [[ \$? == 0 ]]; then
327 kubectl exec -it `kubectl get pods | grep -i voltha-kafka-dump | grep -i running | cut -f1 -d " "` ./voltha-dump-events.sh > $WORKSPACE/voltha-events.log
328 fi
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700329 """
Andy Bavier6ebf3182019-11-21 13:47:21 -0700330 script {
331 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800332 sh returnStdout: false, script: """
Andy Bavier6ebf3182019-11-21 13:47:21 -0700333 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
334 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
335 """
336 }
337 }
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700338 step([$class: 'RobotPublisher',
339 disableArchiveOutput: false,
340 logFileName: 'RobotLogs/log*.html',
341 otherFiles: '',
342 outputFileName: 'RobotLogs/output*.xml',
343 outputPath: '.',
344 passThreshold: 80,
345 reportFileName: 'RobotLogs/report*.html',
346 unstableThreshold: 0]);
347 archiveArtifacts artifacts: '*.log'
348 }
349 }
350}