blob: 205f9ab8b4cb758737917771ce388ff14abeeb5d [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
Matteo Scandolo433f60d2021-03-26 12:04:34 -070025def ofAgentConnections(numOfOnos, releaseName, namespace) {
26 def params = " "
27 numOfOnos.times {
28 params += "--set voltha.services.controller[${it}].address=${releaseName}-onos-classic-${it}.${releaseName}-onos-classic-hs.${namespace}.svc:6653 "
29 }
30 return params
31}
32
Matteo Scandolo2bc660a2021-02-12 10:52:25 -080033pipeline {
34
35 /* no label, executor is determined by JJB */
36 agent {
37 label "${params.buildNode}"
38 }
39 options {
40 timeout(time: 120, unit: 'MINUTES')
41 }
42 environment {
43 JENKINS_NODE_COOKIE="dontKillMe" // do not kill processes after the build is done
44 KUBECONFIG="$HOME/.kube/config"
45 SSHPASS="karaf"
46 PATH="$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
47
48 APPS_TO_LOG="etcd kafka onos-onos-classic adapter-open-onu adapter-open-olt rw-core ofagent bbsim radius bbsim-sadis-server"
49 LOG_FOLDER="$WORKSPACE/logs"
50 }
51
52 stages {
53 stage ('Cleanup') {
54 steps {
55 timeout(time: 11, unit: 'MINUTES') {
Matteo Scandolo557cd8b2021-02-25 10:42:45 -080056 sh """
57 # remove orphaned port-forward from different namespaces
Andrea Campanella4c8af942021-05-12 10:12:13 +020058 ps aux | grep port-forw | grep -v grep | awk '{print \$2}' | xargs --no-run-if-empty kill -9 || true
Matteo Scandolo557cd8b2021-02-25 10:42:45 -080059 """
Matteo Scandolo2bc660a2021-02-12 10:52:25 -080060 script {
61 def namespaces = ["infra"]
62 // FIXME we may have leftovers from more VOLTHA stacks (eg: run1 had 10 stacks, run2 had 2 stacks)
63 volthaStacks.toInteger().times {
64 namespaces += "voltha${it + 1}"
65 }
66 helmTeardown(namespaces)
67 }
68 sh returnStdout: false, script: """
69 helm repo add onf https://charts.opencord.org
70 helm repo add cord https://charts.opencord.org
71 helm repo update
72
73 # remove all port-forward from different namespaces
Andrea Campanella4c8af942021-05-12 10:12:13 +020074 ps aux | grep port-forw | grep -v grep | awk '{print \$2}' | xargs --no-run-if-empty kill -9 || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -080075 """
76 }
77 }
78 }
79 stage('Download Code') {
80 steps {
81 getVolthaCode([
82 branch: "${release}",
83 volthaSystemTestsChange: "${volthaSystemTestsChange}",
Girish Gowdraa5b1de22021-06-07 14:20:27 -070084 volthaHelmChartsChange: "${volthaHelmChartsChange}",
Matteo Scandolo2bc660a2021-02-12 10:52:25 -080085 ])
86 }
87 }
88 stage('Deploy common infrastructure') {
89 // includes monitoring
90 steps {
91 sh '''
92 if [ ${withMonitoring} = true ] ; then
93 helm install -n infra nem-monitoring cord/nem-monitoring \
94 -f $HOME/voltha-scale/grafana.yaml \
95 --set prometheus.alertmanager.enabled=false,prometheus.pushgateway.enabled=false \
96 --set kpi_exporter.enabled=false,dashboards.xos=false,dashboards.onos=false,dashboards.aaa=false,dashboards.voltha=false
97 fi
98 '''
99 }
100 }
101 stage('Deploy VOLTHA infrastructure') {
102 steps {
103 sh returnStdout: false, script: '''
104
Andrea Campanella4c75f162021-06-30 14:27:36 +0200105 kubectl create configmap -n infra kube-config "--from-file=kube_config=\$KUBECONFIG" || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800106
Andrea Campanella4c75f162021-06-30 14:27:36 +0200107 export EXTRA_HELM_FLAGS+=' '
108
109 # No persistent-volume-claims in Atomix
110 EXTRA_HELM_FLAGS+="--set onos-classic.atomix.persistence.enabled=false "
111 # disable the securityContext, this is a development cluster
112 EXTRA_HELM_FLAGS+='--set securityContext.enabled=false '
113
114 echo \$EXTRA_HELM_FLAGS
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800115
116 helm upgrade --install -n infra voltha-infra onf/voltha-infra \
117 -f $WORKSPACE/voltha-helm-charts/examples/${workflow}-values.yaml \
118 --set onos-classic.replicas=${onosReplicas},onos-classic.atomix.replicas=${atomixReplicas} \
119 --set radius.enabled=${withEapol} \
Andrea Campanella06ca3622021-05-26 12:14:44 +0200120 --set global.log_level=${logLevel} \
121 --set onos-classic.onosSshPort=30115 \
Andrea Campanella4c75f162021-06-30 14:27:36 +0200122 --set onos-classic.onosApiPort=30120 \
123 --set kafka.replicaCount=3,kafka.zookeeper.replicaCount=3 \
124 --set etcd.statefulset.replicaCount=3 \$EXTRA_HELM_FLAGS
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800125 '''
126 }
127 }
128 stage('Deploy Voltha') {
129 steps {
130 deploy_voltha_stacks(params.volthaStacks)
131 }
132 }
133 stage('Start logging') {
Andrea Campanella06ca3622021-05-26 12:14:44 +0200134 //FIXME this collects the logs all in one file for all the 10 stacks
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800135 steps {
136 sh returnStdout: false, script: '''
137 # start logging with kail
138
139 mkdir -p $LOG_FOLDER
140
141 list=($APPS_TO_LOG)
142 for app in "${list[@]}"
143 do
144 echo "Starting logs for: ${app}"
145 _TAG=kail-$app kail -l app=$app --since 1h > $LOG_FOLDER/$app.log&
146 done
147 '''
148 }
149 }
150 stage('Configuration') {
151 steps {
152 script {
153 sh returnStdout: false, script: """
154
155 # forward ETCD port
Matteo Scandolo89f58332021-03-26 15:40:00 -0700156 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 -0800157
158 # forward ONOS ports
Matteo Scandolo89f58332021-03-26 15:40:00 -0700159 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 " &
160 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 -0800161
162 # make sure the the port-forward has started before moving forward
163 sleep 5
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800164 """
165 sh returnStdout: false, script: """
166 # TODO this needs to be repeated per stack
167 # kubectl exec \$(kubectl get pods | grep -E "bbsim[0-9]" | awk 'NR==1{print \$1}') -- bbsimctl log ${logLevel.toLowerCase()} false
168
169 #Setting link discovery
170 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}
171 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
172 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 -0700173 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 -0800174 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 -0700175 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 -0800176
177 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg log:set ${logLevel} org.onosproject
178 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 cfg log:set ${logLevel} org.opencord
179
180 # Set Flows/Ports/Meters poll frequency
181 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}
182 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}
183
184 if [ ${withFlows} = false ]; then
185 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 app deactivate org.opencord.olt
186 fi
187 """
188 }
189 }
190 }
191 stage('Setup Test') {
192 steps {
193 sh '''
194 mkdir -p $WORKSPACE/RobotLogs
195 cd $WORKSPACE/voltha-system-tests
196 make vst_venv
197 '''
198 }
199 }
200 stage('Run Test') {
201 steps {
202 test_voltha_stacks(params.volthaStacks)
203 }
204 }
205 }
206 post {
207 always {
208 // collect result, done in the "post" step so it's executed even in the
209 // event of a timeout in the tests
210 sh '''
211
212 # stop the kail processes
213 list=($APPS_TO_LOG)
214 for app in "${list[@]}"
215 do
216 echo "Stopping logs for: ${app}"
217 _TAG="kail-$app"
218 P_IDS="$(ps e -ww -A | grep "_TAG=$_TAG" | grep -v grep | awk '{print $1}')"
219 if [ -n "$P_IDS" ]; then
220 echo $P_IDS
221 for P_ID in $P_IDS; do
222 kill -9 $P_ID
223 done
224 fi
225 done
226 '''
Matteo Scandolob3d2727b2021-03-03 11:17:46 -0800227 // compressing the logs to save space on Jenkins
228 sh '''
229 cd $LOG_FOLDER
230 tar -czf logs.tar.gz *.log
231 rm *.log
232 '''
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800233 plot([
234 csvFileName: 'scale-test.csv',
235 csvSeries: [
236 [file: 'plots/plot-voltha-onus.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
237 [file: 'plots/plot-onos-ports.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
238 [file: 'plots/plot-voltha-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
239 [file: 'plots/plot-voltha-openolt-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
240 [file: 'plots/plot-onos-flows-before.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
241 [file: 'plots/plot-onos-auth.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
242 [file: 'plots/plot-voltha-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
243 [file: 'plots/plot-voltha-openolt-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
244 [file: 'plots/plot-onos-flows-after.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
245 [file: 'plots/plot-onos-dhcp.txt', displayTableFlag: false, exclusionValues: '', inclusionFlag: 'OFF', url: ''],
246 ],
247 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
248 ])
249 step([$class: 'RobotPublisher',
250 disableArchiveOutput: false,
251 logFileName: 'RobotLogs/**/log.html',
252 otherFiles: '',
253 outputFileName: 'RobotLogs/**/output.xml',
254 outputPath: '.',
255 passThreshold: 100,
256 reportFileName: 'RobotLogs/**/report.html',
Matteo Scandolo18077db2021-07-01 15:21:26 +0200257 onlyCritical: true,
Andrea Campanella98b6e2b2021-06-22 09:34:48 +0200258 unstableThreshold: 0]);
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800259 // get all the logs from kubernetes PODs
260 sh returnStdout: false, script: '''
261
262 # store information on running charts
263 helm ls --all-namespaces > $LOG_FOLDER/helm-list.txt || true
264
265 # store information on the running pods
266 kubectl get pods --all-namespaces -o wide > $LOG_FOLDER/pods.txt || true
267 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-images.txt || true
268 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $LOG_FOLDER/pod-imagesId.txt || true
269
270 # copy the ONOS logs directly from the container to avoid the color codes
Andrea Campanella06ca3622021-05-26 12:14:44 +0200271 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 #:${karafHome}/data/log/karaf.log $LOG_FOLDER/#.log" || true
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800272
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800273 '''
274 // dump all the BBSim(s) ONU information
275 script {
276 for (int i = 1; i <= params.volthaStacks.toInteger(); i++) {
277 stack_ns="voltha"+i
278 sh """
Andrea Campanella06ca3622021-05-26 12:14:44 +0200279 mkdir -p \$LOG_FOLDER/${stack_ns}
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800280 BBSIM_IDS=\$(kubectl -n ${stack_ns} get pods | grep bbsim | grep -v server | awk '{print \$1}')
281 IDS=(\$BBSIM_IDS)
282
283 for bbsim in "\${IDS[@]}"
284 do
Andrea Campanella06ca3622021-05-26 12:14:44 +0200285 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl onu list > \$LOG_FOLDER/${stack_ns}/\$bbsim-device-list.txt || true
286 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl service list > \$LOG_FOLDER/${stack_ns}/\$bbsim-service-list.txt || true
287 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl olt resources GEM_PORT > \$LOG_FOLDER/${stack_ns}/\$bbsim-flows-gem-ports.txt || true
288 kubectl -n ${stack_ns} exec -t \$bbsim -- bbsimctl olt resources ALLOC_ID > \$LOG_FOLDER/${stack_ns}/\$bbsim-flows-alloc-ids.txt || true
289 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 -0800290 done
291 """
292 }
293 }
294 // get ONOS debug infos
295 sh '''
296
297 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
298 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
299 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
300 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
301
302 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
303 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
304
305 if [ ${withFlows} = true ] ; then
306 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
307 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
308 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
309 fi
310
311 if [ ${provisionSubscribers} = true ]; then
312 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
313 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
314 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
315 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
316 fi
317
318 if [ ${withEapol} = true ] ; then
319 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
320 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
321 fi
322
323 if [ ${withDhcp} = true ] ; then
324 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
325 fi
326 '''
327 // collect etcd metrics
328 sh '''
329 mkdir -p $WORKSPACE/etcd-metrics
330 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
331 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
332 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
333 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
334 '''
335 // get VOLTHA debug infos
336 script {
337 for (int i = 1; i <= params.volthaStacks.toInteger(); i++) {
338 stack_ns="voltha"+i
339 voltcfg="~/.volt/config-voltha"+i
340 try {
341 sh """
342
Andrea Campanella06ca3622021-05-26 12:14:44 +0200343 # _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
344 _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 -0800345
346 voltctl -m 8MB device list -o json > $LOG_FOLDER/${stack_ns}/device-list.json || true
347 python -m json.tool $LOG_FOLDER/${stack_ns}/device-list.json > $LOG_FOLDER/${stack_ns}/voltha-devices-list.json || true
348 rm $LOG_FOLDER/${stack_ns}/device-list.json || true
349 voltctl -m 8MB device list > $LOG_FOLDER/${stack_ns}/voltha-devices-list.txt || true
350
351 DEVICE_LIST=
352 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
353 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
354
355 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
356 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
357
358 # remove VOLTHA port-forward
Andrea Campanella4c8af942021-05-12 10:12:13 +0200359 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 -0800360 """
361 } catch(e) {
Andrea Campanella06ca3622021-05-26 12:14:44 +0200362 println e
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800363 sh '''
Andrea Campanella06ca3622021-05-26 12:14:44 +0200364 echo "Can't get device list from voltctl"
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800365 '''
366 }
367 }
368 }
369 // get cpu usage by container
370 sh '''
371 if [ ${withMonitoring} = true ] ; then
372 cd $WORKSPACE/voltha-system-tests
373 source ./vst_venv/bin/activate
374 sleep 60 # we have to wait for prometheus to collect all the information
375 python tests/scale/sizing.py -o $WORKSPACE/plots || true
376 fi
377 '''
Matteo Scandolob3d2727b2021-03-03 11:17:46 -0800378 archiveArtifacts artifacts: 'kind-voltha/install-*.log,execution-time-*.txt,logs/**/*.txt,logs/**/*.tar.gz,RobotLogs/**/*,plots/*,etcd-metrics/*'
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800379 }
380 }
381}
382
383def deploy_voltha_stacks(numberOfStacks) {
384 for (int i = 1; i <= numberOfStacks.toInteger(); i++) {
385 stage("Deploy VOLTHA stack " + i) {
386 // ${logLevel}
Matteo Scandolo8877ab82021-02-24 15:54:23 -0800387 def extraHelmFlags = "${extraHelmFlags} --set global.log_level=${logLevel},enablePerf=true,onu=${onus},pon=${pons} "
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800388 extraHelmFlags += " --set securityContext.enabled=false,atomix.persistence.enabled=false "
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800389
Matteo Scandolo433f60d2021-03-26 12:04:34 -0700390 // FIXME having to set all of these values is annoying, is there a better solution?
391 def volthaHelmFlags = extraHelmFlags +
Matteo Scandolo433f60d2021-03-26 12:04:34 -0700392 ofAgentConnections(onosReplicas.toInteger(), "voltha-infra", "infra")
393
Girish Gowdraa5b1de22021-06-07 14:20:27 -0700394 def localCharts = false
395 if (volthaHelmChartsChange != "") {
396 localCharts = true
397 }
398
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800399 volthaStackDeploy([
400 bbsimReplica: olts.toInteger(),
401 infraNamespace: "infra",
402 volthaNamespace: "voltha${i}",
403 stackName: "voltha${i}",
404 stackId: i,
405 workflow: workflow,
Girish Gowdraa5b1de22021-06-07 14:20:27 -0700406 extraHelmFlags: volthaHelmFlags,
407 localCharts: localCharts
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800408 ])
409 }
410 }
411}
412
413def test_voltha_stacks(numberOfStacks) {
414 for (int i = 1; i <= numberOfStacks.toInteger(); i++) {
415 stage("Test VOLTHA stack " + i) {
416 timeout(time: 15, unit: 'MINUTES') {
417 sh """
418
419 # we are restarting the voltha-api port-forward for each stack, no need to have a different voltconfig file
420 voltctl -s 127.0.0.1:55555 config > $HOME/.volt/config
421 export VOLTCONFIG=$HOME/.volt/config
422
Andrea Campanella06ca3622021-05-26 12:14:44 +0200423 # _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
424 _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"&
425
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800426
427 ROBOT_PARAMS="-v stackId:${i} \
428 -v olt:${olts} \
429 -v pon:${pons} \
430 -v onu:${onus} \
431 -v workflow:${workflow} \
432 -v withEapol:${withEapol} \
433 -v withDhcp:${withDhcp} \
434 -v withIgmp:${withIgmp} \
435 --noncritical non-critical \
436 -e igmp \
437 -e teardown "
438
439 if [ ${withEapol} = false ] ; then
440 ROBOT_PARAMS+="-e authentication "
441 fi
442
443 if [ ${withDhcp} = false ] ; then
444 ROBOT_PARAMS+="-e dhcp "
445 fi
446
447 if [ ${provisionSubscribers} = false ] ; then
448 # if we're not considering subscribers then we don't care about authentication and dhcp
449 ROBOT_PARAMS+="-e authentication -e provision -e flow-after -e dhcp "
450 fi
451
452 if [ ${withFlows} = false ] ; then
453 ROBOT_PARAMS+="-i setup -i activation "
454 fi
455
456 cd $WORKSPACE/voltha-system-tests
457 source ./vst_venv/bin/activate
458 robot -d $WORKSPACE/RobotLogs/voltha${i} \
459 \$ROBOT_PARAMS tests/scale/Voltha_Scale_Tests.robot
460
461 # collect results
462 python tests/scale/collect-result.py -r $WORKSPACE/RobotLogs/voltha${i}/output.xml -p $WORKSPACE/plots > $WORKSPACE/execution-time-voltha${i}.txt || true
463 cat $WORKSPACE/execution-time-voltha${i}.txt
464 """
465 sh """
466 # remove VOLTHA port-forward
Andrea Campanella4c8af942021-05-12 10:12:13 +0200467 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 -0800468 """
469 }
470 }
471 }
472}