blob: d04b25173489537bf15150a7be9262340b8d06c8 [file] [log] [blame]
Matteo Scandolofbcbdb82020-05-06 15:41:32 -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 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: 30, unit: 'MINUTES')
25 }
26 environment {
Matteo Scandoloc3dea532020-06-04 10:46:49 -070027 JENKINS_NODE_COOKIE="dontKillMe" // do not kill processes after the build is done
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070028 KUBECONFIG="$HOME/.kube/config"
29 VOLTCONFIG="$HOME/.volt/config"
Matteo Scandolob70b3e02020-05-07 11:50:26 -070030 SSHPASS="karaf"
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070031 PATH="$PATH:$WORKSPACE/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070032 TYPE="minimal"
33 FANCY=0
34 WITH_SIM_ADAPTERS="no"
35 WITH_RADIUS="yes"
36 WITH_BBSIM="yes"
37 LEGACY_BBSIM_INDEX="no"
38 DEPLOY_K8S="no"
39 CONFIG_SADIS="external"
Matteo Scandolo0430f672020-05-07 11:50:26 -070040 WITH_KAFKA="kafka.default.svc.cluster.local"
Matteo Scandolob46bc402020-06-11 13:59:44 -070041 WITH_ETCD="etcd.default.svc.cluster.local"
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -070042 VOLTHA_ETCD_PORT=9999
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070043
44 // install everything in the default namespace
45 VOLTHA_NS="default"
46 ADAPTER_NS="default"
47 INFRA_NS="default"
48 BBSIM_NS="default"
49
Matteo Scandolo0430f672020-05-07 11:50:26 -070050 // configurable options
51 WITH_EAPOL="${withEapol}"
52 WITH_DHCP="${withDhcp}"
53 WITH_IGMP="${withIgmp}"
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070054 VOLTHA_LOG_LEVEL="${logLevel}"
55 NUM_OF_BBSIM="${olts}"
Matteo Scandolo0430f672020-05-07 11:50:26 -070056 NUM_OF_OPENONU="${openonuAdapterReplicas}"
57 NUM_OF_ONOS="${onosReplicas}"
58 NUM_OF_ATOMIX="${atomixReplicas}"
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070059 WITH_PPROF="${withProfiling}"
Matteo Scandolo3136cca2020-05-15 14:14:27 -070060 EXTRA_HELM_FLAGS="${extraHelmFlags} " // note that the trailing space is required to separate the parameters from appends done later
Matteo Scandolo0430f672020-05-07 11:50:26 -070061 VOLTHA_CHART="${volthaChart}"
62 VOLTHA_BBSIM_CHART="${bbsimChart}"
63 VOLTHA_ADAPTER_OPEN_OLT_CHART="${openoltAdapterChart}"
64 VOLTHA_ADAPTER_OPEN_ONU_CHART="${openonuAdapterChart}"
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070065 }
66
67 stages {
68 stage ('Cleanup') {
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070069 steps {
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070070 timeout(time: 11, unit: 'MINUTES') {
71 sh returnStdout: false, script: """
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -070072 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com
73 helm repo add stable https://kubernetes-charts.storage.googleapis.com
74 helm repo add onf https://charts.opencord.org
75 helm repo add cord https://charts.opencord.org
76 helm repo add onos https://charts.onosproject.org
77 helm repo add atomix https://charts.atomix.io
78 helm repo add bbsim-sadis https://ciena.github.io/bbsim-sadis-server/charts
79 helm repo update
80
81 # removing ETCD port forward
82 P_ID="\$(ps e -ww -A | grep "_TAG=etcd-port-forward" | grep -v grep | awk '{print \$1}')"
83 if [ -n "\$P_ID" ]; then
84 kill -9 \$P_ID
85 fi
86
Matteo Scandolob46bc402020-06-11 13:59:44 -070087 for hchart in \$(helm list -q | grep -E -v 'docker-registry|kafkacat');
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070088 do
89 echo "Purging chart: \${hchart}"
Matteo Scandoloa9f6f8f2020-07-21 15:15:01 -070090 helm delete "\${hchart}"
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070091 done
92 bash /home/cord/voltha-scale/wait_for_pods.sh
Matteo Scandolob70b3e02020-05-07 11:50:26 -070093
Matteo Scandoloed41d8a2020-06-03 13:13:49 -070094 test -e $WORKSPACE/kind-voltha/voltha && cd $WORKSPACE/kind-voltha && ./voltha down
95
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070096 cd $WORKSPACE
97 rm -rf $WORKSPACE/*
98 """
99 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700100 }
101 }
102 stage('Clone kind-voltha') {
103 steps {
104 checkout([
105 $class: 'GitSCM',
106 userRemoteConfigs: [[ url: "https://gerrit.opencord.org/kind-voltha", ]],
107 branches: [[ name: "master", ]],
108 extensions: [
109 [$class: 'WipeWorkspace'],
110 [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"],
111 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
112 ],
113 ])
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700114 script {
115 sh(script:"""
116 if [ '${kindVolthaChange}' != '' ] ; then
117 cd $WORKSPACE/kind-voltha;
118 git fetch https://gerrit.opencord.org/kind-voltha ${volthaSystemTestsChange} && git checkout FETCH_HEAD
119 fi
120 """)
121 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700122 }
123 }
124 stage('Clone voltha-system-tests') {
125 steps {
126 checkout([
127 $class: 'GitSCM',
128 userRemoteConfigs: [[ url: "https://gerrit.opencord.org/voltha-system-tests", ]],
Matteo Scandolod43064b2020-07-13 17:18:45 -0700129 branches: [[ name: "${release}", ]],
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700130 extensions: [
131 [$class: 'WipeWorkspace'],
132 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
133 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
134 ],
135 ])
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700136 script {
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700137 sh(script:"""
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700138 if [ '${volthaSystemTestsChange}' != '' ] ; then
Matteo Scandolo5708e2f2020-06-03 14:11:32 -0700139 cd $WORKSPACE/voltha-system-tests;
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700140 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
141 fi
142 """)
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700143 }
144 }
145 }
Matteo Scandolo0430f672020-05-07 11:50:26 -0700146 stage('Deploy common infrastructure') {
Matteo Scandoloa8afe122020-05-11 10:45:56 -0700147 // includes monitoring, kafka, etcd
Matteo Scandolo0430f672020-05-07 11:50:26 -0700148 steps {
149 sh '''
Matteo Scandoloa9f6f8f2020-07-21 15:15:01 -0700150 helm install kafka incubator/kafka --set replicas=3 --set persistence.enabled=false --set zookeeper.replicaCount=3 --set zookeeper.persistence.enabled=false
Matteo Scandolo0430f672020-05-07 11:50:26 -0700151
Matteo Scandolocb580f62020-06-12 12:55:07 -0700152 # the ETCD chart use "auth" for resons different than BBsim, so strip that away
153 ETCD_FLAGS=$(echo ${extraHelmFlags} | sed -e 's/--set auth=false / /g') | sed -e 's/--set auth=true / /g'
Matteo Scandoloccc06192020-06-22 10:16:17 -0700154 ETCD_FLAGS+=" --set memoryMode=${inMemoryEtcdStorage} "
Matteo Scandoloa9f6f8f2020-07-21 15:15:01 -0700155 helm install -f $WORKSPACE/kind-voltha/minimal-values.yaml --set etcd.replicas=3 etcd etcd/etcd $ETCD_FLAGS
Matteo Scandoloa8afe122020-05-11 10:45:56 -0700156
Matteo Scandolo0430f672020-05-07 11:50:26 -0700157 if [ ${withMonitoring} = true ] ; then
Matteo Scandoloa9f6f8f2020-07-21 15:15:01 -0700158 helm install nem-monitoring cord/nem-monitoring \
Matteo Scandolo8f185c32020-07-16 16:30:04 -0700159 -f $HOME/voltha-scale/grafana.yaml \
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700160 --set prometheus.alertmanager.enabled=false,prometheus.pushgateway.enabled=false \
161 --set kpi_exporter.enabled=false,dashboards.xos=false,dashboards.onos=false,dashboards.aaa=false,dashboards.voltha=false
Matteo Scandolo0430f672020-05-07 11:50:26 -0700162 fi
163
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700164 # TODO download this file from https://github.com/opencord/helm-charts/blob/master/scripts/wait_for_pods.sh
Matteo Scandolo0430f672020-05-07 11:50:26 -0700165 bash /home/cord/voltha-scale/wait_for_pods.sh
166 '''
167 }
168 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700169 stage('Deploy Voltha') {
170 steps {
171 script {
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700172 sh returnStdout: false, script: """
Matteo Scandolod43064b2020-07-13 17:18:45 -0700173
174 cd $WORKSPACE/kind-voltha/
175
Matteo Scandolo1c5ffab2020-07-17 08:53:01 -0700176 export EXTRA_HELM_FLAGS+=' '
Matteo Scandoloc9dd44f2020-06-18 15:06:04 -0700177
Matteo Scandolod43064b2020-07-13 17:18:45 -0700178 if [ '${release}' == 'master' ]; then
179 # BBSim custom image handling
180 IFS=: read -r bbsimRepo bbsimTag <<< ${bbsimImg}
181 EXTRA_HELM_FLAGS+="--set images.bbsim.repository=\$bbsimRepo,images.bbsim.tag=\$bbsimTag "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700182
Matteo Scandolod43064b2020-07-13 17:18:45 -0700183 # VOLTHA and ofAgent custom image handling
184 IFS=: read -r rwCoreRepo rwCoreTag <<< ${rwCoreImg}
185 IFS=: read -r ofAgentRepo ofAgentTag <<< ${ofAgentImg}
186 EXTRA_HELM_FLAGS+="--set images.rw_core.repository=\$rwCoreRepo,images.rw_core.tag=\$rwCoreTag,images.ofagent.repository=\$ofAgentRepo,images.ofagent.tag=\$ofAgentTag "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700187
Matteo Scandolod43064b2020-07-13 17:18:45 -0700188 # OpenOLT custom image handling
189 IFS=: read -r openoltAdapterRepo openoltAdapterTag <<< ${openoltAdapterImg}
190 EXTRA_HELM_FLAGS+="--set images.adapter_open_olt.repository=\$openoltAdapterRepo,images.adapter_open_olt.tag=\$openoltAdapterTag "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700191
Matteo Scandolod43064b2020-07-13 17:18:45 -0700192 # OpenONU custom image handling
193 IFS=: read -r openonuAdapterRepo openonuAdapterTag <<< ${openonuAdapterImg}
194 EXTRA_HELM_FLAGS+="--set images.adapter_open_onu.repository=\$openonuAdapterRepo,images.adapter_open_onu.tag=\$openonuAdapterTag "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700195
Matteo Scandolod43064b2020-07-13 17:18:45 -0700196 # ONOS custom image handling
197 IFS=: read -r onosRepo onosTag <<< ${onosImg}
198 EXTRA_HELM_FLAGS+="--set images.onos.repository=\$onosRepo,images.onos.tag=\$onosTag "
199 else
200 source $WORKSPACE/kind-voltha/releases/${release}
201 fi
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700202
Matteo Scandolo1c5ffab2020-07-17 08:53:01 -0700203 # set BBSim parameters
204 EXTRA_HELM_FLAGS+='--set enablePerf=true,pon=${pons},onu=${onus} '
205
206 # disable the securityContext, this is a development cluster
207 EXTRA_HELM_FLAGS+='--set securityContext.enabled=false '
208
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700209 # No persistent-volume-claims in Atomix
210 EXTRA_HELM_FLAGS+="--set atomix.persistence.enabled=false "
211
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700212 ./voltha up
Matteo Scandolocb580f62020-06-12 12:55:07 -0700213
214 # Forward the ETCD port onto $VOLTHA_ETCD_PORT
215 _TAG=etcd-port-forward kubectl port-forward --address 0.0.0.0 -n default service/etcd $VOLTHA_ETCD_PORT:2379&
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700216 """
217 }
Matteo Scandoloac946522020-05-27 15:20:59 -0700218 // bbsim-sadis server takes a while to cache the subscriber entries
219 // wait for that before starting the tests
220 sleep(120)
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700221 }
222 }
Matteo Scandolo0430f672020-05-07 11:50:26 -0700223 stage('Configuration') {
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700224 steps {
225 sh '''
Matteo Scandolo0430f672020-05-07 11:50:26 -0700226 # Always deactivate org.opencord.kafka
227 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.kafka
228
229 #Setting link discovery
230 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}
231
232 #Setting LOG level to ${logLevel}
233 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 log:set ${logLevel}
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700234 kubectl exec $(kubectl get pods | grep -E "bbsim[0-9]" | awk 'NR==1{print $1}') -- bbsimctl log ${logLevel} false
Matteo Scandolo0430f672020-05-07 11:50:26 -0700235
Matteo Scandolo3136cca2020-05-15 14:14:27 -0700236 # Set Flows/Ports/Meters poll frequency
237 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}
238 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}
239
Matteo Scandolo0430f672020-05-07 11:50:26 -0700240 if [ ${withEapol} = false ] || [ ${withFlows} = false ]; then
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700241 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.aaa
Matteo Scandolo0430f672020-05-07 11:50:26 -0700242 fi
243
244 if [ ${withDhcp} = false ] || [ ${withFlows} = false ]; then
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700245 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.dhcpl2relay
Matteo Scandolo0430f672020-05-07 11:50:26 -0700246 fi
247
248 if [ ${withIgmp} = false ] || [ ${withFlows} = false ]; then
249 # FIXME will actually affected the tests only after VOL-3054 is addressed
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700250 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.igmpproxy
251 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.mcast
Matteo Scandolo0430f672020-05-07 11:50:26 -0700252 fi
253
254 if [ ${withFlows} = false ]; then
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700255 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.olt
Matteo Scandolo0430f672020-05-07 11:50:26 -0700256 fi
257
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700258 if [ ${withMibTemplate} = true ] ; then
259 rm -f BBSM-12345123451234512345-00000000000001-v1.json
260 wget https://raw.githubusercontent.com/opencord/voltha-openonu-adapter/master/templates/BBSM-12345123451234512345-00000000000001-v1.json
Matteo Scandolob46bc402020-06-11 13:59:44 -0700261 cat BBSM-12345123451234512345-00000000000001-v1.json | kubectl exec -it $(kubectl get pods -l app=etcd | awk 'NR==2{print $1}') etcdctl put service/voltha/omci_mibs/templates/BBSM/12345123451234512345/00000000000001
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700262 fi
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700263
Matteo Scandoloc9dd44f2020-06-18 15:06:04 -0700264 # Start the tcp-dump in ofagent
265 if [ ${withPcap} = true ] ; then
266 export OF_AGENT=$(kubectl get pods -l app=ofagent | awk 'NR==2{print $1}')
267 kubectl exec $OF_AGENT -- apk update
268 kubectl exec $OF_AGENT -- apk add tcpdump
269 kubectl exec $OF_AGENT -- mv /usr/sbin/tcpdump /usr/bin/tcpdump
270 _TAG=ofagent-tcpdump kubectl exec $OF_AGENT -- tcpdump -nei eth0 -w out.pcap&
271 fi
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700272 '''
273 }
274 }
275 stage('Run Test') {
276 steps {
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700277 sh '''
278 mkdir -p $WORKSPACE/RobotLogs
279 cd $WORKSPACE/voltha-system-tests
280 make vst_venv
281 '''
282 sh '''
283 if [ ${withProfiling} = true ] ; then
284 mkdir -p $WORKSPACE/logs/pprof
285 echo $PATH
286 #Creating Python script for ONU Detection
287 cat << EOF > $WORKSPACE/pprof.sh
Matteo Scandolo3ddd3fb2020-05-12 14:31:14 -0700288timestamp() {
289 date +"%T"
290}
291
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700292i=0
293while [[ true ]]; do
294 ((i++))
Matteo Scandolo3ddd3fb2020-05-12 14:31:14 -0700295 ts=$(timestamp)
Matteo Scandolo41cbc542020-05-12 13:59:12 -0700296 go tool pprof -png http://127.0.0.1:6060/debug/pprof/heap > $WORKSPACE/logs/pprof/rw-core-heap-\\$i-\\$ts.png
297 go tool pprof -png http://127.0.0.1:6060/debug/pprof/goroutine > $WORKSPACE/logs/pprof/rw-core-goroutine-\\$i-\\$ts.png
298 curl -o $WORKSPACE/logs/pprof/rw-core-profile-\\$i-\\$ts.pprof http://127.0.0.1:6060/debug/pprof/profile?seconds=10
299 go tool pprof -png $WORKSPACE/logs/pprof/rw-core-profile-\\$i-\\$ts.pprof > $WORKSPACE/logs/pprof/rw-core-profile-\\$i-\\$ts.png
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700300
Matteo Scandolo41cbc542020-05-12 13:59:12 -0700301 go tool pprof -png http://127.0.0.1:6061/debug/pprof/heap > $WORKSPACE/logs/pprof/openolt-heap-\\$i-\\$ts.png
302 go tool pprof -png http://127.0.0.1:6061/debug/pprof/goroutine > $WORKSPACE/logs/pprof/openolt-goroutine-\\$i-\\$ts.png
303 curl -o $WORKSPACE/logs/pprof/openolt-profile-\\$i-\\$ts.pprof http://127.0.0.1:6061/debug/pprof/profile?seconds=10
304 go tool pprof -png $WORKSPACE/logs/pprof/openolt-profile-\\$i-\\$ts.pprof > $WORKSPACE/logs/pprof/openolt-profile-\\$i-\\$ts.png
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700305
Matteo Scandolo731d12c2020-05-13 14:33:26 -0700306 go tool pprof -png http://127.0.0.1:6062/debug/pprof/heap > $WORKSPACE/logs/pprof/ofagent-heap-\\$i-\\$ts.png
307 go tool pprof -png http://127.0.0.1:6062/debug/pprof/goroutine > $WORKSPACE/logs/pprof/ofagent-goroutine-\\$i-\\$ts.png
308 curl -o $WORKSPACE/logs/pprof/ofagent-profile-\\$i-\\$ts.pprof http://127.0.0.1:6062/debug/pprof/profile?seconds=10
309 go tool pprof -png $WORKSPACE/logs/pprof/ofagent-profile-\\$i-\\$ts.pprof > $WORKSPACE/logs/pprof/ofagent-profile-\\$i-\\$ts.png
310
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700311 sleep 10
312done
313EOF
314
315 _TAG="pprof"
316 _TAG=$_TAG bash $WORKSPACE/pprof.sh &
317 fi
318 '''
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700319 timeout(time: 11, unit: 'MINUTES') {
320 sh '''
321 ROBOT_PARAMS="-v olt:${olts} \
322 -v pon:${pons} \
323 -v onu:${onus} \
324 -v workflow:${workflow} \
325 -v withEapol:${withEapol} \
326 -v withDhcp:${withDhcp} \
327 -v withIgmp:${withIgmp} \
328 --noncritical non-critical \
329 -e teardown "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700330
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700331 if [ ${withEapol} = false ] ; then
332 ROBOT_PARAMS+="-e authentication "
333 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700334
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700335 if [ ${withDhcp} = false ] ; then
336 ROBOT_PARAMS+="-e dhcp "
337 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700338
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700339 if [ ${provisionSubscribers} = false ] ; then
Matteo Scandolocd59fd02020-05-12 15:00:35 -0700340 # if we're not considering subscribers then we don't care about authentication and dhcp
Matteo Scandolo111c8932020-05-12 18:28:05 -0700341 ROBOT_PARAMS+="-e authentication -e provision -e flow-after -e dhcp "
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700342 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700343
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700344 if [ ${withFlows} = false ] ; then
345 ROBOT_PARAMS+="-i setup -i activation "
346 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700347
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700348 cd $WORKSPACE/voltha-system-tests
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700349 source ./vst_venv/bin/activate
350 robot -d $WORKSPACE/RobotLogs \
351 $ROBOT_PARAMS tests/scale/Voltha_Scale_Tests.robot
352 '''
353 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700354 }
355 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700356 }
357 post {
358 always {
Matteo Scandolo157f66c2020-05-12 09:26:19 -0700359 // collect result, done in the "post" step so it's executed even in the
360 // event of a timeout in the tests
361 sh '''
Matteo Scandoloc9dd44f2020-06-18 15:06:04 -0700362
363 if [ ${withPcap} = true ] ; then
364 # stop ofAgent tcpdump
365 P_ID="\$(ps e -ww -A | grep "_TAG=ofagent-tcpdump" | grep -v grep | awk '{print \$1}')"
366 if [ -n "\$P_ID" ]; then
367 kill -9 \$P_ID
368 fi
369
370 # copy the file
371 export OF_AGENT=$(kubectl get pods -l app=ofagent | awk 'NR==2{print $1}')
372 kubectl cp $OF_AGENT:out.pcap $WORKSPACE/logs/ofagent.pcap
373 fi
374
Matteo Scandolo157f66c2020-05-12 09:26:19 -0700375 cd voltha-system-tests
376 source ./vst_venv/bin/activate
377 python tests/scale/collect-result.py -r $WORKSPACE/RobotLogs/output.xml -p $WORKSPACE/plots > $WORKSPACE/execution-time.txt
378 cat $WORKSPACE/execution-time.txt
379 '''
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700380 sh '''
381 if [ ${withProfiling} = true ] ; then
382 _TAG="pprof"
383 P_IDS="$(ps e -ww -A | grep "_TAG=$_TAG" | grep -v grep | awk '{print $1}')"
384 if [ -n "$P_IDS" ]; then
385 echo $P_IDS
386 for P_ID in $P_IDS; do
387 kill -9 $P_ID
388 done
389 fi
390 fi
391 '''
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700392 plot([
393 csvFileName: 'scale-test.csv',
394 csvSeries: [
Matteo Scandolo272aed42020-05-08 15:05:57 -0700395 [file: 'plots/plot-voltha-onus.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
396 [file: 'plots/plot-onos-ports.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
397 [file: 'plots/plot-voltha-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo64966762020-05-13 11:51:38 -0700398 [file: 'plots/plot-voltha-openolt-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo272aed42020-05-08 15:05:57 -0700399 [file: 'plots/plot-onos-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
400 [file: 'plots/plot-onos-auth.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
401 [file: 'plots/plot-voltha-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo64966762020-05-13 11:51:38 -0700402 [file: 'plots/plot-voltha-openolt-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo272aed42020-05-08 15:05:57 -0700403 [file: 'plots/plot-onos-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
404 [file: 'plots/plot-onos-dhcp.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700405 ],
406 group: 'Voltha-Scale-Numbers', numBuilds: '20', style: 'line', title: "Scale Test (OLTs: ${olts}, PONs: ${pons}, ONUs: ${onus})", yaxis: 'Time (s)', useDescr: true
407 ])
408 step([$class: 'RobotPublisher',
409 disableArchiveOutput: false,
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700410 logFileName: 'RobotLogs/log.html',
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700411 otherFiles: '',
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700412 outputFileName: 'RobotLogs/output.xml',
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700413 outputPath: '.',
414 passThreshold: 100,
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700415 reportFileName: 'RobotLogs/report.html',
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700416 unstableThreshold: 0]);
Matteo Scandolo502644b2020-05-18 08:56:18 -0700417 // get all the logs from kubernetes PODs
Matteo Scandoloede5abd2020-05-22 10:57:10 -0700418 sh returnStdout: false, script: '''
419 LOG_FOLDER=$WORKSPACE/logs
420 mkdir -p $LOG_FOLDER
421
Matteo Scandoloc495b362020-07-17 10:44:12 -0700422 # store information on running charts
423 helm ls > $LOG_FOLDER/helm-list.txt
424
Matteo Scandoloede5abd2020-05-22 10:57:10 -0700425 # store information on the running pods
426 kubectl get pods -o wide > $LOG_FOLDER/pods.txt
427 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-images.txt
428 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-imagesId.txt
429
430 # log in individual files for all the container that match the selector app=$APP_TO_LOG
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700431 APPS_TO_LOG=(etcd kafka onos adapter-open-onu adapter-open-olt rw-core ofagent bbsim)
Matteo Scandoloede5abd2020-05-22 10:57:10 -0700432 for app in "${APPS_TO_LOG[@]}"
433 do
434 echo "Getting logs for: ${app}"
435 kubectl get pods -l app=${app} -o=jsonpath=\"{.items[*]['metadata.name']}\"
Andrea Campanella743f52e2020-05-27 10:07:33 +0200436 printf '%s\n' $(kubectl get pods -l app=$app -o=jsonpath="{.items[*]['metadata.name']}") | xargs -I@ bash -c "kubectl logs @ > $LOG_FOLDER/@.log"
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700437
438 # Get the logs from the previous POD if any (useful in case of restarts)
Matteo Scandolof4de4962020-05-29 13:34:20 -0700439 printf '%s\n' $(kubectl get pods -l app=$app -o=jsonpath="{.items[*]['metadata.name']}") | xargs -I@ bash -c "kubectl logs -p @ > $LOG_FOLDER/@-previous.log" || true
Matteo Scandoloede5abd2020-05-22 10:57:10 -0700440 done
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700441
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700442 # copy the ONOS logs directly from the container to avoid the color codes
Andrea Campanellaa81c7dc2020-07-17 16:26:12 +0200443 # TODO remove hardcoded karaf version
444 printf '%s\n' $(kubectl get pods -l app=onos-onos-classic -o=jsonpath="{.items[*]['metadata.name']}") | xargs -I@ bash -c "kubectl cp @:${karafHome}/data/log/karaf.log $LOG_FOLDER/@.log"
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700445 '''
Matteo Scandolo27553c02020-07-16 17:21:57 -0700446 // dump all the BBSim(s) ONU information
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700447 sh '''
448 BBSIM_IDS=$(kubectl get pods | grep bbsim | grep -v server | awk '{print $1}')
449 IDS=($BBSIM_IDS)
450
451 for bbsim in "${IDS[@]}"
452 do
453 kubectl exec -t $bbsim bbsimctl onu list > $WORKSPACE/logs/$bbsim-device-list.txt
454 done
455 '''
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700456 // get ONOS debug infos
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700457 sh '''
458 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 ports > $WORKSPACE/logs/onos-ports-list.txt
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700459
460 if [ ${withFlows} = true ] ; then
Matteo Scandolo4c135122020-07-20 07:45:54 -0700461 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 volt-olts > $WORKSPACE/logs/onos-olt-list.txt
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700462 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 flows -s > $WORKSPACE/logs/onos-flows-list.txt
463 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 meters > $WORKSPACE/logs/onos-meters-list.txt
464 fi
465
Matteo Scandolo0bf7e9e2020-05-29 18:17:50 -0700466 if [ ${provisionSubscribers} = true ]; then
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700467 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 volt-programmed-subscribers > $WORKSPACE/logs/onos-programmed-subscribers.txt
468 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 volt-programmed-meters > $WORKSPACE/logs/onos-programmed-meters.txt
469 fi
470
Matteo Scandolo172c9ca2020-06-10 12:23:48 -0700471 if [ ${withEapol} = true ] ; then
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700472 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 aaa-users > $WORKSPACE/logs/onos-aaa-users.txt
473 fi
474
Matteo Scandolo172c9ca2020-06-10 12:23:48 -0700475 if [ ${withDhcp} = true ] ; then
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700476 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 dhcpl2relay-allocations > $WORKSPACE/logs/onos-dhcp-allocations.txt
477 fi
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700478 '''
Shrey Baidcf652c82020-05-21 13:35:04 +0530479 // collect etcd metrics
480 sh '''
481 mkdir $WORKSPACE/etcd-metrics
Matteo Scandolo602748a2020-06-17 10:56:52 -0700482 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
Matteo Scandolo7b897362020-06-17 12:22:48 -0700483 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
Matteo Scandolo602748a2020-06-17 10:56:52 -0700484 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
485 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
Shrey Baidcf652c82020-05-21 13:35:04 +0530486 '''
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700487 // get VOLTHA debug infos
Matteo Scandolo502644b2020-05-18 08:56:18 -0700488 script {
489 try {
490 sh '''
Matteo Scandolo96902c22020-07-17 10:07:56 -0700491 voltctl -m 8MB device list -o json > $WORKSPACE/logs/device-list.json
Matteo Scandolo502644b2020-05-18 08:56:18 -0700492 python -m json.tool $WORKSPACE/logs/device-list.json > $WORKSPACE/logs/voltha-devices-list.json
Matteo Scandolob46bc402020-06-11 13:59:44 -0700493 rm $WORKSPACE/logs/device-list.json
Matteo Scandolo96902c22020-07-17 10:07:56 -0700494 voltctl -m 8MB device list > $WORKSPACE/logs/voltha-devices-list.txt
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700495
Matteo Scandolo27553c02020-07-16 17:21:57 -0700496 printf '%s\n' $(voltctl -m 8MB device list | grep olt | awk '{print $1}') | xargs -I@ bash -c "voltctl -m 8MB device flows @ > $WORKSPACE/logs/voltha-device-flows-@.txt"
497 printf '%s\n' $(voltctl -m 8MB device list | grep olt | awk '{print $1}') | xargs -I@ bash -c "voltctl -m 8MB device port list --format 'table{{.PortNo}}\t{{.Label}}\t{{.Type}}\t{{.AdminState}}\t{{.OperStatus}}' @ > $WORKSPACE/logs/voltha-device-ports-@.txt"
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700498
Matteo Scandolo27553c02020-07-16 17:21:57 -0700499 printf '%s\n' $(voltctl -m 8MB logicaldevice list -q) | xargs -I@ bash -c "voltctl -m 8MB logicaldevice flows @ > $WORKSPACE/logs/voltha-logicaldevice-flows-@.txt"
500 printf '%s\n' $(voltctl -m 8MB logicaldevice list -q) | xargs -I@ bash -c "voltctl -m 8MB logicaldevice port list @ > $WORKSPACE/logs/voltha-logicaldevice-ports-@.txt"
Matteo Scandolo502644b2020-05-18 08:56:18 -0700501 '''
502 } catch(e) {
503 sh '''
504 echo "Can't get device list from voltclt"
505 '''
506 }
507 }
Matteo Scandolo27553c02020-07-16 17:21:57 -0700508 // get cpu usage by container
509 sh '''
510 cd $WORKSPACE/voltha-system-tests
511 source ./vst_venv/bin/activate
512 sleep 60 # we have to wait for prometheus to collect all the information
513 python tests/scale/sizing.py -o $WORKSPACE/plots
514 '''
Matteo Scandolo939c9a92020-07-16 11:49:37 -0700515 archiveArtifacts artifacts: 'kind-voltha/install-minimal.log,execution-time.txt,logs/*,logs/pprof/*,RobotLogs/*,plots/*.txt,plots/*.pdf,etcd-metrics/*'
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700516 }
517 }
518}