blob: c58da51e414b8efba28dd59474feb752ec97c8fe [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
Matteo Scandolo38c6adf2022-01-20 16:47:17 -0800298 sshpass -e ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@127.0.0.1 volt-port-status > $LOG_FOLDER/onos-volt-port-status.txt || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800299 fi
300
301 if [ ${provisionSubscribers} = true ]; then
302 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
303 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
304 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
305 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
306 fi
307
308 if [ ${withEapol} = true ] ; then
309 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
310 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
311 fi
312
313 if [ ${withDhcp} = true ] ; then
314 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
315 fi
316 '''
317 // collect etcd metrics
318 sh '''
319 mkdir -p $WORKSPACE/etcd-metrics
320 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
321 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
322 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
323 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
324 '''
325 // get VOLTHA debug infos
326 script {
327 for (int i = 1; i <= params.volthaStacks.toInteger(); i++) {
328 stack_ns="voltha"+i
329 voltcfg="~/.volt/config-voltha"+i
330 try {
331 sh """
332
Andrea Campanella06ca3622021-05-26 12:14:44 +0200333 # _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
334 _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 -0800335
Andrea Campanellad0c8fee2022-01-27 17:07:43 +0100336 voltctl -m 32MB device list -o json > $LOG_FOLDER/${stack_ns}/device-list.json || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800337 python -m json.tool $LOG_FOLDER/${stack_ns}/device-list.json > $LOG_FOLDER/${stack_ns}/voltha-devices-list.json || true
338 rm $LOG_FOLDER/${stack_ns}/device-list.json || true
Andrea Campanellad0c8fee2022-01-27 17:07:43 +0100339 voltctl -m 32MB device list > $LOG_FOLDER/${stack_ns}/voltha-devices-list.txt || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800340
341 DEVICE_LIST=
Andrea Campanellad0c8fee2022-01-27 17:07:43 +0100342 printf '%s\n' \$(voltctl -m 32MB device list | grep olt | awk '{print \$1}') | xargs --no-run-if-empty -I# bash -c "voltctl -m 32MB device flows # > $LOG_FOLDER/${stack_ns}/voltha-device-flows-#.txt" || true
343 printf '%s\n' \$(voltctl -m 32MB device list | grep olt | awk '{print \$1}') | xargs --no-run-if-empty -I# bash -c "voltctl -m 32MB device port list --format 'table{{.PortNo}}\t{{.Label}}\t{{.Type}}\t{{.AdminState}}\t{{.OperStatus}}' # > $LOG_FOLDER/${stack_ns}/voltha-device-ports-#.txt" || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800344
Andrea Campanellad0c8fee2022-01-27 17:07:43 +0100345 printf '%s\n' \$(voltctl -m 32MB logicaldevice list -q) | xargs --no-run-if-empty -I# bash -c "voltctl -m 32MB logicaldevice flows # > $LOG_FOLDER/${stack_ns}/voltha-logicaldevice-flows-#.txt" || true
346 printf '%s\n' \$(voltctl -m 32MB logicaldevice list -q) | xargs --no-run-if-empty -I# bash -c "voltctl -m 32MB logicaldevice port list # > $LOG_FOLDER/${stack_ns}/voltha-logicaldevice-ports-#.txt" || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800347
348 # remove VOLTHA port-forward
Andrea Campanella4c8af942021-05-12 10:12:13 +0200349 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 -0800350 """
351 } catch(e) {
Andrea Campanella06ca3622021-05-26 12:14:44 +0200352 println e
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800353 sh '''
Andrea Campanella06ca3622021-05-26 12:14:44 +0200354 echo "Can't get device list from voltctl"
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800355 '''
356 }
357 }
358 }
359 // get cpu usage by container
360 sh '''
361 if [ ${withMonitoring} = true ] ; then
362 cd $WORKSPACE/voltha-system-tests
363 source ./vst_venv/bin/activate
364 sleep 60 # we have to wait for prometheus to collect all the information
Hardik Windlass5cfb29a2021-08-10 09:39:29 +0000365 python scripts/sizing.py -o $WORKSPACE/plots || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800366 fi
367 '''
Matteo Scandolo544fa7b2021-07-23 11:03:24 -0700368 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 -0800369 }
370 }
371}
372
373def deploy_voltha_stacks(numberOfStacks) {
374 for (int i = 1; i <= numberOfStacks.toInteger(); i++) {
Matteo Scandolo529e8822021-07-21 10:20:18 -0700375 timeout(time: 5, unit: 'MINUTES') {
376 stage("Deploy VOLTHA stack " + i) {
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800377
Matteo Scandolo529e8822021-07-21 10:20:18 -0700378 def localCharts = false
379 if (volthaHelmChartsChange != "" || release != "master") {
380 localCharts = true
381 }
Matteo Scandolo433f60d2021-03-26 12:04:34 -0700382
Matteo Scandolo529e8822021-07-21 10:20:18 -0700383 def volthaHelmFlags =
384 "--set global.log_level=${logLevel} " +
385 "--set enablePerf=true,onu=${onus},pon=${pons} " +
386 "--set securityContext.enabled=false " +
387 params.extraHelmFlags
388
389 volthaStackDeploy([
390 bbsimReplica: olts.toInteger(),
391 infraNamespace: "infra",
392 volthaNamespace: "voltha${i}",
393 stackName: "voltha${i}",
394 stackId: i,
395 workflow: workflow,
396 extraHelmFlags: volthaHelmFlags,
397 localCharts: localCharts,
398 onosReplica: onosReplicas,
399 ])
Girish Gowdraa5b1de22021-06-07 14:20:27 -0700400 }
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800401 }
402 }
403}
404
405def test_voltha_stacks(numberOfStacks) {
406 for (int i = 1; i <= numberOfStacks.toInteger(); i++) {
407 stage("Test VOLTHA stack " + i) {
408 timeout(time: 15, unit: 'MINUTES') {
409 sh """
410
411 # we are restarting the voltha-api port-forward for each stack, no need to have a different voltconfig file
412 voltctl -s 127.0.0.1:55555 config > $HOME/.volt/config
413 export VOLTCONFIG=$HOME/.volt/config
414
Andrea Campanella06ca3622021-05-26 12:14:44 +0200415 # _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
416 _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"&
417
Matteo Scandoloee163802022-01-14 17:02:43 -0800418 # wait a bit to make sure the port-forwarding has started
419 sleep 5
420
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800421
422 ROBOT_PARAMS="-v stackId:${i} \
423 -v olt:${olts} \
424 -v pon:${pons} \
425 -v onu:${onus} \
426 -v workflow:${workflow} \
427 -v withEapol:${withEapol} \
428 -v withDhcp:${withDhcp} \
429 -v withIgmp:${withIgmp} \
430 --noncritical non-critical \
431 -e igmp \
432 -e teardown "
433
434 if [ ${withEapol} = false ] ; then
435 ROBOT_PARAMS+="-e authentication "
436 fi
437
438 if [ ${withDhcp} = false ] ; then
439 ROBOT_PARAMS+="-e dhcp "
440 fi
441
442 if [ ${provisionSubscribers} = false ] ; then
443 # if we're not considering subscribers then we don't care about authentication and dhcp
444 ROBOT_PARAMS+="-e authentication -e provision -e flow-after -e dhcp "
445 fi
446
447 if [ ${withFlows} = false ] ; then
448 ROBOT_PARAMS+="-i setup -i activation "
449 fi
450
451 cd $WORKSPACE/voltha-system-tests
452 source ./vst_venv/bin/activate
453 robot -d $WORKSPACE/RobotLogs/voltha${i} \
454 \$ROBOT_PARAMS tests/scale/Voltha_Scale_Tests.robot
455
456 # collect results
457 python tests/scale/collect-result.py -r $WORKSPACE/RobotLogs/voltha${i}/output.xml -p $WORKSPACE/plots > $WORKSPACE/execution-time-voltha${i}.txt || true
458 cat $WORKSPACE/execution-time-voltha${i}.txt
459 """
460 sh """
461 # remove VOLTHA port-forward
Andrea Campanella4c8af942021-05-12 10:12:13 +0200462 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 -0800463 """
464 }
465 }
466 }
467}