blob: ef09ef04be946c1ebaaeb1b70651632da28c59b1 [file] [log] [blame]
Matteo Scandolo2bc660a2021-02-12 10:52:25 -08001// Copyright 2019-present Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// deploy VOLTHA using kind-voltha and performs a scale test
16
17// NOTE we are importing the library even if it's global so that it's
18// easier to change the keywords during a replay
19library identifier: 'cord-jenkins-libraries@master',
20 retriever: modernSCM([
21 $class: 'GitSCMSource',
22 remote: 'https://gerrit.opencord.org/ci-management.git'
23])
24
25pipeline {
26
27 /* no label, executor is determined by JJB */
28 agent {
29 label "${params.buildNode}"
30 }
31 options {
32 timeout(time: 120, unit: 'MINUTES')
33 }
34 environment {
35 JENKINS_NODE_COOKIE="dontKillMe" // do not kill processes after the build is done
36 KUBECONFIG="$HOME/.kube/config"
37 SSHPASS="karaf"
38 PATH="$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
39
Matteo Scandolo2bc660a2021-02-12 10:52:25 -080040 LOG_FOLDER="$WORKSPACE/logs"
41 }
42
43 stages {
44 stage ('Cleanup') {
45 steps {
46 timeout(time: 11, unit: 'MINUTES') {
47 script {
48 def namespaces = ["infra"]
49 // FIXME we may have leftovers from more VOLTHA stacks (eg: run1 had 10 stacks, run2 had 2 stacks)
50 volthaStacks.toInteger().times {
51 namespaces += "voltha${it + 1}"
52 }
53 helmTeardown(namespaces)
54 }
Matteo Scandolo544fa7b2021-07-23 11:03:24 -070055 sh returnStdout: false, script: '''
Matteo Scandolo2bc660a2021-02-12 10:52:25 -080056 helm repo add onf https://charts.opencord.org
Matteo Scandolo2bc660a2021-02-12 10:52:25 -080057 helm repo update
58
Matteo Scandolo544fa7b2021-07-23 11:03:24 -070059 # remove all persistent volume claims
60 kubectl delete pvc --all-namespaces --all
61 PVCS=\$(kubectl get pvc --all-namespaces --no-headers | wc -l)
62 while [[ \$PVCS != 0 ]]; do
63 sleep 5
64 PVCS=\$(kubectl get pvc --all-namespaces --no-headers | wc -l)
65 done
66
67 # remove orphaned port-forward from different namespaces
68 ps aux | grep port-forw | grep -v grep | awk '{print $2}' | xargs --no-run-if-empty kill -9 || true
69
70 cd $WORKSPACE
71 rm -rf $WORKSPACE/*
72 '''
Matteo Scandolo2bc660a2021-02-12 10:52:25 -080073 }
74 }
75 }
76 stage('Download Code') {
77 steps {
78 getVolthaCode([
79 branch: "${release}",
80 volthaSystemTestsChange: "${volthaSystemTestsChange}",
Girish Gowdraa5b1de22021-06-07 14:20:27 -070081 volthaHelmChartsChange: "${volthaHelmChartsChange}",
Matteo Scandolo2bc660a2021-02-12 10:52:25 -080082 ])
83 }
84 }
85 stage('Deploy common infrastructure') {
86 // includes monitoring
87 steps {
88 sh '''
89 if [ ${withMonitoring} = true ] ; then
90 helm install -n infra nem-monitoring cord/nem-monitoring \
91 -f $HOME/voltha-scale/grafana.yaml \
92 --set prometheus.alertmanager.enabled=false,prometheus.pushgateway.enabled=false \
93 --set kpi_exporter.enabled=false,dashboards.xos=false,dashboards.onos=false,dashboards.aaa=false,dashboards.voltha=false
94 fi
95 '''
96 }
97 }
Matteo Scandolo529e8822021-07-21 10:20:18 -070098 stage('Start logging') {
99 steps {
100 script {
101 startComponentsLogs([
102 appsToLog: [
103 'app.kubernetes.io/name=etcd',
104 'app.kubernetes.io/name=kafka',
105 'app=onos-classic',
106 'app=adapter-open-onu',
107 'app=adapter-open-olt',
108 'app=rw-core',
109 'app=ofagent',
110 'app=bbsim',
111 'app=radius',
112 'app=bbsim-sadis-server',
113 'app=onos-config-loader',
114 ]
115 ])
116 }
117 }
118 }
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800119 stage('Deploy VOLTHA infrastructure') {
120 steps {
Matteo Scandolo529e8822021-07-21 10:20:18 -0700121 timeout(time: 5, unit: 'MINUTES') {
122 script {
123 def localCharts = false
124 if (volthaHelmChartsChange != "" || release != "master") {
125 localCharts = true
126 }
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800127
Matteo Scandolo529e8822021-07-21 10:20:18 -0700128 def infraHelmFlags =
129 "--set global.log_level=${logLevel} " +
130 "--set radius.enabled=${withEapol} " +
131 "--set onos-classic.onosSshPort=30115 " +
Matteo Scandoloee163802022-01-14 17:02:43 -0800132 "--set onos-classic.onosApiPort=30120 " +
Matteo Scandolo529e8822021-07-21 10:20:18 -0700133 params.extraHelmFlags
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800134
Matteo Scandolo529e8822021-07-21 10:20:18 -0700135 volthaInfraDeploy([
136 workflow: workflow,
137 infraNamespace: "infra",
138 extraHelmFlags: infraHelmFlags,
139 localCharts: localCharts,
140 onosReplica: onosReplicas,
141 atomixReplica: atomixReplicas,
142 kafkaReplica: kafkaReplicas,
143 etcdReplica: etcdReplicas,
144 ])
145 }
146 }
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800147 }
148 }
149 stage('Deploy Voltha') {
150 steps {
151 deploy_voltha_stacks(params.volthaStacks)
152 }
153 }
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800154 stage('Configuration') {
155 steps {
156 script {
157 sh returnStdout: false, script: """
158
159 # forward ETCD port
Matteo Scandolo89f58332021-03-26 15:40:00 -0700160 JENKINS_NODE_COOKIE="dontKillMe" _TAG=etcd-port-forward /bin/bash -c "while true; do kubectl -n infra port-forward --address 0.0.0.0 service/etcd 9999:2379; done 2>&1 " &
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800161
162 # forward ONOS ports
Matteo Scandolo89f58332021-03-26 15:40:00 -0700163 JENKINS_NODE_COOKIE="dontKillMe" _TAG=onos-port-forward /bin/bash -c "while true; do kubectl -n infra port-forward --address 0.0.0.0 service/voltha-infra-onos-classic-hs 8101:8101; done 2>&1 " &
164 JENKINS_NODE_COOKIE="dontKillMe" _TAG=onos-port-forward /bin/bash -c "while true; do kubectl -n infra port-forward --address 0.0.0.0 service/voltha-infra-onos-classic-hs 8181:8181; done 2>&1 " &
Matteo Scandolo2d30c7d2021-02-25 15:39:51 -0800165
166 # make sure the the port-forward has started before moving forward
167 sleep 5
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800168 """
169 sh returnStdout: false, script: """
170 # TODO this needs to be repeated per stack
171 # kubectl exec \$(kubectl get pods | grep -E "bbsim[0-9]" | awk 'NR==1{print \$1}') -- bbsimctl log ${logLevel.toLowerCase()} false
172
173 #Setting link discovery
174 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}
175 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.net.flow.impl.FlowRuleManager allowExtraneousRules true
176 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.net.flow.impl.FlowRuleManager importExtraneousRules true
Matteo Scandolo433f60d2021-03-26 12:04:34 -0700177 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager accumulatorMaxBatchMillis 900
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800178 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager accumulatorMaxIdleMillis 500
Matteo Scandolo433f60d2021-03-26 12:04:34 -0700179 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg set org.opencord.olt.impl.Olt provisionDelay 1000
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800180
181 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg log:set ${logLevel} org.onosproject
182 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg log:set ${logLevel} org.opencord
183
184 # Set Flows/Ports/Meters poll frequency
185 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}
186 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}
187
Andrea Campanella71856eb2021-07-02 17:36:21 +0200188 #SR is not needed in scale tests and not currently used by operators in production, can be disabled.
189 sshpass -e ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.onosproject.segmentrouting
190
191
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800192 if [ ${withFlows} = false ]; then
193 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.olt
194 fi
195 """
196 }
197 }
198 }
199 stage('Setup Test') {
200 steps {
201 sh '''
202 mkdir -p $WORKSPACE/RobotLogs
203 cd $WORKSPACE/voltha-system-tests
204 make vst_venv
205 '''
206 }
207 }
208 stage('Run Test') {
209 steps {
210 test_voltha_stacks(params.volthaStacks)
211 }
212 }
213 }
214 post {
215 always {
Matteo Scandolo529e8822021-07-21 10:20:18 -0700216 stopComponentsLogs([compress: true])
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800217 // collect result, done in the "post" step so it's executed even in the
218 // event of a timeout in the tests
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800219 plot([
220 csvFileName: 'scale-test.csv',
221 csvSeries: [
222 [file: 'plots/plot-voltha-onus.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
223 [file: 'plots/plot-onos-ports.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
224 [file: 'plots/plot-voltha-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
225 [file: 'plots/plot-voltha-openolt-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
226 [file: 'plots/plot-onos-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
227 [file: 'plots/plot-onos-auth.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
228 [file: 'plots/plot-voltha-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
229 [file: 'plots/plot-voltha-openolt-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
230 [file: 'plots/plot-onos-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
231 [file: 'plots/plot-onos-dhcp.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
232 ],
233 group: 'Voltha-Scale-Numbers', numBuilds: '20', style: 'line', title: "Scale Test (Stacks: ${params.volthaStacks}, OLTs: ${olts}, PONs: ${pons}, ONUs: ${onus})", yaxis: 'Time (s)', useDescr: true
234 ])
235 step([$class: 'RobotPublisher',
236 disableArchiveOutput: false,
237 logFileName: 'RobotLogs/**/log.html',
238 otherFiles: '',
239 outputFileName: 'RobotLogs/**/output.xml',
240 outputPath: '.',
241 passThreshold: 100,
242 reportFileName: 'RobotLogs/**/report.html',
Matteo Scandolo18077db2021-07-01 15:21:26 +0200243 onlyCritical: true,
Andrea Campanella98b6e2b2021-06-22 09:34:48 +0200244 unstableThreshold: 0]);
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800245 // get all the logs from kubernetes PODs
246 sh returnStdout: false, script: '''
247
248 # store information on running charts
249 helm ls --all-namespaces > $LOG_FOLDER/helm-list.txt || true
250
251 # store information on the running pods
252 kubectl get pods --all-namespaces -o wide > $LOG_FOLDER/pods.txt || true
253 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-images.txt || true
254 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-imagesId.txt || true
255
256 # copy the ONOS logs directly from the container to avoid the color codes
Matteo Scandolo544fa7b2021-07-23 11:03:24 -0700257 printf '%s\n' $(kubectl get pods -n infra -l app=onos-classic -o=jsonpath="{.items[*]['metadata.name']}") | xargs --no-run-if-empty -I# bash -c "kubectl cp -n infra #:${karafHome}/data/log/karaf.log $LOG_FOLDER/#.log" || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800258
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800259 '''
260 // dump all the BBSim(s) ONU information
261 script {
262 for (int i = 1; i <= params.volthaStacks.toInteger(); i++) {
263 stack_ns="voltha"+i
264 sh """
Andrea Campanella06ca3622021-05-26 12:14:44 +0200265 mkdir -p \$LOG_FOLDER/${stack_ns}
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800266 BBSIM_IDS=\$(kubectl -n ${stack_ns} get pods | grep bbsim | grep -v server | awk '{print \$1}')
267 IDS=(\$BBSIM_IDS)
268
269 for bbsim in "\${IDS[@]}"
270 do
Andrea Campanella06ca3622021-05-26 12:14:44 +0200271 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl onu list > \$LOG_FOLDER/${stack_ns}/\$bbsim-device-list.txt || true
272 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl service list > \$LOG_FOLDER/${stack_ns}/\$bbsim-service-list.txt || true
273 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl olt resources GEM_PORT > \$LOG_FOLDER/${stack_ns}/\$bbsim-flows-gem-ports.txt || true
274 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl olt resources ALLOC_ID > \$LOG_FOLDER/${stack_ns}/\$bbsim-flows-alloc-ids.txt || true
275 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl olt pons > \$LOG_FOLDER/${stack_ns}/\$bbsim-pon-resources.txt || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800276 done
277 """
278 }
279 }
280 // get ONOS debug infos
281 sh '''
282
283 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 apps -a -s > $LOG_FOLDER/onos-apps.txt || true
284 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 nodes > $LOG_FOLDER/onos-nodes.txt || true
285 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 masters > $LOG_FOLDER/onos-masters.txt || true
286 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 roles > $LOG_FOLDER/onos-roles.txt || true
287
Matteo Scandolo529e8822021-07-21 10:20:18 -0700288 sshpass -e ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@127.0.0.1 netcfg > $LOG_FOLDER/onos-netcfg.txt || true
289 sshpass -e ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@127.0.0.1 cfg get > $LOG_FOLDER/onos-cfg.txt || true
290
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800291 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
292 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 hosts > $LOG_FOLDER/onos-hosts-list.txt || true
293
294 if [ ${withFlows} = true ] ; then
295 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
296 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
297 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
298 fi
299
300 if [ ${provisionSubscribers} = true ]; then
301 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
302 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
303 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 volt-bpmeter-mappings > $LOG_FOLDER/onos-bpmeter-mappings.txt || true
304 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 volt-failed-subscribers > $LOG_FOLDER/onos-failed-subscribers.txt || true
305 fi
306
307 if [ ${withEapol} = true ] ; then
308 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
309 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
310 fi
311
312 if [ ${withDhcp} = true ] ; then
313 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
314 fi
315 '''
316 // collect etcd metrics
317 sh '''
318 mkdir -p $WORKSPACE/etcd-metrics
319 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
320 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
321 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
322 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
323 '''
324 // get VOLTHA debug infos
325 script {
326 for (int i = 1; i <= params.volthaStacks.toInteger(); i++) {
327 stack_ns="voltha"+i
328 voltcfg="~/.volt/config-voltha"+i
329 try {
330 sh """
331
Andrea Campanella06ca3622021-05-26 12:14:44 +0200332 # _TAG=voltha-port-forward kubectl port-forward --address 0.0.0.0 -n voltha${i} svc/voltha${i}-voltha-api 55555:55555& > /dev/null 2>&1
333 _TAG="voltha-port-forward" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n voltha${i} svc/voltha${i}-voltha-api 55555:55555 > /dev/null 2>&1; done"&
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800334
335 voltctl -m 8MB device list -o json > $LOG_FOLDER/${stack_ns}/device-list.json || true
336 python -m json.tool $LOG_FOLDER/${stack_ns}/device-list.json > $LOG_FOLDER/${stack_ns}/voltha-devices-list.json || true
337 rm $LOG_FOLDER/${stack_ns}/device-list.json || true
338 voltctl -m 8MB device list > $LOG_FOLDER/${stack_ns}/voltha-devices-list.txt || true
339
340 DEVICE_LIST=
Matteo Scandolo544fa7b2021-07-23 11:03:24 -0700341 printf '%s\n' \$(voltctl -m 8MB device list | grep olt | awk '{print \$1}') | xargs --no-run-if-empty -I# bash -c "voltctl -m 8MB device flows # > $LOG_FOLDER/${stack_ns}/voltha-device-flows-#.txt" || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800342 printf '%s\n' \$(voltctl -m 8MB device list | grep olt | awk '{print \$1}') | xargs --no-run-if-empty -I# bash -c "voltctl -m 8MB device port list --format 'table{{.PortNo}}\t{{.Label}}\t{{.Type}}\t{{.AdminState}}\t{{.OperStatus}}' # > $LOG_FOLDER/${stack_ns}/voltha-device-ports-#.txt" || true
343
344 printf '%s\n' \$(voltctl -m 8MB logicaldevice list -q) | xargs --no-run-if-empty -I# bash -c "voltctl -m 8MB logicaldevice flows # > $LOG_FOLDER/${stack_ns}/voltha-logicaldevice-flows-#.txt" || true
345 printf '%s\n' \$(voltctl -m 8MB logicaldevice list -q) | xargs --no-run-if-empty -I# bash -c "voltctl -m 8MB logicaldevice port list # > $LOG_FOLDER/${stack_ns}/voltha-logicaldevice-ports-#.txt" || true
346
347 # remove VOLTHA port-forward
Andrea Campanella4c8af942021-05-12 10:12:13 +0200348 ps aux | grep port-forw | grep voltha-api | grep -v grep | awk '{print \$2}' | xargs --no-run-if-empty kill -9 || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800349 """
350 } catch(e) {
Andrea Campanella06ca3622021-05-26 12:14:44 +0200351 println e
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800352 sh '''
Andrea Campanella06ca3622021-05-26 12:14:44 +0200353 echo "Can't get device list from voltctl"
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800354 '''
355 }
356 }
357 }
358 // get cpu usage by container
359 sh '''
360 if [ ${withMonitoring} = true ] ; then
361 cd $WORKSPACE/voltha-system-tests
362 source ./vst_venv/bin/activate
363 sleep 60 # we have to wait for prometheus to collect all the information
Hardik Windlass5cfb29a2021-08-10 09:39:29 +0000364 python scripts/sizing.py -o $WORKSPACE/plots || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800365 fi
366 '''
Matteo Scandolo544fa7b2021-07-23 11:03:24 -0700367 archiveArtifacts artifacts: 'kind-voltha/install-*.log,execution-time-*.txt,logs/**/*.txt,logs/**/*.tar.gz,logs/**/*.tgz,RobotLogs/**/*,plots/*,etcd-metrics/*'
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800368 }
369 }
370}
371
372def deploy_voltha_stacks(numberOfStacks) {
373 for (int i = 1; i <= numberOfStacks.toInteger(); i++) {
Matteo Scandolo529e8822021-07-21 10:20:18 -0700374 timeout(time: 5, unit: 'MINUTES') {
375 stage("Deploy VOLTHA stack " + i) {
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800376
Matteo Scandolo529e8822021-07-21 10:20:18 -0700377 def localCharts = false
378 if (volthaHelmChartsChange != "" || release != "master") {
379 localCharts = true
380 }
Matteo Scandolo433f60d2021-03-26 12:04:34 -0700381
Matteo Scandolo529e8822021-07-21 10:20:18 -0700382 def volthaHelmFlags =
383 "--set global.log_level=${logLevel} " +
384 "--set enablePerf=true,onu=${onus},pon=${pons} " +
385 "--set securityContext.enabled=false " +
386 params.extraHelmFlags
387
388 volthaStackDeploy([
389 bbsimReplica: olts.toInteger(),
390 infraNamespace: "infra",
391 volthaNamespace: "voltha${i}",
392 stackName: "voltha${i}",
393 stackId: i,
394 workflow: workflow,
395 extraHelmFlags: volthaHelmFlags,
396 localCharts: localCharts,
397 onosReplica: onosReplicas,
398 ])
Girish Gowdraa5b1de22021-06-07 14:20:27 -0700399 }
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800400 }
401 }
402}
403
404def test_voltha_stacks(numberOfStacks) {
405 for (int i = 1; i <= numberOfStacks.toInteger(); i++) {
406 stage("Test VOLTHA stack " + i) {
407 timeout(time: 15, unit: 'MINUTES') {
408 sh """
409
410 # we are restarting the voltha-api port-forward for each stack, no need to have a different voltconfig file
411 voltctl -s 127.0.0.1:55555 config > $HOME/.volt/config
412 export VOLTCONFIG=$HOME/.volt/config
413
Andrea Campanella06ca3622021-05-26 12:14:44 +0200414 # _TAG=voltha-port-forward kubectl port-forward --address 0.0.0.0 -n voltha${i} svc/voltha${i}-voltha-api 55555:55555& > /dev/null 2>&1
415 _TAG="voltha-port-forward" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n voltha${i} svc/voltha${i}-voltha-api 55555:55555 > /dev/null 2>&1; done"&
416
Matteo Scandoloee163802022-01-14 17:02:43 -0800417 # wait a bit to make sure the port-forwarding has started
418 sleep 5
419
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800420
421 ROBOT_PARAMS="-v stackId:${i} \
422 -v olt:${olts} \
423 -v pon:${pons} \
424 -v onu:${onus} \
425 -v workflow:${workflow} \
426 -v withEapol:${withEapol} \
427 -v withDhcp:${withDhcp} \
428 -v withIgmp:${withIgmp} \
429 --noncritical non-critical \
430 -e igmp \
431 -e teardown "
432
433 if [ ${withEapol} = false ] ; then
434 ROBOT_PARAMS+="-e authentication "
435 fi
436
437 if [ ${withDhcp} = false ] ; then
438 ROBOT_PARAMS+="-e dhcp "
439 fi
440
441 if [ ${provisionSubscribers} = false ] ; then
442 # if we're not considering subscribers then we don't care about authentication and dhcp
443 ROBOT_PARAMS+="-e authentication -e provision -e flow-after -e dhcp "
444 fi
445
446 if [ ${withFlows} = false ] ; then
447 ROBOT_PARAMS+="-i setup -i activation "
448 fi
449
450 cd $WORKSPACE/voltha-system-tests
451 source ./vst_venv/bin/activate
452 robot -d $WORKSPACE/RobotLogs/voltha${i} \
453 \$ROBOT_PARAMS tests/scale/Voltha_Scale_Tests.robot
454
455 # collect results
456 python tests/scale/collect-result.py -r $WORKSPACE/RobotLogs/voltha${i}/output.xml -p $WORKSPACE/plots > $WORKSPACE/execution-time-voltha${i}.txt || true
457 cat $WORKSPACE/execution-time-voltha${i}.txt
458 """
459 sh """
460 # remove VOLTHA port-forward
Andrea Campanella4c8af942021-05-12 10:12:13 +0200461 ps aux | grep port-forw | grep voltha-api | grep -v grep | awk '{print \$2}' | xargs --no-run-if-empty kill -9 2>&1 > /dev/null || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800462 """
463 }
464 }
465 }
466}