blob: 54ac69333f47e6fc0f0987cfc2943da7f9559f59 [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 Scandolo51c42982020-07-30 15:06:26 -070032 SCHEDULE_ON_CONTROL_NODES="yes"
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070033 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 Scandoloc4efe8a2020-07-23 20:02:18 +000060 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 Scandolo7d6695c2020-08-25 13:13:16 -070065
66 APPS_TO_LOG="etcd kafka onos-onos-classic adapter-open-onu adapter-open-olt rw-core ofagent bbsim radius"
Matteo Scandolof54c9b32020-08-27 07:58:27 -070067 LOG_FOLDER="$WORKSPACE/logs"
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070068 }
69
70 stages {
71 stage ('Cleanup') {
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070072 steps {
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070073 timeout(time: 11, unit: 'MINUTES') {
74 sh returnStdout: false, script: """
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -070075 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com
76 helm repo add stable https://kubernetes-charts.storage.googleapis.com
77 helm repo add onf https://charts.opencord.org
78 helm repo add cord https://charts.opencord.org
79 helm repo add onos https://charts.onosproject.org
80 helm repo add atomix https://charts.atomix.io
81 helm repo add bbsim-sadis https://ciena.github.io/bbsim-sadis-server/charts
82 helm repo update
83
84 # removing ETCD port forward
85 P_ID="\$(ps e -ww -A | grep "_TAG=etcd-port-forward" | grep -v grep | awk '{print \$1}')"
86 if [ -n "\$P_ID" ]; then
87 kill -9 \$P_ID
88 fi
89
Matteo Scandolob46bc402020-06-11 13:59:44 -070090 for hchart in \$(helm list -q | grep -E -v 'docker-registry|kafkacat');
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070091 do
92 echo "Purging chart: \${hchart}"
Matteo Scandoloa9f6f8f2020-07-21 15:15:01 -070093 helm delete "\${hchart}"
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070094 done
95 bash /home/cord/voltha-scale/wait_for_pods.sh
Matteo Scandolob70b3e02020-05-07 11:50:26 -070096
Matteo Scandoloed41d8a2020-06-03 13:13:49 -070097 test -e $WORKSPACE/kind-voltha/voltha && cd $WORKSPACE/kind-voltha && ./voltha down
98
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070099 cd $WORKSPACE
100 rm -rf $WORKSPACE/*
101 """
102 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700103 }
104 }
105 stage('Clone kind-voltha') {
106 steps {
107 checkout([
108 $class: 'GitSCM',
109 userRemoteConfigs: [[ url: "https://gerrit.opencord.org/kind-voltha", ]],
110 branches: [[ name: "master", ]],
111 extensions: [
112 [$class: 'WipeWorkspace'],
113 [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"],
114 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
115 ],
116 ])
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700117 script {
118 sh(script:"""
119 if [ '${kindVolthaChange}' != '' ] ; then
120 cd $WORKSPACE/kind-voltha;
Matteo Scandoloc05da5c2020-09-01 15:05:50 -0700121 git fetch https://gerrit.opencord.org/kind-voltha ${kindVolthaChange} && git checkout FETCH_HEAD
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700122 fi
123 """)
124 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700125 }
126 }
127 stage('Clone voltha-system-tests') {
128 steps {
129 checkout([
130 $class: 'GitSCM',
131 userRemoteConfigs: [[ url: "https://gerrit.opencord.org/voltha-system-tests", ]],
Matteo Scandolod43064b2020-07-13 17:18:45 -0700132 branches: [[ name: "${release}", ]],
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700133 extensions: [
134 [$class: 'WipeWorkspace'],
135 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
136 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
137 ],
138 ])
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700139 script {
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700140 sh(script:"""
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700141 if [ '${volthaSystemTestsChange}' != '' ] ; then
Matteo Scandolo5708e2f2020-06-03 14:11:32 -0700142 cd $WORKSPACE/voltha-system-tests;
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700143 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
144 fi
145 """)
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700146 }
147 }
148 }
Matteo Scandolo0430f672020-05-07 11:50:26 -0700149 stage('Deploy common infrastructure') {
Matteo Scandoloa8afe122020-05-11 10:45:56 -0700150 // includes monitoring, kafka, etcd
Matteo Scandolo0430f672020-05-07 11:50:26 -0700151 steps {
152 sh '''
Matteo Scandolo7d6695c2020-08-25 13:13:16 -0700153 helm install kafka incubator/kafka --set replicas=${kafkaReplicas} --set persistence.enabled=false --set zookeeper.replicaCount=${kafkaReplicas} --set zookeeper.persistence.enabled=false
Matteo Scandolo0430f672020-05-07 11:50:26 -0700154
Matteo Scandolocb580f62020-06-12 12:55:07 -0700155 # the ETCD chart use "auth" for resons different than BBsim, so strip that away
156 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 -0700157 ETCD_FLAGS+=" --set memoryMode=${inMemoryEtcdStorage} "
Matteo Scandolo7d6695c2020-08-25 13:13:16 -0700158 helm install -f $WORKSPACE/kind-voltha/values.yaml --set replicas=${etcdReplicas} etcd etcd/etcd $ETCD_FLAGS
Matteo Scandoloa8afe122020-05-11 10:45:56 -0700159
Matteo Scandolo0430f672020-05-07 11:50:26 -0700160 if [ ${withMonitoring} = true ] ; then
Matteo Scandoloa9f6f8f2020-07-21 15:15:01 -0700161 helm install nem-monitoring cord/nem-monitoring \
Matteo Scandolo8f185c32020-07-16 16:30:04 -0700162 -f $HOME/voltha-scale/grafana.yaml \
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700163 --set prometheus.alertmanager.enabled=false,prometheus.pushgateway.enabled=false \
164 --set kpi_exporter.enabled=false,dashboards.xos=false,dashboards.onos=false,dashboards.aaa=false,dashboards.voltha=false
Matteo Scandolo0430f672020-05-07 11:50:26 -0700165 fi
166
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700167 # 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 -0700168 bash /home/cord/voltha-scale/wait_for_pods.sh
169 '''
170 }
171 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700172 stage('Deploy Voltha') {
173 steps {
174 script {
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700175 sh returnStdout: false, script: """
Matteo Scandolod43064b2020-07-13 17:18:45 -0700176
177 cd $WORKSPACE/kind-voltha/
178
Matteo Scandoloc4efe8a2020-07-23 20:02:18 +0000179 export EXTRA_HELM_FLAGS+=' '
Matteo Scandoloc9dd44f2020-06-18 15:06:04 -0700180
Matteo Scandolob10be9a2020-08-04 13:55:59 -0700181 # Load the release defaults
182 if [ '${release.trim()}' != 'master' ]; then
Matteo Scandolod43064b2020-07-13 17:18:45 -0700183 source $WORKSPACE/kind-voltha/releases/${release}
Matteo Scandolo0e3fc2b2020-08-06 14:01:42 -0700184 EXTRA_HELM_FLAGS+=" ${extraHelmFlags} "
Matteo Scandolod43064b2020-07-13 17:18:45 -0700185 fi
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700186
Matteo Scandolo7e8a6962020-08-04 12:19:59 -0700187 # BBSim custom image handling
Matteo Scandolob10be9a2020-08-04 13:55:59 -0700188 if [ '${bbsimImg.trim()}' != '' ]; then
189 IFS=: read -r bbsimRepo bbsimTag <<< '${bbsimImg.trim()}'
190 EXTRA_HELM_FLAGS+="--set images.bbsim.repository=\$bbsimRepo,images.bbsim.tag=\$bbsimTag "
191 fi
Matteo Scandolo7e8a6962020-08-04 12:19:59 -0700192
193 # VOLTHA and ofAgent custom image handling
Matteo Scandolob10be9a2020-08-04 13:55:59 -0700194 # NOTE to override the rw-core image in a released version you must set the ofAgent image too
195 if [ '${rwCoreImg.trim()}' != '' ] && [ '${ofAgentImg.trim()}' != '' ]; then
196 IFS=: read -r rwCoreRepo rwCoreTag <<< '${rwCoreImg.trim()}'
197 IFS=: read -r ofAgentRepo ofAgentTag <<< '${ofAgentImg.trim()}'
198 EXTRA_HELM_FLAGS+="--set images.rw_core.repository=\$rwCoreRepo,images.rw_core.tag=\$rwCoreTag,images.ofagent.repository=\$ofAgentRepo,images.ofagent.tag=\$ofAgentTag "
199 fi
Matteo Scandolo7e8a6962020-08-04 12:19:59 -0700200
201 # OpenOLT custom image handling
Matteo Scandolob10be9a2020-08-04 13:55:59 -0700202 if [ '${openoltAdapterImg.trim()}' != '' ]; then
203 IFS=: read -r openoltAdapterRepo openoltAdapterTag <<< '${openoltAdapterImg.trim()}'
204 EXTRA_HELM_FLAGS+="--set images.adapter_open_olt.repository=\$openoltAdapterRepo,images.adapter_open_olt.tag=\$openoltAdapterTag "
205 fi
Matteo Scandolo7e8a6962020-08-04 12:19:59 -0700206
207 # OpenONU custom image handling
Matteo Scandolob10be9a2020-08-04 13:55:59 -0700208 if [ '${openonuAdapterImg.trim()}' != '' ]; then
209 IFS=: read -r openonuAdapterRepo openonuAdapterTag <<< '${openonuAdapterImg.trim()}'
210 EXTRA_HELM_FLAGS+="--set images.adapter_open_onu.repository=\$openonuAdapterRepo,images.adapter_open_onu.tag=\$openonuAdapterTag "
211 fi
Matteo Scandolo7e8a6962020-08-04 12:19:59 -0700212
213 # ONOS custom image handling
Matteo Scandolob10be9a2020-08-04 13:55:59 -0700214 if [ '${onosImg.trim()}' != '' ]; then
215 IFS=: read -r onosRepo onosTag <<< '${onosImg.trim()}'
216 EXTRA_HELM_FLAGS+="--set images.onos.repository=\$onosRepo,images.onos.tag=\$onosTag "
217 fi
Matteo Scandolo7e8a6962020-08-04 12:19:59 -0700218
Matteo Scandolo1c5ffab2020-07-17 08:53:01 -0700219 # set BBSim parameters
Matteo Scandoloc4efe8a2020-07-23 20:02:18 +0000220 EXTRA_HELM_FLAGS+='--set enablePerf=true,pon=${pons},onu=${onus} '
Matteo Scandolo1c5ffab2020-07-17 08:53:01 -0700221
222 # disable the securityContext, this is a development cluster
Matteo Scandoloc4efe8a2020-07-23 20:02:18 +0000223 EXTRA_HELM_FLAGS+='--set securityContext.enabled=false '
Matteo Scandolo1c5ffab2020-07-17 08:53:01 -0700224
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700225 # No persistent-volume-claims in Atomix
Matteo Scandoloc4efe8a2020-07-23 20:02:18 +0000226 EXTRA_HELM_FLAGS+="--set atomix.persistence.enabled=false "
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700227
Matteo Scandolo0e3fc2b2020-08-06 14:01:42 -0700228 echo "Installing with the following extra arguments:"
229 echo $EXTRA_HELM_FLAGS
230
Matteo Scandoloc05da5c2020-09-01 15:05:50 -0700231 # if it's master set the correct BBSIM_CFG
232 if [ '${release.trim()}' == 'master' ]; then
233 export BBSIM_CFG="$WORKSPACE/kind-voltha/configs/bbsim-sadis-${workflow}.yaml"
234 fi
235
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700236 ./voltha up
Matteo Scandolocb580f62020-06-12 12:55:07 -0700237
238 # Forward the ETCD port onto $VOLTHA_ETCD_PORT
239 _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 -0700240 """
241 }
Matteo Scandolo7d6695c2020-08-25 13:13:16 -0700242 sh returnStdout: false, script: '''
243 # start logging with kail
244
Matteo Scandolo7d6695c2020-08-25 13:13:16 -0700245 mkdir -p $LOG_FOLDER
246
247 list=($APPS_TO_LOG)
248 for app in "${list[@]}"
249 do
250 echo "Starting logs for: ${app}"
251 _TAG=kail-$app kail -l app=$app --since 1h > $LOG_FOLDER/$app.log&
252 done
253 '''
Matteo Scandoloac946522020-05-27 15:20:59 -0700254 // bbsim-sadis server takes a while to cache the subscriber entries
255 // wait for that before starting the tests
256 sleep(120)
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700257 }
258 }
Matteo Scandolo0430f672020-05-07 11:50:26 -0700259 stage('Configuration') {
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700260 steps {
261 sh '''
Matteo Scandolo0430f672020-05-07 11:50:26 -0700262 #Setting link discovery
263 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}
264
265 #Setting LOG level to ${logLevel}
266 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 -0700267 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 -0700268
Matteo Scandolo3136cca2020-05-15 14:14:27 -0700269 # Set Flows/Ports/Meters poll frequency
270 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}
271 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}
272
Matteo Scandolo0430f672020-05-07 11:50:26 -0700273 if [ ${withFlows} = false ]; then
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700274 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 -0700275 fi
276
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700277 if [ ${withMibTemplate} = true ] ; then
278 rm -f BBSM-12345123451234512345-00000000000001-v1.json
279 wget https://raw.githubusercontent.com/opencord/voltha-openonu-adapter/master/templates/BBSM-12345123451234512345-00000000000001-v1.json
Matteo Scandolob46bc402020-06-11 13:59:44 -0700280 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 -0700281 fi
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700282
Matteo Scandoloc9dd44f2020-06-18 15:06:04 -0700283 # Start the tcp-dump in ofagent
284 if [ ${withPcap} = true ] ; then
285 export OF_AGENT=$(kubectl get pods -l app=ofagent | awk 'NR==2{print $1}')
286 kubectl exec $OF_AGENT -- apk update
287 kubectl exec $OF_AGENT -- apk add tcpdump
288 kubectl exec $OF_AGENT -- mv /usr/sbin/tcpdump /usr/bin/tcpdump
289 _TAG=ofagent-tcpdump kubectl exec $OF_AGENT -- tcpdump -nei eth0 -w out.pcap&
290 fi
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700291 '''
292 }
293 }
294 stage('Run Test') {
295 steps {
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700296 sh '''
297 mkdir -p $WORKSPACE/RobotLogs
298 cd $WORKSPACE/voltha-system-tests
299 make vst_venv
300 '''
301 sh '''
302 if [ ${withProfiling} = true ] ; then
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700303 mkdir -p $LOG_FOLDER/pprof
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700304 echo $PATH
305 #Creating Python script for ONU Detection
306 cat << EOF > $WORKSPACE/pprof.sh
Matteo Scandolo3ddd3fb2020-05-12 14:31:14 -0700307timestamp() {
308 date +"%T"
309}
310
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700311i=0
312while [[ true ]]; do
313 ((i++))
Matteo Scandolo3ddd3fb2020-05-12 14:31:14 -0700314 ts=$(timestamp)
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700315 go tool pprof -png http://127.0.0.1:6060/debug/pprof/heap > $LOG_FOLDER/pprof/rw-core-heap-\\$i-\\$ts.png
316 go tool pprof -png http://127.0.0.1:6060/debug/pprof/goroutine > $LOG_FOLDER/pprof/rw-core-goroutine-\\$i-\\$ts.png
317 curl -o $LOG_FOLDER/pprof/rw-core-profile-\\$i-\\$ts.pprof http://127.0.0.1:6060/debug/pprof/profile?seconds=10
318 go tool pprof -png $LOG_FOLDER/pprof/rw-core-profile-\\$i-\\$ts.pprof > $LOG_FOLDER/pprof/rw-core-profile-\\$i-\\$ts.png
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700319
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700320 go tool pprof -png http://127.0.0.1:6061/debug/pprof/heap > $LOG_FOLDER/pprof/openolt-heap-\\$i-\\$ts.png
321 go tool pprof -png http://127.0.0.1:6061/debug/pprof/goroutine > $LOG_FOLDER/pprof/openolt-goroutine-\\$i-\\$ts.png
322 curl -o $LOG_FOLDER/pprof/openolt-profile-\\$i-\\$ts.pprof http://127.0.0.1:6061/debug/pprof/profile?seconds=10
323 go tool pprof -png $LOG_FOLDER/pprof/openolt-profile-\\$i-\\$ts.pprof > $LOG_FOLDER/pprof/openolt-profile-\\$i-\\$ts.png
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700324
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700325 go tool pprof -png http://127.0.0.1:6062/debug/pprof/heap > $LOG_FOLDER/pprof/ofagent-heap-\\$i-\\$ts.png
326 go tool pprof -png http://127.0.0.1:6062/debug/pprof/goroutine > $LOG_FOLDER/pprof/ofagent-goroutine-\\$i-\\$ts.png
327 curl -o $LOG_FOLDER/pprof/ofagent-profile-\\$i-\\$ts.pprof http://127.0.0.1:6062/debug/pprof/profile?seconds=10
328 go tool pprof -png $LOG_FOLDER/pprof/ofagent-profile-\\$i-\\$ts.pprof > $LOG_FOLDER/pprof/ofagent-profile-\\$i-\\$ts.png
Matteo Scandolo731d12c2020-05-13 14:33:26 -0700329
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700330 sleep 10
331done
332EOF
333
334 _TAG="pprof"
335 _TAG=$_TAG bash $WORKSPACE/pprof.sh &
336 fi
337 '''
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700338 timeout(time: 11, unit: 'MINUTES') {
339 sh '''
340 ROBOT_PARAMS="-v olt:${olts} \
341 -v pon:${pons} \
342 -v onu:${onus} \
343 -v workflow:${workflow} \
344 -v withEapol:${withEapol} \
345 -v withDhcp:${withDhcp} \
346 -v withIgmp:${withIgmp} \
347 --noncritical non-critical \
348 -e teardown "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700349
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700350 if [ ${withEapol} = false ] ; then
351 ROBOT_PARAMS+="-e authentication "
352 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700353
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700354 if [ ${withDhcp} = false ] ; then
355 ROBOT_PARAMS+="-e dhcp "
356 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700357
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700358 if [ ${provisionSubscribers} = false ] ; then
Matteo Scandolocd59fd02020-05-12 15:00:35 -0700359 # if we're not considering subscribers then we don't care about authentication and dhcp
Matteo Scandolo111c8932020-05-12 18:28:05 -0700360 ROBOT_PARAMS+="-e authentication -e provision -e flow-after -e dhcp "
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700361 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700362
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700363 if [ ${withFlows} = false ] ; then
364 ROBOT_PARAMS+="-i setup -i activation "
365 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700366
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700367 cd $WORKSPACE/voltha-system-tests
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700368 source ./vst_venv/bin/activate
369 robot -d $WORKSPACE/RobotLogs \
370 $ROBOT_PARAMS tests/scale/Voltha_Scale_Tests.robot
371 '''
372 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700373 }
374 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700375 }
376 post {
377 always {
Matteo Scandolo157f66c2020-05-12 09:26:19 -0700378 // collect result, done in the "post" step so it's executed even in the
379 // event of a timeout in the tests
380 sh '''
Matteo Scandoloc9dd44f2020-06-18 15:06:04 -0700381
Matteo Scandolo7d6695c2020-08-25 13:13:16 -0700382 # stop the kail processes
383 list=($APPS_TO_LOG)
384 for app in "${list[@]}"
385 do
386 echo "Stopping logs for: ${app}"
387 _TAG="kail-$app"
388 P_IDS="$(ps e -ww -A | grep "_TAG=$_TAG" | grep -v grep | awk '{print $1}')"
389 if [ -n "$P_IDS" ]; then
390 echo $P_IDS
391 for P_ID in $P_IDS; do
392 kill -9 $P_ID
393 done
394 fi
395 done
396
Matteo Scandoloc9dd44f2020-06-18 15:06:04 -0700397 if [ ${withPcap} = true ] ; then
398 # stop ofAgent tcpdump
399 P_ID="\$(ps e -ww -A | grep "_TAG=ofagent-tcpdump" | grep -v grep | awk '{print \$1}')"
400 if [ -n "\$P_ID" ]; then
401 kill -9 \$P_ID
402 fi
403
404 # copy the file
405 export OF_AGENT=$(kubectl get pods -l app=ofagent | awk 'NR==2{print $1}')
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700406 kubectl cp $OF_AGENT:out.pcap $LOG_FOLDER/ofagent.pcap
Matteo Scandoloc9dd44f2020-06-18 15:06:04 -0700407 fi
408
Matteo Scandolo157f66c2020-05-12 09:26:19 -0700409 cd voltha-system-tests
410 source ./vst_venv/bin/activate
Matteo Scandolo7d6695c2020-08-25 13:13:16 -0700411 python tests/scale/collect-result.py -r $WORKSPACE/RobotLogs/output.xml -p $WORKSPACE/plots > $WORKSPACE/execution-time.txt || true
Matteo Scandolo157f66c2020-05-12 09:26:19 -0700412 cat $WORKSPACE/execution-time.txt
413 '''
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700414 sh '''
415 if [ ${withProfiling} = true ] ; then
416 _TAG="pprof"
417 P_IDS="$(ps e -ww -A | grep "_TAG=$_TAG" | grep -v grep | awk '{print $1}')"
418 if [ -n "$P_IDS" ]; then
419 echo $P_IDS
420 for P_ID in $P_IDS; do
421 kill -9 $P_ID
422 done
423 fi
424 fi
425 '''
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700426 plot([
427 csvFileName: 'scale-test.csv',
428 csvSeries: [
Matteo Scandolo272aed42020-05-08 15:05:57 -0700429 [file: 'plots/plot-voltha-onus.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
430 [file: 'plots/plot-onos-ports.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
431 [file: 'plots/plot-voltha-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo64966762020-05-13 11:51:38 -0700432 [file: 'plots/plot-voltha-openolt-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo272aed42020-05-08 15:05:57 -0700433 [file: 'plots/plot-onos-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
434 [file: 'plots/plot-onos-auth.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
435 [file: 'plots/plot-voltha-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo64966762020-05-13 11:51:38 -0700436 [file: 'plots/plot-voltha-openolt-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo272aed42020-05-08 15:05:57 -0700437 [file: 'plots/plot-onos-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
438 [file: 'plots/plot-onos-dhcp.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700439 ],
440 group: 'Voltha-Scale-Numbers', numBuilds: '20', style: 'line', title: "Scale Test (OLTs: ${olts}, PONs: ${pons}, ONUs: ${onus})", yaxis: 'Time (s)', useDescr: true
441 ])
442 step([$class: 'RobotPublisher',
443 disableArchiveOutput: false,
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700444 logFileName: 'RobotLogs/log.html',
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700445 otherFiles: '',
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700446 outputFileName: 'RobotLogs/output.xml',
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700447 outputPath: '.',
448 passThreshold: 100,
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700449 reportFileName: 'RobotLogs/report.html',
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700450 unstableThreshold: 0]);
Matteo Scandolo502644b2020-05-18 08:56:18 -0700451 // get all the logs from kubernetes PODs
Matteo Scandoloede5abd2020-05-22 10:57:10 -0700452 sh returnStdout: false, script: '''
Matteo Scandoloede5abd2020-05-22 10:57:10 -0700453
Matteo Scandoloc495b362020-07-17 10:44:12 -0700454 # store information on running charts
Matteo Scandolo9214ebd2020-07-30 17:57:10 -0700455 helm ls > $LOG_FOLDER/helm-list.txt || true
Matteo Scandoloc495b362020-07-17 10:44:12 -0700456
Matteo Scandoloede5abd2020-05-22 10:57:10 -0700457 # store information on the running pods
Matteo Scandolo9214ebd2020-07-30 17:57:10 -0700458 kubectl get pods -o wide > $LOG_FOLDER/pods.txt || true
459 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-images.txt || true
460 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-imagesId.txt || true
Matteo Scandoloede5abd2020-05-22 10:57:10 -0700461
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700462 # copy the ONOS logs directly from the container to avoid the color codes
Matteo Scandolo958067b2020-08-03 15:37:09 -0700463 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" || true
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700464 '''
Matteo Scandolo27553c02020-07-16 17:21:57 -0700465 // dump all the BBSim(s) ONU information
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700466 sh '''
467 BBSIM_IDS=$(kubectl get pods | grep bbsim | grep -v server | awk '{print $1}')
468 IDS=($BBSIM_IDS)
469
470 for bbsim in "${IDS[@]}"
471 do
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700472 kubectl exec -t $bbsim bbsimctl onu list > $LOG_FOLDER/$bbsim-device-list.txt || true
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700473 done
474 '''
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700475 // get ONOS debug infos
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700476 sh '''
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700477 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
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700478
479 if [ ${withFlows} = true ] ; then
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700480 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
481 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
482 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
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700483 fi
484
Matteo Scandolo0bf7e9e2020-05-29 18:17:50 -0700485 if [ ${provisionSubscribers} = true ]; then
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700486 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
487 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
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700488 fi
489
Matteo Scandolo172c9ca2020-06-10 12:23:48 -0700490 if [ ${withEapol} = true ] ; then
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700491 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
492 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
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700493 fi
494
Matteo Scandolo172c9ca2020-06-10 12:23:48 -0700495 if [ ${withDhcp} = true ] ; then
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700496 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
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700497 fi
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700498 '''
Shrey Baidcf652c82020-05-21 13:35:04 +0530499 // collect etcd metrics
500 sh '''
501 mkdir $WORKSPACE/etcd-metrics
Matteo Scandolo9214ebd2020-07-30 17:57:10 -0700502 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
503 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
504 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
505 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
Shrey Baidcf652c82020-05-21 13:35:04 +0530506 '''
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700507 // get VOLTHA debug infos
Matteo Scandolo502644b2020-05-18 08:56:18 -0700508 script {
509 try {
510 sh '''
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700511 voltctl -m 8MB device list -o json > $LOG_FOLDER/device-list.json || true
512 python -m json.tool $LOG_FOLDER/device-list.json > $LOG_FOLDER/voltha-devices-list.json || true
513 rm $LOG_FOLDER/device-list.json || true
514 voltctl -m 8MB device list > $LOG_FOLDER/voltha-devices-list.txt || true
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700515
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700516 printf '%s\n' $(voltctl -m 8MB device list | grep olt | awk '{print $1}') | xargs -I# bash -c "voltctl -m 8MB device flows # > $LOG_FOLDER/voltha-device-flows-#.txt" || true
517 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}}' # > $LOG_FOLDER/voltha-device-ports-#.txt" || true
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700518
Matteo Scandolof54c9b32020-08-27 07:58:27 -0700519 printf '%s\n' $(voltctl -m 8MB logicaldevice list -q) | xargs -I# bash -c "voltctl -m 8MB logicaldevice flows # > $LOG_FOLDER/voltha-logicaldevice-flows-#.txt" || true
520 printf '%s\n' $(voltctl -m 8MB logicaldevice list -q) | xargs -I# bash -c "voltctl -m 8MB logicaldevice port list # > $LOG_FOLDER/voltha-logicaldevice-ports-#.txt" || true
Matteo Scandolo502644b2020-05-18 08:56:18 -0700521 '''
522 } catch(e) {
523 sh '''
524 echo "Can't get device list from voltclt"
525 '''
526 }
527 }
Matteo Scandolo27553c02020-07-16 17:21:57 -0700528 // get cpu usage by container
529 sh '''
Matteo Scandolo7d6695c2020-08-25 13:13:16 -0700530 if [ ${withMonitoring} = true ] ; then
531 cd $WORKSPACE/voltha-system-tests
532 source ./vst_venv/bin/activate
533 sleep 60 # we have to wait for prometheus to collect all the information
534 python tests/scale/sizing.py -o $WORKSPACE/plots || true
535 fi
Matteo Scandolo27553c02020-07-16 17:21:57 -0700536 '''
Matteo Scandolo48a681e2020-07-29 14:43:47 -0700537 archiveArtifacts artifacts: 'kind-voltha/install-minimal.log,execution-time.txt,logs/*,logs/pprof/*,RobotLogs/*,plots/*,etcd-metrics/*'
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700538 }
539 }
540}