blob: e719a08315a25a5952ad1c84cf408b576624d520 [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
Matteo Scandolo7a330022021-03-29 14:03:48 -070018// NOTE we are importing the library even if it's global so that it's
19// easier to change the keywords during a replay
20library identifier: 'cord-jenkins-libraries@master',
21 retriever: modernSCM([
22 $class: 'GitSCMSource',
23 remote: 'https://gerrit.opencord.org/ci-management.git'
24])
25
Andy Baviere06dcff2020-02-06 11:36:40 -070026// Need this so that deployment_config has global scope when it's read later
27deployment_config = null
28localDeploymentConfigFile = null
29localKindVolthaValuesFile = null
30localSadisConfigFile = null
31
32// The pipeline assumes these variables are always defined
Zack Williams03ebb272020-03-27 09:42:33 -070033if ( params.manualBranch != "" ) {
Andy Baviere06dcff2020-02-06 11:36:40 -070034 GERRIT_EVENT_COMMENT_TEXT = ""
35 GERRIT_PROJECT = ""
Zack Williams03ebb272020-03-27 09:42:33 -070036 GERRIT_BRANCH = "${params.manualBranch}"
Andy Baviere06dcff2020-02-06 11:36:40 -070037 GERRIT_CHANGE_NUMBER = ""
38 GERRIT_PATCHSET_NUMBER = ""
Andy Bavier61c5b2a2019-11-12 12:08:19 -070039}
40
41pipeline {
42
43 /* no label, executor is determined by JJB */
44 agent {
45 label "${params.buildNode}"
46 }
47 options {
Andy Bavier880d8862020-06-28 12:03:35 -070048 timeout(time: 120, unit: 'MINUTES')
Andy Bavier61c5b2a2019-11-12 12:08:19 -070049 }
50
51 environment {
52 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
53 VOLTCONFIG="$HOME/.volt/config-minimal"
Matteo Scandolo7a330022021-03-29 14:03:48 -070054 PATH="$WORKSPACE/bin:$WORKSPACE/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Matteo Scandolo4d1a12f2020-12-07 16:17:12 -080055 NAME="minimal"
Andy Bavier61c5b2a2019-11-12 12:08:19 -070056 FANCY=0
57 //VOL-2194 ONOS SSH and REST ports hardcoded to 30115/30120 in tests
58 ONOS_SSH_PORT=30115
59 ONOS_API_PORT=30120
60 }
61
62 stages {
63 stage ('Initialize') {
64 steps {
hwchiu1f0b0fe2019-12-06 11:45:23 -080065 sh returnStdout: false, script: """
Matteo Scandolo7a330022021-03-29 14:03:48 -070066 test -e $WORKSPACE/kind-voltha/voltha && cd $WORKSPACE/kind-voltha && ./voltha down
Andy Bavier61c5b2a2019-11-12 12:08:19 -070067 cd $WORKSPACE
68 rm -rf $WORKSPACE/*
69 """
70 script {
71 if (env.configRepo && ! env.localConfigDir) {
72 env.localConfigDir = "$WORKSPACE"
hwchiu1f0b0fe2019-12-06 11:45:23 -080073 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configRepo}"
Andy Bavier61c5b2a2019-11-12 12:08:19 -070074 }
75 localDeploymentConfigFile = "${env.localConfigDir}/${params.deploymentConfigFile}"
76 localKindVolthaValuesFile = "${env.localConfigDir}/${params.kindVolthaValuesFile}"
77 localSadisConfigFile = "${env.localConfigDir}/${params.sadisConfigFile}"
Andy Bavier61c5b2a2019-11-12 12:08:19 -070078 }
79 }
80 }
81
Matteo Scandolo7a330022021-03-29 14:03:48 -070082 stage('Download Code') {
Andy Bavier06d816c2019-11-19 11:40:48 -070083 steps {
Matteo Scandolo7a330022021-03-29 14:03:48 -070084 checkout([
85 $class: 'GitSCM',
86 userRemoteConfigs: [[
87 url: "https://gerrit.opencord.org/kind-voltha",
88 ]],
89 branches: [[ name: "master", ]],
90 extensions: [
91 [$class: 'WipeWorkspace'],
92 [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"],
93 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
94 ],
95 ])
96 getVolthaCode([
97 branch: "${branch}",
98 gerritProject: "${gerritProject}",
Matteo Scandolo7a330022021-03-29 14:03:48 -070099 gerritRefspec: "${gerritRefspec}",
Matteo Scandolo9b644ba2021-04-19 11:21:07 -0700100 volthaSystemTestsChange: "${volthaSystemTestsChange}",
101 volthaHelmChartsChange: "${volthaHelmChartsChange}",
Matteo Scandolo7a330022021-03-29 14:03:48 -0700102 ])
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700103 }
104 }
105
Andy Bavier9a376602019-11-13 11:53:37 -0700106 stage('Check config files') {
107 steps {
Andy Bavier85ab0942019-11-13 14:43:25 -0700108 script {
109 try {
110 deployment_config = readYaml file: "${localDeploymentConfigFile}"
111 } catch (err) {
112 echo "Error reading ${localDeploymentConfigFile}"
113 throw err
114 }
115 sh returnStdout: false, script: """
116 if [ ! -e ${localKindVolthaValuesFile} ]; then echo "${localKindVolthaValuesFile} not found"; exit 1; fi
117 if [ ! -e ${localSadisConfigFile} ]; then echo "${localSadisConfigFile} not found"; exit 1; fi
118 """
Andy Bavier9a376602019-11-13 11:53:37 -0700119 }
Andy Bavier9a376602019-11-13 11:53:37 -0700120 }
121 }
122
Matteo Scandolo7a330022021-03-29 14:03:48 -0700123 stage('Build patch') {
124 steps {
125 // NOTE that the correct patch has already been checked out
126 // during the getVolthaCode step
127 buildVolthaComponent("${gerritProject}")
128 }
129 }
130
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700131 stage('Create KinD Cluster') {
132 steps {
133 sh returnStdout: false, script: """
Zack Williams03ebb272020-03-27 09:42:33 -0700134 if [ "${branch}" != "master" ]; then
135 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
Matteo Scandolo7a330022021-03-29 14:03:48 -0700136 source "$WORKSPACE/kind-voltha/releases/${branch}"
Zack Williams03ebb272020-03-27 09:42:33 -0700137 else
138 echo "on master, using default settings for kind-voltha"
139 fi
Matteo Scandolo7a330022021-03-29 14:03:48 -0700140 cd $WORKSPACE/kind-voltha/
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700141 JUST_K8S=y ./voltha up
142 """
143 }
144 }
145
Matteo Scandolo7a330022021-03-29 14:03:48 -0700146 stage('Load image in kind nodes') {
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700147 when {
Andy Bavierfc3ca142020-03-27 13:44:25 -0700148 expression { params.manualBranch == "" }
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700149 }
150 steps {
151 sh returnStdout: false, script: """
Zack Williams03ebb272020-03-27 09:42:33 -0700152 if [ "${branch}" != "master" ]; then
153 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
Matteo Scandolo7a330022021-03-29 14:03:48 -0700154 source "$WORKSPACE/kind-voltha/releases/${branch}"
Zack Williams03ebb272020-03-27 09:42:33 -0700155 else
156 echo "on master, using default settings for kind-voltha"
157 fi
Andy Bavierc1cb94b2020-06-04 16:39:32 -0700158 if ! [[ "${gerritProject}" =~ ^(voltha-system-tests|kind-voltha|voltha-helm-charts)\$ ]]; then
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700159 docker images | grep citest
160 for image in \$(docker images -f "reference=*/*citest" --format "{{.Repository}}")
161 do
162 echo "Pushing \$image to nodes"
Matteo Scandolo6fede0e2020-12-09 17:19:09 -0800163 kind load docker-image \$image:citest --name voltha-\$NAME --nodes voltha-\$NAME-worker,voltha-\$NAME-worker2
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700164 docker rmi \$image:citest \$image:latest || true
165 done
166 fi
167 """
168 }
169 }
170
171 stage('Deploy Voltha') {
172 environment {
Andy Bavier1f530f52020-04-14 15:57:33 -0700173 WITH_SIM_ADAPTERS="no"
174 WITH_RADIUS="yes"
175 DEPLOY_K8S="no"
176 VOLTHA_LOG_LEVEL="DEBUG"
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700177 }
178 steps {
179 script {
Andy Baviere06dcff2020-02-06 11:36:40 -0700180 sh returnStdout: false, script: """
Zack Williams03ebb272020-03-27 09:42:33 -0700181 if [ "${branch}" != "master" ]; then
182 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
Matteo Scandolo7a330022021-03-29 14:03:48 -0700183 source "$WORKSPACE/kind-voltha/releases/${branch}"
Zack Williams03ebb272020-03-27 09:42:33 -0700184 else
185 echo "on master, using default settings for kind-voltha"
186 fi
187
188 export EXTRA_HELM_FLAGS+='--set log_agent.enabled=False -f ${localKindVolthaValuesFile} '
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700189
Andy Baviere06dcff2020-02-06 11:36:40 -0700190 IMAGES=""
191 if [ "${gerritProject}" = "voltha-go" ]; then
192 IMAGES="rw_core ro_core "
193 elif [ "${gerritProject}" = "ofagent-py" ]; then
194 IMAGES="ofagent "
195 elif [ "${gerritProject}" = "voltha-onos" ]; then
196 IMAGES="onos "
197 elif [ "${gerritProject}" = "voltha-openolt-adapter" ]; then
198 IMAGES="adapter_open_olt "
199 elif [ "${gerritProject}" = "voltha-openonu-adapter" ]; then
200 IMAGES="adapter_open_onu "
Girish Gowdra7beebea2021-01-31 18:56:45 -0800201 elif [ "${gerritProject}" = "voltha-openonu-adapter-go" ]; then
202 IMAGES="adapter_open_onu_go "
Andy Baviere06dcff2020-02-06 11:36:40 -0700203 elif [ "${gerritProject}" = "voltha-api-server" ]; then
204 IMAGES="afrouter afrouterd "
205 else
206 echo "No images to push"
207 fi
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700208
Andy Baviere06dcff2020-02-06 11:36:40 -0700209 for I in \$IMAGES
210 do
211 EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never "
212 done
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700213
Andy Bavierc1cb94b2020-06-04 16:39:32 -0700214 if [ "${gerritProject}" = "voltha-helm-charts" ]; then
Matteo Scandolo7a330022021-03-29 14:03:48 -0700215 export CHART_PATH=$WORKSPACE/voltha-helm-charts
Andy Bavierc1cb94b2020-06-04 16:39:32 -0700216 export VOLTHA_CHART=\$CHART_PATH/voltha
217 export VOLTHA_ADAPTER_OPEN_OLT_CHART=\$CHART_PATH/voltha-adapter-openolt
218 export VOLTHA_ADAPTER_OPEN_ONU_CHART=\$CHART_PATH/voltha-adapter-openonu
219 helm dep update \$VOLTHA_CHART
220 helm dep update \$VOLTHA_ADAPTER_OPEN_OLT_CHART
221 helm dep update \$VOLTHA_ADAPTER_OPEN_ONU_CHART
222 fi
223
Matteo Scandolo7a330022021-03-29 14:03:48 -0700224 cd $WORKSPACE/kind-voltha/
Andy Baviere06dcff2020-02-06 11:36:40 -0700225 echo \$EXTRA_HELM_FLAGS
226 kail -n voltha -n default > $WORKSPACE/onos-voltha-combined.log &
227 ./voltha up
Andy Bavier1f530f52020-04-14 15:57:33 -0700228
Andy Baviercf7a5812020-04-24 15:06:30 -0700229 set +e
230
Andy Bavier1f530f52020-04-14 15:57:33 -0700231 # Remove noise from voltha-core logs
Andy Baviercf7a5812020-04-24 15:06:30 -0700232 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
233 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andy Bavier1f530f52020-04-14 15:57:33 -0700234 # Remove noise from openolt logs
Andy Baviercf7a5812020-04-24 15:06:30 -0700235 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
236 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
237 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andy Baviere06dcff2020-02-06 11:36:40 -0700238 """
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700239 }
240 }
241 }
242
Scott Bakerfb0284c2019-12-12 17:22:38 -0800243 stage('Deploy Kafka Dump Chart') {
244 steps {
245 script {
246 sh returnStdout: false, script: """
247 helm repo add cord https://charts.opencord.org
248 helm repo update
Andy Bavierb0f4e002020-07-23 09:37:23 -0700249 if helm version -c --short|grep v2 -q; then
250 helm install -n voltha-kafka-dump cord/voltha-kafka-dump
251 else
252 helm install voltha-kafka-dump cord/voltha-kafka-dump
253 fi
Scott Bakerfb0284c2019-12-12 17:22:38 -0800254 """
255 }
256 }
257 }
258
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700259 stage('Push Tech-Profile') {
260 when {
261 expression { params.profile != "Default" }
262 }
263 steps {
264 sh returnStdout: false, script: """
265 etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}')
Matteo Scandolo7a330022021-03-29 14:03:48 -0700266 kubectl cp $WORKSPACE/voltha-system-tests/tests/data/TechProfile-${profile}.json voltha/\$etcd_container:/tmp/flexpod.json
Andy Bavier6ebf3182019-11-21 13:47:21 -0700267 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 -0700268 """
269 }
270 }
271
272 stage('Push Sadis-config') {
273 steps {
274 sh returnStdout: false, script: """
Suchitra Vemuri63b71742020-08-11 16:54:57 -0700275 ssh-keygen -R [${deployment_config.nodes[0].ip}]:30115
276 ssh-keyscan -p 30115 -H ${deployment_config.nodes[0].ip} >> ~/.ssh/known_hosts
277 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.dhcpl2relay"
278 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.aaa"
279 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.olt"
280 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set DEBUG org.onosproject.net.flowobjective.impl.FlowObjectiveManager"
281 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set DEBUG org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager"
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700282 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}
283 """
284 }
285 }
286
287 stage('Reinstall OLT software') {
288 when {
289 expression { params.reinstallOlt }
290 }
291 steps {
292 script {
293 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800294 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 -0700295 waitUntil {
296 olt_sw_present = sh returnStdout: true, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --list | grep asfvolt16 | wc -l'"
297 return olt_sw_present.toInteger() == 0
298 }
Andy Bavier893d2442020-05-21 12:41:17 -0700299 if ( params.branch == 'voltha-2.3' ) {
300 oltDebVersion = oltDebVersionVoltha23
301 } else {
302 oltDebVersion = oltDebVersionMaster
303 }
hwchiu1f0b0fe2019-12-06 11:45:23 -0800304 sh returnStdout: false, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --install ${oltDebVersion}'"
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700305 waitUntil {
306 olt_sw_present = sh returnStdout: true, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --list | grep asfvolt16 | wc -l'"
307 return olt_sw_present.toInteger() == 1
308 }
309 if ( olt.fortygig ) {
310 // If the OLT is connected to a 40G switch interface, set the NNI port to be downgraded
hwchiu1f0b0fe2019-12-06 11:45:23 -0800311 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 -0700312 }
313 }
314 }
315 }
316 }
317
318 stage('Restart OLT processes') {
319 steps {
320 script {
321 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800322 sh returnStdout: false, script: """
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700323 ssh-keyscan -H ${olt.ip} >> ~/.ssh/known_hosts
Andy Bavier5bb88bc2020-06-18 14:51:21 -0700324 sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'rm -f /var/log/openolt.log; rm -f /var/log/dev_mgmt_daemon.log; reboot'
325 sleep 120
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700326 """
327 waitUntil {
328 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'"
329 return onu_discovered.toInteger() > 0
330 }
331 }
332 }
333 }
334 }
335
336 stage('Run E2E Tests') {
337 environment {
Andy Bavierbda4c6b2019-11-12 17:06:22 -0700338 ROBOT_CONFIG_FILE="${localDeploymentConfigFile}"
Andy Bavierd3be2bf2020-02-07 17:02:21 -0700339 ROBOT_MISC_ARGS="${params.extraRobotArgs} --removekeywords wuks -d $WORKSPACE/RobotLogs -v container_log_dir:$WORKSPACE "
Andy Bavierbda4c6b2019-11-12 17:06:22 -0700340 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700341 }
342 steps {
343 sh returnStdout: false, script: """
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700344 mkdir -p $WORKSPACE/RobotLogs
Andy Baviere06dcff2020-02-06 11:36:40 -0700345
346 # If the Gerrit comment contains a line with "functional tests" then run the full
347 # functional test suite. This covers tests tagged either 'sanity' or 'functional'.
348 # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line
349 REGEX="functional tests"
350 if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then
351 ROBOT_MISC_ARGS+="-i functional"
352 fi
Andy Bavierc8ee4322020-08-18 16:37:38 -0700353 # Likewise for dataplane tests
354 REGEX="dataplane tests"
355 if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then
356 ROBOT_MISC_ARGS+="-i dataplane"
357 fi
Andy Baviere06dcff2020-02-06 11:36:40 -0700358
Matteo Scandolo7a330022021-03-29 14:03:48 -0700359 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700360 """
361 }
362 }
Scott Bakerda31d7b2020-01-08 16:35:52 -0800363
364 stage('After-Test Delay') {
Andy Bavier4af02722020-01-15 10:24:24 -0700365 when {
Andy Bavierfc3ca142020-03-27 13:44:25 -0700366 expression { params.manualBranch == "" }
Andy Bavier4af02722020-01-15 10:24:24 -0700367 }
Scott Bakerda31d7b2020-01-08 16:35:52 -0800368 steps {
369 sh returnStdout: false, script: """
370 # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line
371 REGEX="hardware test with delay\$"
372 [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]] && sleep 10m || true
373 """
374 }
375 }
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700376 }
377
378 post {
379 always {
Andy Bavier4af02722020-01-15 10:24:24 -0700380 sh returnStdout: false, script: '''
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700381 set +e
Matteo Scandolo7a330022021-03-29 14:03:48 -0700382 cp $WORKSPACE/kind-voltha/install-minimal.log $WORKSPACE/
Matteo Scandolo97b12572020-04-13 12:44:46 -0700383 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
384 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700385 kubectl get nodes -o wide
386 kubectl get pods -o wide
387 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700388
389 sync
390 pkill kail || true
391
392 ## Pull out errors from log files
393 extract_errors_go() {
394 echo
395 echo "Error summary for $1:"
396 grep $1 $WORKSPACE/onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg'
397 echo
398 }
399
400 extract_errors_python() {
401 echo
402 echo "Error summary for $1:"
403 grep $1 $WORKSPACE/onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2-
404 echo
405 }
406
407 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
408 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
409 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
410 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
411
Andy Bavier2178d102020-02-06 16:22:11 -0700412 gzip $WORKSPACE/onos-voltha-combined.log
413
Scott Bakerfb0284c2019-12-12 17:22:38 -0800414 ## collect events, the chart should be running by now
415 kubectl get pods | grep -i voltha-kafka-dump | grep -i running
Andy Bavier4af02722020-01-15 10:24:24 -0700416 if [[ $? == 0 ]]; then
Scott Bakerfb0284c2019-12-12 17:22:38 -0800417 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
418 fi
Andy Bavier4af02722020-01-15 10:24:24 -0700419 '''
Andy Bavier6ebf3182019-11-21 13:47:21 -0700420 script {
421 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800422 sh returnStdout: false, script: """
Andy Bavier827560b2020-06-05 09:49:32 -0700423 until sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log
424 do
425 echo "Fetching openolt.log log failed, retrying..."
426 sleep 10
427 done
Andy Bavier6ebf3182019-11-21 13:47:21 -0700428 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
Andy Bavier827560b2020-06-05 09:49:32 -0700429 until sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/dev_mgmt_daemon.log $WORKSPACE/dev_mgmt_daemon-${olt.ip}.log
430 do
431 echo "Fetching dev_mgmt_daemon.log failed, retrying..."
432 sleep 10
433 done
Andy Bavierbecaa8e2020-01-08 11:49:57 -0700434 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.ip}.log # Remove escape sequences
Andy Bavier6ebf3182019-11-21 13:47:21 -0700435 """
436 }
437 }
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700438 step([$class: 'RobotPublisher',
439 disableArchiveOutput: false,
440 logFileName: 'RobotLogs/log*.html',
441 otherFiles: '',
442 outputFileName: 'RobotLogs/output*.xml',
443 outputPath: '.',
Andy Baviere19b67b2020-02-14 11:29:50 -0700444 passThreshold: 100,
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700445 reportFileName: 'RobotLogs/report*.html',
446 unstableThreshold: 0]);
Andy Bavier2178d102020-02-06 16:22:11 -0700447 archiveArtifacts artifacts: '*.log,*.gz'
Andy Bavier61c5b2a2019-11-12 12:08:19 -0700448 }
449 }
450}