blob: 5a6657fcf8e0b47d951805ecfe8233fcfd13d07c [file] [log] [blame]
Matteo Scandolo4b006ae2020-11-09 16:14:40 -08001// 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 using kind-voltha and performs a scale test
16
17pipeline {
18
19 /* no label, executor is determined by JJB */
20 agent {
21 label "${params.buildNode}"
22 }
23 options {
24 timeout(time: 60, unit: 'MINUTES')
25 }
26 environment {
27 JENKINS_NODE_COOKIE="dontKillMe" // do not kill processes after the build is done
28 KUBECONFIG="$HOME/.kube/config"
29 SSHPASS="karaf"
30 PATH="$PATH:$WORKSPACE/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
31 SCHEDULE_ON_CONTROL_NODES="yes"
32 FANCY=0
33 WAIT_ON_DOWN="yes"
34 WITH_SIM_ADAPTERS="no"
35 WITH_RADIUS="${withRadius}"
36 WITH_BBSIM="yes"
37 LEGACY_BBSIM_INDEX="no"
38 DEPLOY_K8S="no"
39 CONFIG_SADIS="external"
40 WITH_KAFKA="yes"
41 WITH_ETCD="yes"
42 VOLTHA_ETCD_PORT=9999
43
44 // VOLTHA namespaces are defined at runtime depending on the stack we're installing
45 // VOLTHA_NS="default"
46 // ADAPTER_NS="default"
47 // BBSIM_NS="default"
48 INFRA_NS="infra"
49
50 // configurable options
51 WITH_EAPOL="${withEapol}"
52 WITH_DHCP="${withDhcp}"
53 WITH_IGMP="${withIgmp}"
54 VOLTHA_LOG_LEVEL="${logLevel}"
55 NUM_OF_BBSIM="${olts}"
56 NUM_OF_OPENONU="${openonuAdapterReplicas}"
57 NUM_OF_ONOS="${onosReplicas}"
58 NUM_OF_ATOMIX="${atomixReplicas}"
59 NUM_OF_KAFKA="${kafkaReplicas}"
60 NUM_OF_ETCD="${etcdReplicas}"
61 WITH_PPROF="${withProfiling}"
62 EXTRA_HELM_FLAGS="${extraHelmFlags} " // note that the trailing space is required to separate the parameters from appends done later
63 VOLTHA_CHART="${volthaChart}"
64 VOLTHA_BBSIM_CHART="${bbsimChart}"
65 VOLTHA_ADAPTER_OPEN_OLT_CHART="${openoltAdapterChart}"
66 VOLTHA_ADAPTER_OPEN_ONU_CHART="${openonuAdapterChart}"
67 ONOS_CLASSIC_CHART="${onosChart}"
68 RADIUS_CHART="${radiusChart}"
69
70 APPS_TO_LOG="etcd kafka onos-onos-classic adapter-open-onu adapter-open-olt rw-core ofagent bbsim radius"
71 LOG_FOLDER="$WORKSPACE/logs"
72
73 GERRIT_PROJECT="${GERRIT_PROJECT}"
74 }
75
76 stages {
77 stage ('Cleanup') {
78 steps {
79 timeout(time: 11, unit: 'MINUTES') {
80 sh returnStdout: false, script: """
81 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com
82 helm repo add stable https://kubernetes-charts.storage.googleapis.com
83 helm repo add onf https://charts.opencord.org
84 helm repo add cord https://charts.opencord.org
85 helm repo add onos https://charts.onosproject.org
86 helm repo add atomix https://charts.atomix.io
87 helm repo add bbsim-sadis https://ciena.github.io/bbsim-sadis-server/charts
88 helm repo update
89
90 # removing ETCD port forward
91 P_ID="\$(ps e -ww -A | grep "_TAG=etcd-port-forward" | grep -v grep | awk '{print \$1}')"
92 if [ -n "\$P_ID" ]; then
93 kill -9 \$P_ID
94 fi
95
96 for hchart in \$(helm list -q | grep -E -v 'docker-registry|kafkacat');
97 do
98 echo "Purging chart: \${hchart}"
99 helm delete "\${hchart}"
100 done
101 bash /home/cord/voltha-scale/wait_for_pods.sh
102
103 test -e $WORKSPACE/kind-voltha/voltha && cd $WORKSPACE/kind-voltha && ./voltha down
104
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800105 ps aux | grep port-forw | grep -v grep | awk '{print \$2}' | xargs kill -9
106
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800107 cd $WORKSPACE
108 rm -rf $WORKSPACE/*
109 """
110 }
111 }
112 }
113 stage('Clone kind-voltha') {
114 steps {
115 checkout([
116 $class: 'GitSCM',
117 userRemoteConfigs: [[
118 url: "https://gerrit.opencord.org/kind-voltha",
119 refspec: "${kindVolthaChange}"
120 ]],
121 branches: [[ name: "master", ]],
122 extensions: [
123 [$class: 'WipeWorkspace'],
124 [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"],
125 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
126 ],
127 ])
128 script {
129 sh(script:"""
130 if [ '${kindVolthaChange}' != '' ] ; then
131 cd $WORKSPACE/kind-voltha;
132 git fetch https://gerrit.opencord.org/kind-voltha ${kindVolthaChange} && git checkout FETCH_HEAD
133 fi
134 """)
135 }
136 }
137 }
138 stage('Clone voltha-system-tests') {
139 steps {
140 checkout([
141 $class: 'GitSCM',
142 userRemoteConfigs: [[
143 url: "https://gerrit.opencord.org/voltha-system-tests",
144 refspec: "${volthaSystemTestsChange}"
145 ]],
146 branches: [[ name: "${release}", ]],
147 extensions: [
148 [$class: 'WipeWorkspace'],
149 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
150 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
151 ],
152 ])
153 script {
154 sh(script:"""
155 if [ '${volthaSystemTestsChange}' != '' ] ; then
156 cd $WORKSPACE/voltha-system-tests;
157 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
158 fi
159 """)
160 }
161 }
162 }
163 stage('Build patch') {
164 when {
165 expression {
166 return params.GERRIT_PROJECT
167 }
168 }
169 steps {
170 sh """
171 git clone https://\$GERRIT_HOST/\$GERRIT_PROJECT
172 cd \$GERRIT_PROJECT
173 git fetch https://\$GERRIT_HOST/\$GERRIT_PROJECT \$GERRIT_REFSPEC && git checkout FETCH_HEAD
174
175 DOCKER_REGISTRY=${dockerRegistry}/ DOCKER_REPOSITORY=voltha/ DOCKER_TAG=voltha-scale make docker-build
176 DOCKER_REGISTRY=${dockerRegistry}/ DOCKER_REPOSITORY=voltha/ DOCKER_TAG=voltha-scale make docker-push
177 """
178 }
179 }
180 stage('Deploy common infrastructure') {
181 // includes monitoring, kafka, etcd
182 steps {
183 sh '''
184 if [ ${withMonitoring} = true ] ; then
185 helm install nem-monitoring cord/nem-monitoring \
186 -f $HOME/voltha-scale/grafana.yaml \
187 --set prometheus.alertmanager.enabled=false,prometheus.pushgateway.enabled=false \
188 --set kpi_exporter.enabled=false,dashboards.xos=false,dashboards.onos=false,dashboards.aaa=false,dashboards.voltha=false
189 fi
190
191 # TODO download this file from https://github.com/opencord/helm-charts/blob/master/scripts/wait_for_pods.sh
192 bash /home/cord/voltha-scale/wait_for_pods.sh
193 '''
194 }
195 }
196 stage('Deploy VOLTHA infrastructure') {
197 steps {
198 sh returnStdout: false, script: '''
199 cd $WORKSPACE/kind-voltha/
200
201 # KAFKA config
202 NUM_OF_KAFKA=${kafkaReplicas}
203 EXTRA_HELM_FLAGS+=' --set prometheus.kafka.enabled=true,prometheus.operator.enabled=true,prometheus.jmx.enabled=true,prometheus.operator.serviceMonitor.namespace=default '
204
205 # ETCD config
206 EXTRA_HELM_FLAGS+=" --set memoryMode=${inMemoryEtcdStorage} "
207
208 NAME=infra JUST_INFRA=y ./voltha up
209
210 # Forward the ETCD port onto $VOLTHA_ETCD_PORT
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800211 _TAG=etcd-port-forward kubectl -n \$INFRA_NS port-forward --address 0.0.0.0 -n default service/etcd $VOLTHA_ETCD_PORT:2379&
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800212 '''
213 }
214 }
215 stage('Deploy Voltha') {
216 steps {
217 deploy_voltha_stacks(params.volthaStacks)
218 }
219 }
220 stage('Start logging') {
221 steps {
222 sh returnStdout: false, script: '''
223 # start logging with kail
224
225 mkdir -p $LOG_FOLDER
226
227 list=($APPS_TO_LOG)
228 for app in "${list[@]}"
229 do
230 echo "Starting logs for: ${app}"
231 _TAG=kail-$app kail -l app=$app --since 1h > $LOG_FOLDER/$app.log&
232 done
233 '''
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800234 }
235 }
236 stage('Configuration') {
237 steps {
238 script {
239 sh returnStdout: false, script: """
240 #Setting link discovery
241 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.provider.lldp.impl.LldpLinkProvider enabled ${withLLDP}
242
243 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.net.flow.impl.FlowRuleManager allowExtraneousRules true
244 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.net.flow.impl.FlowRuleManager importExtraneousRules true
245
246
247 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager accumulatorMaxBatchMillis 1000
248
249 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager accumulatorMaxIdleMillis 500
250
251 ONOSES=\$((\$NUM_OF_ONOS - 1))
252 for i in \$(seq 0 \$ONOSES); do
253 INSTANCE="onos-onos-classic-\$i"
254
255 #Setting LOG level to ${logLevel}
256 kubectl -n \$INFRA_NS exec \$INSTANCE -- bash /root/onos/${karafHome}/bin/client log:set ${logLevel} org.onosproject
257 kubectl -n \$INFRA_NS exec \$INSTANCE -- bash /root/onos/${karafHome}/bin/client log:set ${logLevel} org.opencord
258
Matteo Scandolod4064492020-11-13 10:48:30 -0800259 kubectl -n \$INFRA_NS exec \$INSTANCE -- bash /root/onos/${karafHome}/bin/client log:set DEBUG org.opencord.dhcpl2relay
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800260 done
261
262 # Set Flows/Ports/Meters poll frequency
263 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.provider.of.flow.impl.OpenFlowRuleProvider flowPollFrequency ${onosStatInterval}
264 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.provider.of.device.impl.OpenFlowDeviceProvider portStatsPollFrequency ${onosStatInterval}
265
266 if [ ${withFlows} = false ]; then
267 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.olt
268 fi
269
270 if [ ${withMibTemplate} = true ] ; then
271 rm -f BBSM-12345123451234512345-00000000000001-v1.json
272 wget https://raw.githubusercontent.com/opencord/voltha-openonu-adapter/master/templates/BBSM-12345123451234512345-00000000000001-v1.json
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800273 cat BBSM-12345123451234512345-00000000000001-v1.json | kubectl -n \$INFRA_NS exec -it \$(kubectl -n \$INFRA_NS get pods -l app=etcd | awk 'NR==2{print \$1}') -- etcdctl put service/voltha/omci_mibs/templates/BBSM/12345123451234512345/00000000000001
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800274 fi
275
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800276 if [ ${withPcap} = true ] && [ ${volthaStacks} -eq 1 ] ; then
277 # FIXME ofagent pcap has to be replicated per stack
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800278 # Start the tcp-dump in ofagent
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800279 export OF_AGENT=\$(kubectl -n \$INFRA_NS get pods -l app=ofagent -o name)
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800280 kubectl exec \$OF_AGENT -- apk update
281 kubectl exec \$OF_AGENT -- apk add tcpdump
282 kubectl exec \$OF_AGENT -- mv /usr/sbin/tcpdump /usr/bin/tcpdump
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800283 _TAG=ofagent-tcpdump kubectl -n \$INFRA_NS exec \$OF_AGENT -- tcpdump -nei eth0 -w out.pcap&
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800284
285 # Start the tcp-dump in radius
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800286 export RADIUS=\$(kubectl -n \$INFRA_NS get pods -l app=radius -o name)
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800287 kubectl exec \$RADIUS -- apt-get update
288 kubectl exec \$RADIUS -- apt-get install -y tcpdump
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800289 _TAG=radius-tcpdump kubectl -n \$INFRA_NS exec \$RADIUS -- tcpdump -w out.pcap&
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800290
291 # Start the tcp-dump in ONOS
292 for i in \$(seq 0 \$ONOSES); do
293 INSTANCE="onos-onos-classic-\$i"
294 kubectl exec \$INSTANCE -- apt-get update
295 kubectl exec \$INSTANCE -- apt-get install -y tcpdump
296 kubectl exec \$INSTANCE -- mv /usr/sbin/tcpdump /usr/bin/tcpdump
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800297 _TAG=\$INSTANCE kubectl -n \$INFRA_NS exec \$INSTANCE -- /usr/bin/tcpdump -nei eth0 port 1812 -w out.pcap&
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800298 done
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800299 else
300 echo "PCAP not supported for multiple VOLTHA stacks"
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800301 fi
302 """
303 }
304 }
305 }
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800306 stage('Setup Test') {
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800307 steps {
308 sh '''
309 mkdir -p $WORKSPACE/RobotLogs
310 cd $WORKSPACE/voltha-system-tests
311 make vst_venv
312 '''
313 sh '''
314 if [ ${withProfiling} = true ] ; then
315 mkdir -p $LOG_FOLDER/pprof
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800316 cat << EOF > $WORKSPACE/pprof.sh
317timestamp() {
318 date +"%T"
319}
320
321i=0
322while [[ true ]]; do
323 ((i++))
324 ts=$(timestamp)
325 go tool pprof -png http://127.0.0.1:6060/debug/pprof/heap > $LOG_FOLDER/pprof/rw-core-heap-\\$i-\\$ts.png
326 go tool pprof -png http://127.0.0.1:6060/debug/pprof/goroutine > $LOG_FOLDER/pprof/rw-core-goroutine-\\$i-\\$ts.png
327 curl -o $LOG_FOLDER/pprof/rw-core-profile-\\$i-\\$ts.pprof http://127.0.0.1:6060/debug/pprof/profile?seconds=10
328 go tool pprof -png $LOG_FOLDER/pprof/rw-core-profile-\\$i-\\$ts.pprof > $LOG_FOLDER/pprof/rw-core-profile-\\$i-\\$ts.png
329
330 go tool pprof -png http://127.0.0.1:6061/debug/pprof/heap > $LOG_FOLDER/pprof/openolt-heap-\\$i-\\$ts.png
331 go tool pprof -png http://127.0.0.1:6061/debug/pprof/goroutine > $LOG_FOLDER/pprof/openolt-goroutine-\\$i-\\$ts.png
332 curl -o $LOG_FOLDER/pprof/openolt-profile-\\$i-\\$ts.pprof http://127.0.0.1:6061/debug/pprof/profile?seconds=10
333 go tool pprof -png $LOG_FOLDER/pprof/openolt-profile-\\$i-\\$ts.pprof > $LOG_FOLDER/pprof/openolt-profile-\\$i-\\$ts.png
334
335 go tool pprof -png http://127.0.0.1:6062/debug/pprof/heap > $LOG_FOLDER/pprof/ofagent-heap-\\$i-\\$ts.png
336 go tool pprof -png http://127.0.0.1:6062/debug/pprof/goroutine > $LOG_FOLDER/pprof/ofagent-goroutine-\\$i-\\$ts.png
337 curl -o $LOG_FOLDER/pprof/ofagent-profile-\\$i-\\$ts.pprof http://127.0.0.1:6062/debug/pprof/profile?seconds=10
338 go tool pprof -png $LOG_FOLDER/pprof/ofagent-profile-\\$i-\\$ts.pprof > $LOG_FOLDER/pprof/ofagent-profile-\\$i-\\$ts.png
339
340 sleep 10
341done
342EOF
343
344 _TAG="pprof"
345 _TAG=$_TAG bash $WORKSPACE/pprof.sh &
346 fi
347 '''
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800348 // bbsim-sadis server takes a while to cache the subscriber entries
349 // wait for that before starting the tests
350 sleep(60)
351 }
352 }
353 stage('Run Test') {
354 steps {
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800355 test_voltha_stacks(params.volthaStacks)
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800356 }
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800357 }
358 }
359 post {
360 always {
361 // collect result, done in the "post" step so it's executed even in the
362 // event of a timeout in the tests
363 sh '''
364
365 # stop the kail processes
366 list=($APPS_TO_LOG)
367 for app in "${list[@]}"
368 do
369 echo "Stopping logs for: ${app}"
370 _TAG="kail-$app"
371 P_IDS="$(ps e -ww -A | grep "_TAG=$_TAG" | grep -v grep | awk '{print $1}')"
372 if [ -n "$P_IDS" ]; then
373 echo $P_IDS
374 for P_ID in $P_IDS; do
375 kill -9 $P_ID
376 done
377 fi
378 done
379
380 if [ ${withPcap} = true ] ; then
381 # stop ofAgent tcpdump
382 P_ID="\$(ps e -ww -A | grep "_TAG=ofagent-tcpdump" | grep -v grep | awk '{print \$1}')"
383 if [ -n "\$P_ID" ]; then
384 kill -9 \$P_ID
385 fi
386
387 # stop radius tcpdump
388 P_ID="\$(ps e -ww -A | grep "_TAG=radius-tcpdump" | grep -v grep | awk '{print \$1}')"
389 if [ -n "\$P_ID" ]; then
390 kill -9 \$P_ID
391 fi
392
393 # stop onos tcpdump
394 LIMIT=$(($NUM_OF_ONOS - 1))
395 for i in $(seq 0 $LIMIT); do
396 INSTANCE="onos-onos-classic-$i"
397 P_ID="\$(ps e -ww -A | grep "_TAG=$INSTANCE" | grep -v grep | awk '{print \$1}')"
398 if [ -n "\$P_ID" ]; then
399 kill -9 \$P_ID
400 fi
401 done
402
403 # copy the file
404 export OF_AGENT=$(kubectl get pods -l app=ofagent | awk 'NR==2{print $1}') || true
405 kubectl cp $OF_AGENT:out.pcap $LOG_FOLDER/ofagent.pcap || true
406
407 export RADIUS=$(kubectl get pods -l app=radius | awk 'NR==2{print $1}') || true
408 kubectl cp $RADIUS:out.pcap $LOG_FOLDER/radius.pcap || true
409
410 LIMIT=$(($NUM_OF_ONOS - 1))
411 for i in $(seq 0 $LIMIT); do
412 INSTANCE="onos-onos-classic-$i"
413 kubectl cp $INSTANCE:out.pcap $LOG_FOLDER/$INSTANCE.pcap || true
414 done
415 fi
416
417 cd voltha-system-tests
418 source ./vst_venv/bin/activate
419 python tests/scale/collect-result.py -r $WORKSPACE/RobotLogs/output.xml -p $WORKSPACE/plots > $WORKSPACE/execution-time.txt || true
420 cat $WORKSPACE/execution-time.txt
421 '''
422 sh '''
423 if [ ${withProfiling} = true ] ; then
424 _TAG="pprof"
425 P_IDS="$(ps e -ww -A | grep "_TAG=$_TAG" | grep -v grep | awk '{print $1}')"
426 if [ -n "$P_IDS" ]; then
427 echo $P_IDS
428 for P_ID in $P_IDS; do
429 kill -9 $P_ID
430 done
431 fi
432 fi
433 '''
434 plot([
435 csvFileName: 'scale-test.csv',
436 csvSeries: [
437 [file: 'plots/plot-voltha-onus.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
438 [file: 'plots/plot-onos-ports.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
439 [file: 'plots/plot-voltha-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
440 [file: 'plots/plot-voltha-openolt-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
441 [file: 'plots/plot-onos-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
442 [file: 'plots/plot-onos-auth.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
443 [file: 'plots/plot-voltha-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
444 [file: 'plots/plot-voltha-openolt-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
445 [file: 'plots/plot-onos-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
446 [file: 'plots/plot-onos-dhcp.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
447 ],
448 group: 'Voltha-Scale-Numbers', numBuilds: '20', style: 'line', title: "Scale Test (OLTs: ${olts}, PONs: ${pons}, ONUs: ${onus})", yaxis: 'Time (s)', useDescr: true
449 ])
450 step([$class: 'RobotPublisher',
451 disableArchiveOutput: false,
Matteo Scandolod4064492020-11-13 10:48:30 -0800452 logFileName: 'RobotLogs/**/log.html',
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800453 otherFiles: '',
Matteo Scandolod4064492020-11-13 10:48:30 -0800454 outputFileName: 'RobotLogs/**/output.xml',
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800455 outputPath: '.',
456 passThreshold: 100,
Matteo Scandolod4064492020-11-13 10:48:30 -0800457 reportFileName: 'RobotLogs/**/report.html',
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800458 unstableThreshold: 0]);
459 // get all the logs from kubernetes PODs
460 sh returnStdout: false, script: '''
461
462 # store information on running charts
Matteo Scandolod4064492020-11-13 10:48:30 -0800463 helm ls --all-namespaces > $LOG_FOLDER/helm-list.txt || true
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800464
465 # store information on the running pods
466 kubectl get pods -o wide > $LOG_FOLDER/pods.txt || true
467 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-images.txt || true
468 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-imagesId.txt || true
469
470 # copy the ONOS logs directly from the container to avoid the color codes
Matteo Scandolod4064492020-11-13 10:48:30 -0800471 printf '%s\n' $(kubectl -n \$INFRA_NS get pods -l app=onos-onos-classic -o=jsonpath="{.items[*]['metadata.name']}") | xargs -I# bash -c "kubectl -n \$INFRA_NS cp #:${karafHome}/data/log/karaf.log $LOG_FOLDER/#.log" || true
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800472
473 # get radius logs out of the container
Matteo Scandolod4064492020-11-13 10:48:30 -0800474 kubectl -n \$INFRA_NS cp $(kubectl -n \$INFRA_NS get pods -l app=radius --no-headers | awk '{print $1}'):/var/log/freeradius/radius.log $LOG_FOLDER//radius.log || true
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800475 '''
476 // dump all the BBSim(s) ONU information
Matteo Scandolod4064492020-11-13 10:48:30 -0800477 script {
478 for (int i = 1; i <= params.volthaStacks.toInteger(); i++) {
479 stack_ns="voltha"+i
480 sh """
481 BBSIM_IDS=\$(kubectl -n ${stack_ns} get pods | grep bbsim | grep -v server | awk '{print \$1}')
482 IDS=(\$BBSIM_IDS)
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800483
Matteo Scandolod4064492020-11-13 10:48:30 -0800484 for bbsim in "\${IDS[@]}"
485 do
486 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl onu list > $LOG_FOLDER/$bbsim-device-list.txt || true
487 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl service list > $LOG_FOLDER/$bbsim-service-list.txt || true
488 done
489 """
490 }
491 }
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800492 // get ONOS debug infos
493 sh '''
494
495 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 apps -a -s > $LOG_FOLDER/onos-apps.txt || true
496 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 nodes > $LOG_FOLDER/onos-nodes.txt || true
497 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 masters > $LOG_FOLDER/onos-masters.txt || true
498 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 roles > $LOG_FOLDER/onos-roles.txt || true
499
500 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 ports > $LOG_FOLDER/onos-ports-list.txt || true
501 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 hosts > $LOG_FOLDER/onos-hosts-list.txt || true
502
503 if [ ${withFlows} = true ] ; then
504 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 volt-olts > $LOG_FOLDER/onos-olt-list.txt || true
505 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 flows -s > $LOG_FOLDER/onos-flows-list.txt || true
506 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 meters > $LOG_FOLDER/onos-meters-list.txt || true
507 fi
508
509 if [ ${provisionSubscribers} = true ]; then
510 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 volt-programmed-subscribers > $LOG_FOLDER/onos-programmed-subscribers.txt || true
511 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 volt-programmed-meters > $LOG_FOLDER/onos-programmed-meters.txt || true
512 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 volt-bpmeter-mappings > $LOG_FOLDER/onos-bpmeter-mappings.txt || true
513 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 volt-failed-subscribers > $LOG_FOLDER/onos-failed-subscribers.txt || true
514 fi
515
516 if [ ${withEapol} = true ] ; then
517 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 aaa-users > $LOG_FOLDER/onos-aaa-users.txt || true
518 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 aaa-statistics > $LOG_FOLDER/onos-aaa-statistics.txt || true
519 fi
520
521 if [ ${withDhcp} = true ] ; then
522 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 dhcpl2relay-allocations > $LOG_FOLDER/onos-dhcp-allocations.txt || true
523 fi
524 '''
525 // collect etcd metrics
526 sh '''
527 mkdir -p $WORKSPACE/etcd-metrics
528 curl -s -X GET -G http://10.90.0.101:31301/api/v1/query --data-urlencode 'query=etcd_debugging_mvcc_keys_total' | jq '.data' > $WORKSPACE/etcd-metrics/etcd-key-count.json || true
529 curl -s -X GET -G http://10.90.0.101:31301/api/v1/query --data-urlencode 'query=grpc_server_handled_total{grpc_service="etcdserverpb.KV"}' | jq '.data' > $WORKSPACE/etcd-metrics/etcd-rpc-count.json || true
530 curl -s -X GET -G http://10.90.0.101:31301/api/v1/query --data-urlencode 'query=etcd_debugging_mvcc_db_total_size_in_bytes' | jq '.data' > $WORKSPACE/etcd-metrics/etcd-db-size.json || true
531 curl -s -X GET -G http://10.90.0.101:31301/api/v1/query --data-urlencode 'query=etcd_disk_backend_commit_duration_seconds_sum' | jq '.data' > $WORKSPACE/etcd-metrics/etcd-backend-write-time.json || true
532 '''
533 // get VOLTHA debug infos
534 script {
Matteo Scandolod4064492020-11-13 10:48:30 -0800535 for (int i = 1; i <= params.volthaStacks.toInteger(); i++) {
536 stack_ns="voltha"+i
537 voltcfg="~/.volt/config-voltha"+i
538 println stack_ns
539 try {
540 sh """
541 voltctl -c $HOME/.volt/config-${stack_ns} -m 8MB device list -o json > $LOG_FOLDER/device-list.json || true
542 python -m json.tool $LOG_FOLDER/device-list.json > $LOG_FOLDER/voltha-devices-list.json || true
543 rm $LOG_FOLDER/device-list.json || true
544 voltctl -c $HOME/.volt/config-${stack_ns} -m 8MB device list > $LOG_FOLDER/voltha-devices-list.txt || true
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800545
Matteo Scandolod4064492020-11-13 10:48:30 -0800546 DEVICE_LIST=
547 printf '%s\n' \$(voltctl -c $HOME/.volt/config-${stack_ns} -m 8MB device list | grep olt | awk '{print \$1}') | xargs -I# bash -c "voltctl -c $HOME/.volt/config-${stack_ns}-m 8MB device flows # > $LOG_FOLDER/voltha-device-flows-#.txt" || true
548 printf '%s\n' \$(voltctl -c $HOME/.volt/config-${stack_ns} -m 8MB device list | grep olt | awk '{print \$1}') | xargs -I# bash -c "voltctl -c $HOME/.volt/config-${stack_ns} -m 8MB device port list --format 'table{{.PortNo}}\t{{.Label}}\t{{.Type}}\t{{.AdminState}}\t{{.OperStatus}}' # > $LOG_FOLDER/voltha-device-ports-#.txt" || true
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800549
Matteo Scandolod4064492020-11-13 10:48:30 -0800550 printf '%s\n' \$(voltctl -c $HOME/.volt/config-${stack_ns} -m 8MB logicaldevice list -q) | xargs -I# bash -c "voltctl -c $HOME/.volt/config-${stack_ns} -m 8MB logicaldevice flows # > $LOG_FOLDER/voltha-logicaldevice-flows-#.txt" || true
551 printf '%s\n' \$(voltctl -c $HOME/.volt/config-${stack_ns} -m 8MB logicaldevice list -q) | xargs -I# bash -c "voltctl -c $HOME/.volt/config-${stack_ns} -m 8MB logicaldevice port list # > $LOG_FOLDER/voltha-logicaldevice-ports-#.txt" || true
552 """
553 } catch(e) {
554 sh '''
555 echo "Can't get device list from voltclt"
556 '''
557 }
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800558 }
559 }
560 // get cpu usage by container
561 sh '''
562 if [ ${withMonitoring} = true ] ; then
563 cd $WORKSPACE/voltha-system-tests
564 source ./vst_venv/bin/activate
565 sleep 60 # we have to wait for prometheus to collect all the information
566 python tests/scale/sizing.py -o $WORKSPACE/plots || true
567 fi
568 '''
Matteo Scandolo5f6c5492020-11-12 17:37:25 -0800569 archiveArtifacts artifacts: 'kind-voltha/install-minimal.log,execution-time.txt,logs/*,logs/pprof/*,RobotLogs/**/*,plots/*,etcd-metrics/*'
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800570 }
571 }
572}
573
574def deploy_voltha_stacks(numberOfStacks) {
575 for (int i = 1; i <= numberOfStacks.toInteger(); i++) {
576 stage("Deploy VOLTHA stack " + i) {
577 sh returnStdout: false, script: """
578 cd $WORKSPACE/kind-voltha/
579
580 export NAME=voltha${i}
581 export VOLTHA_NS=voltha${i}
582 export ADAPTER_NS=voltha${i}
583 export BBSIM_NS=voltha${i}
584 export BBSIM_BASE_INDEX=${i}
585 export WITH_ETCD=etcd.\$INFRA_NS.svc:2379
586 export WITH_KAFKA=kafka.\$INFRA_NS.svc:9092
587 export WITH_ONOS=onos-onos-classic-hs.\$INFRA_NS.svc:6653
588
589 export EXTRA_HELM_FLAGS+=' '
590
591 # Load the release defaults
592 if [ '${release.trim()}' != 'master' ]; then
593 source $WORKSPACE/kind-voltha/releases/${release}
594 EXTRA_HELM_FLAGS+=" ${extraHelmFlags} "
595 fi
596
597 # BBSim custom image handling
598 if [ '${bbsimImg.trim()}' != '' ] && [ '\$GERRIT_PROJECT' != 'bbsim' ]; then
599 IFS=: read -r bbsimRepo bbsimTag <<< '${bbsimImg.trim()}'
600 EXTRA_HELM_FLAGS+="--set images.bbsim.repository=\$bbsimRepo,images.bbsim.tag=\$bbsimTag "
601 fi
602
603 # VOLTHA and ofAgent custom image handling
604 # NOTE to override the rw-core image in a released version you must set the ofAgent image too
605 # TODO split ofAgent and voltha-go
606 if [ '${rwCoreImg.trim()}' != '' ] && [ '${ofAgentImg.trim()}' != '' ] && [ '\$GERRIT_PROJECT' != 'voltha-go' ]; then
607 IFS=: read -r rwCoreRepo rwCoreTag <<< '${rwCoreImg.trim()}'
608 IFS=: read -r ofAgentRepo ofAgentTag <<< '${ofAgentImg.trim()}'
609 EXTRA_HELM_FLAGS+="--set images.rw_core.repository=\$rwCoreRepo,images.rw_core.tag=\$rwCoreTag,images.ofagent.repository=\$ofAgentRepo,images.ofagent.tag=\$ofAgentTag "
610 fi
611
612 # OpenOLT custom image handling
613 if [ '${openoltAdapterImg.trim()}' != '' ] && [ '\$GERRIT_PROJECT' != 'voltha-openolt-adapter' ]; then
614 IFS=: read -r openoltAdapterRepo openoltAdapterTag <<< '${openoltAdapterImg.trim()}'
615 EXTRA_HELM_FLAGS+="--set images.adapter_open_olt.repository=\$openoltAdapterRepo,images.adapter_open_olt.tag=\$openoltAdapterTag "
616 fi
617
618 # OpenONU custom image handling
619 if [ '${openonuAdapterImg.trim()}' != '' ] && [ '\$GERRIT_PROJECT' != 'voltha-openonu-adapter' ]; then
620 IFS=: read -r openonuAdapterRepo openonuAdapterTag <<< '${openonuAdapterImg.trim()}'
621 EXTRA_HELM_FLAGS+="--set images.adapter_open_onu.repository=\$openonuAdapterRepo,images.adapter_open_onu.tag=\$openonuAdapterTag "
622 fi
623
624 # ONOS custom image handling
625 if [ '${onosImg.trim()}' != '' ] && [ '\$GERRIT_PROJECT' != 'voltha-onos' ]; then
626 IFS=: read -r onosRepo onosTag <<< '${onosImg.trim()}'
627 EXTRA_HELM_FLAGS+="--set images.onos.repository=\$onosRepo,images.onos.tag=\$onosTag "
628 fi
629
630 # set BBSim parameters
631 EXTRA_HELM_FLAGS+='--set enablePerf=true,pon=${pons},onu=${onus} '
632
633 # disable the securityContext, this is a development cluster
634 EXTRA_HELM_FLAGS+='--set securityContext.enabled=false '
635
636 # No persistent-volume-claims in Atomix
637 EXTRA_HELM_FLAGS+="--set atomix.persistence.enabled=false "
638
639 echo "Installing with the following extra arguments:"
640 echo $EXTRA_HELM_FLAGS
641
642 # if it's newer than voltha-2.4 set the correct BBSIM_CFG
643 if [ '${release.trim()}' != 'voltha-2.4' ]; then
644 export BBSIM_CFG="$WORKSPACE/kind-voltha/configs/bbsim-sadis-${workflow}.yaml"
645 fi
646
647 # Use custom built images
648
649 if [ '\$GERRIT_PROJECT' == 'voltha-go' ]; then
650 EXTRA_HELM_FLAGS+="--set images.rw_core.repository=${dockerRegistry}/voltha/voltha-rw-core,images.rw_core.tag=voltha-scale "
651 fi
652
653 if [ '\$GERRIT_PROJECT' == 'voltha-openolt-adapter' ]; then
654 EXTRA_HELM_FLAGS+="--set images.adapter_open_olt.repository=${dockerRegistry}/voltha/voltha-openolt-adapter,images.adapter_open_olt.tag=voltha-scale "
655 fi
656
657 if [ '\$GERRIT_PROJECT' == 'voltha-openonu-adapter' ]; then
658 EXTRA_HELM_FLAGS+="--set images.adapter_open_onu.repository=${dockerRegistry}/voltha/voltha-openonu-adapter,images.adapter_open_onu.tag=voltha-scale "
659 fi
660
661 if [ '\$GERRIT_PROJECT' == 'ofagent-go' ]; then
662 EXTRA_HELM_FLAGS+="--set images.ofagent.repository=${dockerRegistry}/voltha/voltha-ofagent-go,images.ofagent.tag=voltha-scale "
663 fi
664
665 if [ '\$GERRIT_PROJECT' == 'voltha-onos' ]; then
666 EXTRA_HELM_FLAGS+="--set images.onos.repository=${dockerRegistry}/voltha/voltha-onos,images.onos.tag=voltha-scale "
667 fi
668
669 if [ '\$GERRIT_PROJECT' == 'bbsim' ]; then
670 EXTRA_HELM_FLAGS+="--set images.bbsim.repository=${dockerRegistry}/voltha/bbsim,images.bbsim.tag=voltha-scale "
671 fi
672
673 ./voltha up
674 """
675 }
676 }
677}
678
679def test_voltha_stacks(numberOfStacks) {
680 for (int i = 1; i <= numberOfStacks.toInteger(); i++) {
681 stage("Test VOLTHA stack " + i) {
682 timeout(time: 15, unit: 'MINUTES') {
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800683 sh """
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800684 export VOLTCONFIG="$HOME/.volt/config-voltha${i}"
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800685 ROBOT_PARAMS="-v stackId:${i} \
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800686 -v olt:${olts} \
687 -v pon:${pons} \
688 -v onu:${onus} \
689 -v workflow:${workflow} \
690 -v withEapol:${withEapol} \
691 -v withDhcp:${withDhcp} \
692 -v withIgmp:${withIgmp} \
693 --noncritical non-critical \
694 -e teardown "
695
696 if [ ${withEapol} = false ] ; then
697 ROBOT_PARAMS+="-e authentication "
698 fi
699
700 if [ ${withDhcp} = false ] ; then
701 ROBOT_PARAMS+="-e dhcp "
702 fi
703
704 if [ ${provisionSubscribers} = false ] ; then
705 # if we're not considering subscribers then we don't care about authentication and dhcp
706 ROBOT_PARAMS+="-e authentication -e provision -e flow-after -e dhcp "
707 fi
708
709 if [ ${withFlows} = false ] ; then
710 ROBOT_PARAMS+="-i setup -i activation "
711 fi
712
713 cd $WORKSPACE/voltha-system-tests
714 source ./vst_venv/bin/activate
Matteo Scandolo5f6c5492020-11-12 17:37:25 -0800715 robot -d $WORKSPACE/RobotLogs/voltha${i} \
Matteo Scandolodc4608c2020-11-12 16:48:16 -0800716 \$ROBOT_PARAMS tests/scale/Voltha_Scale_Tests.robot
717 """
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800718 }
719 }
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800720 }
721}