blob: 3ae1ce8f6d9ce659751ca1bb97cf561f5fb4ff6a [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 Scandoloa8afe122020-05-11 10:45:56 -070041 WITH_ETCD="etcd-cluster-client.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 Scandolofbcbdb82020-05-06 15:41:32 -070061
Matteo Scandolo0430f672020-05-07 11:50:26 -070062 VOLTHA_CHART="${volthaChart}"
63 VOLTHA_BBSIM_CHART="${bbsimChart}"
64 VOLTHA_ADAPTER_OPEN_OLT_CHART="${openoltAdapterChart}"
65 VOLTHA_ADAPTER_OPEN_ONU_CHART="${openonuAdapterChart}"
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070066 }
67
68 stages {
69 stage ('Cleanup') {
Matteo Scandolofbcbdb82020-05-06 15:41:32 -070070 steps {
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070071 timeout(time: 11, unit: 'MINUTES') {
72 sh returnStdout: false, script: """
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -070073 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com
74 helm repo add stable https://kubernetes-charts.storage.googleapis.com
75 helm repo add onf https://charts.opencord.org
76 helm repo add cord https://charts.opencord.org
77 helm repo add onos https://charts.onosproject.org
78 helm repo add atomix https://charts.atomix.io
79 helm repo add bbsim-sadis https://ciena.github.io/bbsim-sadis-server/charts
80 helm repo update
81
82 # removing ETCD port forward
83 P_ID="\$(ps e -ww -A | grep "_TAG=etcd-port-forward" | grep -v grep | awk '{print \$1}')"
84 if [ -n "\$P_ID" ]; then
85 kill -9 \$P_ID
86 fi
87
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070088 for hchart in \$(helm list -q | grep -E -v 'docker-registry|kafkacat|etcd-operator');
89 do
90 echo "Purging chart: \${hchart}"
91 helm delete --purge "\${hchart}"
92 done
93 bash /home/cord/voltha-scale/wait_for_pods.sh
Matteo Scandolob70b3e02020-05-07 11:50:26 -070094
Matteo Scandoloed41d8a2020-06-03 13:13:49 -070095 test -e $WORKSPACE/kind-voltha/voltha && cd $WORKSPACE/kind-voltha && ./voltha down
96
Matteo Scandoloa731f8f2020-05-11 10:27:26 -070097 cd $WORKSPACE
98 rm -rf $WORKSPACE/*
99 """
100 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700101 }
102 }
103 stage('Clone kind-voltha') {
104 steps {
105 checkout([
106 $class: 'GitSCM',
107 userRemoteConfigs: [[ url: "https://gerrit.opencord.org/kind-voltha", ]],
108 branches: [[ name: "master", ]],
109 extensions: [
110 [$class: 'WipeWorkspace'],
111 [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"],
112 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
113 ],
114 ])
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700115 script {
116 sh(script:"""
117 if [ '${kindVolthaChange}' != '' ] ; then
118 cd $WORKSPACE/kind-voltha;
119 git fetch https://gerrit.opencord.org/kind-voltha ${volthaSystemTestsChange} && git checkout FETCH_HEAD
120 fi
121 """)
122 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700123 }
124 }
125 stage('Clone voltha-system-tests') {
126 steps {
127 checkout([
128 $class: 'GitSCM',
129 userRemoteConfigs: [[ url: "https://gerrit.opencord.org/voltha-system-tests", ]],
130 branches: [[ name: "master", ]],
131 extensions: [
132 [$class: 'WipeWorkspace'],
133 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
134 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
135 ],
136 ])
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700137 script {
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700138 sh(script:"""
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700139 if [ '${volthaSystemTestsChange}' != '' ] ; then
Matteo Scandolo5708e2f2020-06-03 14:11:32 -0700140 cd $WORKSPACE/voltha-system-tests;
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700141 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
142 fi
143 """)
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700144 }
145 }
146 }
Matteo Scandolo0430f672020-05-07 11:50:26 -0700147 stage('Deploy common infrastructure') {
Matteo Scandoloa8afe122020-05-11 10:45:56 -0700148 // includes monitoring, kafka, etcd
Matteo Scandolo0430f672020-05-07 11:50:26 -0700149 steps {
150 sh '''
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700151 helm install -n kafka incubator/kafka --version 0.13.3 --set replicas=3 --set persistence.enabled=false --set zookeeper.replicaCount=3 --set zookeeper.persistence.enabled=false --version=0.15.3
Matteo Scandolo0430f672020-05-07 11:50:26 -0700152
Matteo Scandolo683b1442020-05-21 15:30:57 -0700153 helm install --set clusterName=etcd-cluster --set autoCompactionRetention=1 --set clusterSize=3 --set defaults.log_level=WARN --namespace default -n etcd-cluster onf/voltha-etcd-cluster ${extraHelmFlags}
Matteo Scandoloa8afe122020-05-11 10:45:56 -0700154
Matteo Scandolo0430f672020-05-07 11:50:26 -0700155 if [ ${withMonitoring} = true ] ; then
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700156 helm install -n nem-monitoring cord/nem-monitoring \
157 --set prometheus.alertmanager.enabled=false,prometheus.pushgateway.enabled=false \
158 --set kpi_exporter.enabled=false,dashboards.xos=false,dashboards.onos=false,dashboards.aaa=false,dashboards.voltha=false
Matteo Scandolo0430f672020-05-07 11:50:26 -0700159 fi
160
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700161 # 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 -0700162 bash /home/cord/voltha-scale/wait_for_pods.sh
163 '''
164 }
165 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700166 stage('Deploy Voltha') {
167 steps {
168 script {
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700169 // TODO install etcd outside kind-voltha (no need to redeploy the operator everytime)
170 sh returnStdout: false, script: """
Matteo Scandolo0430f672020-05-07 11:50:26 -0700171 export EXTRA_HELM_FLAGS+='--set enablePerf=true,pon=${pons},onu=${onus} '
172
173 # BBSim custom image handling
174 IFS=: read -r bbsimRepo bbsimTag <<< ${bbsimImg}
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700175 EXTRA_HELM_FLAGS+="--set images.bbsim.repository=\$bbsimRepo,images.bbsim.tag=\$bbsimTag "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700176
177 # VOLTHA and ofAgent custom image handling
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700178 IFS=: read -r rwCoreRepo rwCoreTag <<< ${rwCoreImg}
Matteo Scandolo0430f672020-05-07 11:50:26 -0700179 IFS=: read -r ofAgentRepo ofAgentTag <<< ${ofAgentImg}
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700180 EXTRA_HELM_FLAGS+="--set images.rw_core.repository=\$rwCoreRepo,images.rw_core.tag=\$rwCoreTag,images.ofagent_go.repository=\$ofAgentRepo,images.ofagent_go.tag=\$ofAgentTag "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700181
182 # OpenOLT custom image handling
183 IFS=: read -r openoltAdapterRepo openoltAdapterTag <<< ${openoltAdapterImg}
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700184 EXTRA_HELM_FLAGS+="--set images.adapter_open_olt.repository=\$openoltAdapterRepo,images.adapter_open_olt.tag=\$openoltAdapterTag "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700185
186 # OpenONU custom image handling
187 IFS=: read -r openonuAdapterRepo openonuAdapterTag <<< ${openonuAdapterImg}
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700188 EXTRA_HELM_FLAGS+="--set images.adapter_open_onu.repository=\$openonuAdapterRepo,images.adapter_open_onu.tag=\$openonuAdapterTag "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700189
190 # ONOS custom image handling
191 IFS=: read -r onosRepo onosTag <<< ${onosImg}
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700192 EXTRA_HELM_FLAGS+="--set images.onos.repository=\$onosRepo,images.onos.tag=\$onosTag "
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700193
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700194 # No persistent-volume-claims in Atomix
195 EXTRA_HELM_FLAGS+="--set atomix.persistence.enabled=false "
196
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700197
198 cd $WORKSPACE/kind-voltha/
199
200 ./voltha up
201 """
202 }
Matteo Scandoloac946522020-05-27 15:20:59 -0700203 // bbsim-sadis server takes a while to cache the subscriber entries
204 // wait for that before starting the tests
205 sleep(120)
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700206 }
207 }
Matteo Scandolo0430f672020-05-07 11:50:26 -0700208 stage('Configuration') {
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700209 steps {
210 sh '''
Matteo Scandolo0430f672020-05-07 11:50:26 -0700211 # Always deactivate org.opencord.kafka
212 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.kafka
213
214 #Setting link discovery
215 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}
216
217 #Setting LOG level to ${logLevel}
218 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 -0700219 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 -0700220
Matteo Scandolo3136cca2020-05-15 14:14:27 -0700221 # Set Flows/Ports/Meters poll frequency
222 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}
223 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}
224
Matteo Scandolo0430f672020-05-07 11:50:26 -0700225 if [ ${withEapol} = false ] || [ ${withFlows} = false ]; then
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700226 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 -0700227 fi
228
229 if [ ${withDhcp} = false ] || [ ${withFlows} = false ]; then
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700230 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 -0700231 fi
232
233 if [ ${withIgmp} = false ] || [ ${withFlows} = false ]; then
234 # FIXME will actually affected the tests only after VOL-3054 is addressed
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700235 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.igmpproxy
236 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 -0700237 fi
238
239 if [ ${withFlows} = false ]; then
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700240 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 -0700241 fi
242
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700243 if [ ${withMibTemplate} = true ] ; then
244 rm -f BBSM-12345123451234512345-00000000000001-v1.json
245 wget https://raw.githubusercontent.com/opencord/voltha-openonu-adapter/master/templates/BBSM-12345123451234512345-00000000000001-v1.json
246 cat BBSM-12345123451234512345-00000000000001-v1.json | kubectl exec -it $(kubectl get pods | grep etcd-cluster | awk 'NR==1{print $1}') etcdctl put service/voltha/omci_mibs/templates/BBSM/12345123451234512345/00000000000001
247 fi
Matteo Scandolod2e2a0d2020-06-10 18:02:03 -0700248
249 # Set extra openolt-adapter logs
250 _TAG=etcd-port-forward kubectl port-forward --address 0.0.0.0 -n default service/etcd-cluster-client 9999:2379&
251 voltctl log level set INFO adapter-open-olt
252 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
253 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
254 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
255
256 # Set extra logs on olt app in onos
257 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 log:set DEBUG org.opencord.olt
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700258 '''
259 }
260 }
261 stage('Run Test') {
262 steps {
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700263 sh '''
264 mkdir -p $WORKSPACE/RobotLogs
265 cd $WORKSPACE/voltha-system-tests
266 make vst_venv
267 '''
268 sh '''
269 if [ ${withProfiling} = true ] ; then
270 mkdir -p $WORKSPACE/logs/pprof
271 echo $PATH
272 #Creating Python script for ONU Detection
273 cat << EOF > $WORKSPACE/pprof.sh
Matteo Scandolo3ddd3fb2020-05-12 14:31:14 -0700274timestamp() {
275 date +"%T"
276}
277
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700278i=0
279while [[ true ]]; do
280 ((i++))
Matteo Scandolo3ddd3fb2020-05-12 14:31:14 -0700281 ts=$(timestamp)
Matteo Scandolo41cbc542020-05-12 13:59:12 -0700282 go tool pprof -png http://127.0.0.1:6060/debug/pprof/heap > $WORKSPACE/logs/pprof/rw-core-heap-\\$i-\\$ts.png
283 go tool pprof -png http://127.0.0.1:6060/debug/pprof/goroutine > $WORKSPACE/logs/pprof/rw-core-goroutine-\\$i-\\$ts.png
284 curl -o $WORKSPACE/logs/pprof/rw-core-profile-\\$i-\\$ts.pprof http://127.0.0.1:6060/debug/pprof/profile?seconds=10
285 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 -0700286
Matteo Scandolo41cbc542020-05-12 13:59:12 -0700287 go tool pprof -png http://127.0.0.1:6061/debug/pprof/heap > $WORKSPACE/logs/pprof/openolt-heap-\\$i-\\$ts.png
288 go tool pprof -png http://127.0.0.1:6061/debug/pprof/goroutine > $WORKSPACE/logs/pprof/openolt-goroutine-\\$i-\\$ts.png
289 curl -o $WORKSPACE/logs/pprof/openolt-profile-\\$i-\\$ts.pprof http://127.0.0.1:6061/debug/pprof/profile?seconds=10
290 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 -0700291
Matteo Scandolo731d12c2020-05-13 14:33:26 -0700292 go tool pprof -png http://127.0.0.1:6062/debug/pprof/heap > $WORKSPACE/logs/pprof/ofagent-heap-\\$i-\\$ts.png
293 go tool pprof -png http://127.0.0.1:6062/debug/pprof/goroutine > $WORKSPACE/logs/pprof/ofagent-goroutine-\\$i-\\$ts.png
294 curl -o $WORKSPACE/logs/pprof/ofagent-profile-\\$i-\\$ts.pprof http://127.0.0.1:6062/debug/pprof/profile?seconds=10
295 go tool pprof -png $WORKSPACE/logs/pprof/ofagent-profile-\\$i-\\$ts.pprof > $WORKSPACE/logs/pprof/ofagent-profile-\\$i-\\$ts.png
296
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700297 sleep 10
298done
299EOF
300
301 _TAG="pprof"
302 _TAG=$_TAG bash $WORKSPACE/pprof.sh &
303 fi
304 '''
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700305 timeout(time: 11, unit: 'MINUTES') {
306 sh '''
307 ROBOT_PARAMS="-v olt:${olts} \
308 -v pon:${pons} \
309 -v onu:${onus} \
310 -v workflow:${workflow} \
311 -v withEapol:${withEapol} \
312 -v withDhcp:${withDhcp} \
313 -v withIgmp:${withIgmp} \
314 --noncritical non-critical \
315 -e teardown "
Matteo Scandolo0430f672020-05-07 11:50:26 -0700316
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700317 if [ ${withEapol} = false ] ; then
318 ROBOT_PARAMS+="-e authentication "
319 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700320
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700321 if [ ${withDhcp} = false ] ; then
322 ROBOT_PARAMS+="-e dhcp "
323 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700324
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700325 if [ ${provisionSubscribers} = false ] ; then
Matteo Scandolocd59fd02020-05-12 15:00:35 -0700326 # if we're not considering subscribers then we don't care about authentication and dhcp
Matteo Scandolo111c8932020-05-12 18:28:05 -0700327 ROBOT_PARAMS+="-e authentication -e provision -e flow-after -e dhcp "
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700328 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700329
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700330 if [ ${withFlows} = false ] ; then
331 ROBOT_PARAMS+="-i setup -i activation "
332 fi
Matteo Scandolo0430f672020-05-07 11:50:26 -0700333
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700334 cd $WORKSPACE/voltha-system-tests
Matteo Scandolo9b0728b2020-05-11 08:25:57 -0700335 source ./vst_venv/bin/activate
336 robot -d $WORKSPACE/RobotLogs \
337 $ROBOT_PARAMS tests/scale/Voltha_Scale_Tests.robot
338 '''
339 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700340 }
341 }
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700342 }
343 post {
344 always {
Matteo Scandolo157f66c2020-05-12 09:26:19 -0700345 // collect result, done in the "post" step so it's executed even in the
346 // event of a timeout in the tests
347 sh '''
348 cd voltha-system-tests
349 source ./vst_venv/bin/activate
350 python tests/scale/collect-result.py -r $WORKSPACE/RobotLogs/output.xml -p $WORKSPACE/plots > $WORKSPACE/execution-time.txt
351 cat $WORKSPACE/execution-time.txt
352 '''
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700353 sh '''
354 if [ ${withProfiling} = true ] ; then
355 _TAG="pprof"
356 P_IDS="$(ps e -ww -A | grep "_TAG=$_TAG" | grep -v grep | awk '{print $1}')"
357 if [ -n "$P_IDS" ]; then
358 echo $P_IDS
359 for P_ID in $P_IDS; do
360 kill -9 $P_ID
361 done
362 fi
363 fi
364 '''
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700365 plot([
366 csvFileName: 'scale-test.csv',
367 csvSeries: [
Matteo Scandolo272aed42020-05-08 15:05:57 -0700368 [file: 'plots/plot-voltha-onus.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
369 [file: 'plots/plot-onos-ports.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
370 [file: 'plots/plot-voltha-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo64966762020-05-13 11:51:38 -0700371 [file: 'plots/plot-voltha-openolt-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo272aed42020-05-08 15:05:57 -0700372 [file: 'plots/plot-onos-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
373 [file: 'plots/plot-onos-auth.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
374 [file: 'plots/plot-voltha-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo64966762020-05-13 11:51:38 -0700375 [file: 'plots/plot-voltha-openolt-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolo272aed42020-05-08 15:05:57 -0700376 [file: 'plots/plot-onos-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
377 [file: 'plots/plot-onos-dhcp.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700378 ],
379 group: 'Voltha-Scale-Numbers', numBuilds: '20', style: 'line', title: "Scale Test (OLTs: ${olts}, PONs: ${pons}, ONUs: ${onus})", yaxis: 'Time (s)', useDescr: true
380 ])
381 step([$class: 'RobotPublisher',
382 disableArchiveOutput: false,
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700383 logFileName: 'RobotLogs/log.html',
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700384 otherFiles: '',
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700385 outputFileName: 'RobotLogs/output.xml',
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700386 outputPath: '.',
387 passThreshold: 100,
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700388 reportFileName: 'RobotLogs/report.html',
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700389 unstableThreshold: 0]);
Matteo Scandolo502644b2020-05-18 08:56:18 -0700390 // get all the logs from kubernetes PODs
Matteo Scandoloede5abd2020-05-22 10:57:10 -0700391 sh returnStdout: false, script: '''
392 LOG_FOLDER=$WORKSPACE/logs
393 mkdir -p $LOG_FOLDER
394
395 # store information on the running pods
396 kubectl get pods -o wide > $LOG_FOLDER/pods.txt
397 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-images.txt
398 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-imagesId.txt
399
400 # log in individual files for all the container that match the selector app=$APP_TO_LOG
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700401 APPS_TO_LOG=(etcd kafka onos adapter-open-onu adapter-open-olt rw-core ofagent bbsim)
Matteo Scandoloede5abd2020-05-22 10:57:10 -0700402 for app in "${APPS_TO_LOG[@]}"
403 do
404 echo "Getting logs for: ${app}"
405 kubectl get pods -l app=${app} -o=jsonpath=\"{.items[*]['metadata.name']}\"
Andrea Campanella743f52e2020-05-27 10:07:33 +0200406 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 -0700407
408 # Get the logs from the previous POD if any (useful in case of restarts)
Matteo Scandolof4de4962020-05-29 13:34:20 -0700409 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 -0700410 done
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700411
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700412 # copy the ONOS logs directly from the container to avoid the color codes
413 printf '%s\n' $(kubectl get pods -l app=onos-onos-classic -o=jsonpath="{.items[*]['metadata.name']}") | xargs -I@ bash -c "kubectl cp @:apache-karaf-4.2.8/data/log/karaf.log $LOG_FOLDER/@.log"
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700414 '''
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700415 // dump all the BBSim(s) ONU informations
416 sh '''
417 BBSIM_IDS=$(kubectl get pods | grep bbsim | grep -v server | awk '{print $1}')
418 IDS=($BBSIM_IDS)
419
420 for bbsim in "${IDS[@]}"
421 do
422 kubectl exec -t $bbsim bbsimctl onu list > $WORKSPACE/logs/$bbsim-device-list.txt
423 done
424 '''
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700425 // get ONOS debug infos
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700426 sh '''
427 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 -0700428
429 if [ ${withFlows} = true ] ; then
430 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
431 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
432 fi
433
Matteo Scandolo0bf7e9e2020-05-29 18:17:50 -0700434 if [ ${provisionSubscribers} = true ]; then
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700435 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
436 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
437 fi
438
Matteo Scandolo172c9ca2020-06-10 12:23:48 -0700439 if [ ${withEapol} = true ] ; then
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700440 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
441 fi
442
Matteo Scandolo172c9ca2020-06-10 12:23:48 -0700443 if [ ${withDhcp} = true ] ; then
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700444 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
445 fi
Matteo Scandolob70b3e02020-05-07 11:50:26 -0700446 '''
Shrey Baidcf652c82020-05-21 13:35:04 +0530447 // get cpu usage by container
448 sh '''
449 curl -s -X GET -G http://10.90.0.101:31301/api/v1/query --data-urlencode 'query=avg(rate(container_cpu_usage_seconds_total[10m])*100) by (pod_name)' | jq . > $WORKSPACE/cpu-usage.json
450 '''
451 // collect etcd metrics
452 sh '''
453 mkdir $WORKSPACE/etcd-metrics
454 curl -s -X GET -G http://10.90.0.101:31301/api/v1/query --data-urlencode 'query=etcd_debugging_mvcc_keys_total' | jq '.data.result[0].value[1]' > $WORKSPACE/etcd-metrics/etcd-key-count.json
455 curl -s -X GET -G http://10.90.0.101:31301/api/v1/query --data-urlencode 'query=grpc_server_handled_total{grpc_code="OK",grpc_service="etcdserverpb.KV"}' | jq . > $WORKSPACE/etcd-metrics/etcd-rpc-count.json
456 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.result[0].value[1]' > $WORKSPACE/etcd-metrics/etcd-db-size.json
457 '''
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700458 // get VOLTHA debug infos
Matteo Scandolo502644b2020-05-18 08:56:18 -0700459 script {
460 try {
461 sh '''
462 voltctl device list -o json > $WORKSPACE/logs/device-list.json
463 python -m json.tool $WORKSPACE/logs/device-list.json > $WORKSPACE/logs/voltha-devices-list.json
Matteo Scandolo32da27d2020-05-29 10:38:31 -0700464
465 printf '%s\n' $(voltctl device list | grep olt | awk '{print $1}') | xargs -I@ bash -c "voltctl device flows @ > $WORKSPACE/logs/voltha-device-flows-@.txt"
466 printf '%s\n' $(voltctl device list | grep olt | awk '{print $1}') | xargs -I@ bash -c "voltctl device port list --format 'table{{.PortNo}}\t{{.Label}}\t{{.Type}}\t{{.AdminState}}\t{{.OperStatus}}' @ > $WORKSPACE/logs/voltha-device-ports-@.txt"
467
468 printf '%s\n' $(voltctl logicaldevice list -q) | xargs -I@ bash -c "voltctl logicaldevice flows @ > $WORKSPACE/logs/voltha-logicaldevice-flows-@.txt"
469 printf '%s\n' $(voltctl logicaldevice list -q) | xargs -I@ bash -c "voltctl logicaldevice port list @ > $WORKSPACE/logs/voltha-logicaldevice-ports-@.txt"
Matteo Scandolo502644b2020-05-18 08:56:18 -0700470 '''
471 } catch(e) {
472 sh '''
473 echo "Can't get device list from voltclt"
474 '''
475 }
476 }
Matteo Scandolo0dc72af2020-05-12 10:14:57 -0700477 archiveArtifacts artifacts: 'kind-voltha/install-minimal.log,execution-time.txt,logs/*,logs/pprof/*,RobotLogs/*,plots/*.txt'
Matteo Scandolofbcbdb82020-05-06 15:41:32 -0700478 }
479 }
480}