blob: 4fcb401c9de9a2424a78fb72558c6456864fd630 [file] [log] [blame]
Matteo Scandolo51b76302020-02-05 12:07:23 -08001/* voltha-scale-measurements pipeline */
2pipeline {
Matteo Scandolo51b76302020-02-05 12:07:23 -08003 /* no label, executor is determined by JJB */
4 agent {
5 label "${params.buildNode}"
6 }
Shrey Baid00ff5c42020-02-07 15:14:08 -08007 environment {
8 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
9 VOLTCONFIG="$HOME/.volt/config-minimal"
10 PATH="$WORKSPACE/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
11 TYPE="minimal"
12 FANCY=0
Shrey Baid7cbb06e2020-02-11 17:45:07 -080013 SECONDS=0
Shrey Baid00ff5c42020-02-07 15:14:08 -080014 WITH_SIM_ADAPTERS="n"
15 WITH_RADIUS="y"
16 WITH_BBSIM="y"
Shrey Baid7cbb06e2020-02-11 17:45:07 -080017 VOLTHA_LOG_LEVEL="WARN"
Shrey Baid00ff5c42020-02-07 15:14:08 -080018 CONFIG_SADIS="n"
19 ROBOT_MISC_ARGS="-d $WORKSPACE/RobotLogs -v teardown_device:False"
Shrey Baidb001c712020-02-11 11:12:46 -080020 SSHPASS="karaf"
Shrey Baide7614d02020-02-25 10:26:42 -080021 DEPLOY_K8S="n"
Shrey Baid00ff5c42020-02-07 15:14:08 -080022 }
Matteo Scandolo51b76302020-02-05 12:07:23 -080023 stages {
Shrey Baide7614d02020-02-25 10:26:42 -080024 stage('set-description') {
25 steps {
26 script {
Shrey Baid943e2072020-03-04 10:31:32 -080027 currentBuild.description = "$BUILD_TIMESTAMP"
Shrey Baide7614d02020-02-25 10:26:42 -080028 }
29 }
30 }
Shrey Baidb0447182020-02-27 16:39:35 -080031 stage('cleanup') {
Matteo Scandolo51b76302020-02-05 12:07:23 -080032 steps {
Shrey Baidb0447182020-02-27 16:39:35 -080033 sh '''
Shrey Baid49bf8f62020-03-09 17:52:01 -070034 rm -rf voltha-devices-count.txt voltha-devices-time.txt onos-ports-count.txt onos-ports-time.txt onos-ports-list.txt voltha-devices-list.json onos-ports-time-num.txt voltha-devices-time-num.txt
Matteo Scandolo151e35c2020-02-28 15:45:15 -080035 for hchart in \$(helm list -q | grep -E -v 'docker-registry|cord-kafka|etcd-operator');
36 do
37 echo "Purging chart: \${hchart}"
38 helm delete --purge "\${hchart}"
39 done
Shrey Baidb0447182020-02-27 16:39:35 -080040 bash /home/cord/voltha-scale/wait_for_pods.sh
41 bash /home/cord/voltha-scale/stop_port_forward.sh
42 '''
Matteo Scandolo51b76302020-02-05 12:07:23 -080043 }
44 }
45 stage('start') {
46 steps {
Shrey Baid00ff5c42020-02-07 15:14:08 -080047 sh '''
Matteo Scandolo51b76302020-02-05 12:07:23 -080048 #!/usr/bin/env bash
49 set -euo pipefail
Shrey Baid00ff5c42020-02-07 15:14:08 -080050 '''
51 }
52 }
Shrey Baid00ff5c42020-02-07 15:14:08 -080053 stage('deploy-voltha') {
Matteo Scandolo2fc1dac2020-03-09 08:39:53 -070054 options {
55 timeout(time:10)
56 }
Shrey Baid00ff5c42020-02-07 15:14:08 -080057 steps {
58 sh '''
Matteo Scandoloa3470b72020-03-17 12:26:47 -070059 helm repo update
Shrey Baidb06b55a2020-03-12 15:04:58 -070060 helm install -n nem-monitoring cord/nem-monitoring
61
Matteo Scandoloe69614f2020-03-10 11:35:35 -070062 IFS=: read -r onosRepo onosTag <<< ${onosImg}
63 helm install -n onos onf/onos --set images.onos.repository=${onosRepo} --set images.onos.tag=${onosTag} ${extraHelmFlags}
Shrey Baidb0447182020-02-27 16:39:35 -080064
Matteo Scandoloa2928e72020-03-02 16:38:22 -080065 IFS=: read -r volthaRepo volthaTag <<< ${volthaImg}
Matteo Scandoloe69614f2020-03-10 11:35:35 -070066 IFS=: read -r ofAgentRepo ofAgentTag <<< ${ofAgentImg}
Matteo Scandolo7059b082020-03-17 09:05:03 -070067 helm install -n voltha ${volthaChart} -f /home/cord/voltha-scale/voltha-values.yaml --set images.voltha.repository=${volthaRepo},images.voltha.tag=${volthaTag},images.ofagent.repository=${ofAgentRepo},images.ofagent.tag=${ofAgentTag} ${extraHelmFlags}
Matteo Scandoloa2928e72020-03-02 16:38:22 -080068
69 IFS=: read -r openoltAdapterRepo openoltAdapterTag <<< ${openoltAdapterImg}
Matteo Scandolo7059b082020-03-17 09:05:03 -070070 helm install -n openolt ${openoltAdapterChart} -f /home/cord/voltha-scale/voltha-values.yaml --set images.adapter_open_olt.repository=${openoltAdapterRepo},images.adapter_open_olt.tag=${openoltAdapterTag} ${extraHelmFlags}
Matteo Scandoloa2928e72020-03-02 16:38:22 -080071
72 IFS=: read -r openonuAdapterRepo openonuAdapterTag <<< ${openonuAdapterImg}
Matteo Scandolo7059b082020-03-17 09:05:03 -070073 helm install -n openonu ${openonuAdapterChart} -f /home/cord/voltha-scale/voltha-values.yaml --set images.adapter_open_onu.repository=${openonuAdapterRepo},images.adapter_open_onu.tag=${openonuAdapterTag} ${extraHelmFlags}
Matteo Scandoloa2928e72020-03-02 16:38:22 -080074
75 IFS=: read -r bbsimRepo bbsimTag <<< ${bbsimImg}
Matteo Scandolo463f31b2020-03-17 11:02:17 -070076 helm install -n bbsim ${bbsimChart} --set enablePerf=true,pon=${ponPorts},onu=${onuPerPon},auth=${bbsimAuth},dhcp=${bbsimDhcp},delay=${BBSIMdelay},images.bbsim.repository=${bbsimRepo},images.bbsim.tag=${bbsimTag} ${extraHelmFlags}
Matteo Scandolo7059b082020-03-17 09:05:03 -070077
Matteo Scandoloe69614f2020-03-10 11:35:35 -070078 helm install -n radius onf/freeradius ${extraHelmFlags}
Shrey Baidb0447182020-02-27 16:39:35 -080079
Shrey Baidb0447182020-02-27 16:39:35 -080080 bash /home/cord/voltha-scale/wait_for_pods.sh
81 bash /home/cord/voltha-scale/start_port_forward.sh
Shrey Baid00ff5c42020-02-07 15:14:08 -080082 '''
83 }
84 }
Matteo Scandoloa711ddf2020-03-06 16:41:34 -080085 stage('wait for adapters to be registered') {
Matteo Scandolo2fc1dac2020-03-09 08:39:53 -070086 options {
87 timeout(time:5)
88 }
Matteo Scandoloa711ddf2020-03-06 16:41:34 -080089 steps{
90 waitUntil {
91 script {
92 openolt_res = sh returnStdout: true, script: """
93 voltctl adapter list | grep openolt | wc -l
94 """
95
96 openonu_res = sh returnStdout: true, script: """
97 voltctl adapter list | grep brcm_openomci_onu | wc -l
98 """
99
100 return openolt_res.toInteger() == 1 && openonu_res.toInteger() == 1
101 }
102 }
103 }
104 }
Shrey Baide7614d02020-02-25 10:26:42 -0800105 stage('MIB-template') {
106 steps {
107 sh '''
108 if [ ${withMibTemplate} = true ] ; then
Shrey Baidb0447182020-02-27 16:39:35 -0800109 rm -f BBSM-12345123451234512345-00000000000001-v1.json
Shrey Baide7614d02020-02-25 10:26:42 -0800110 wget https://raw.githubusercontent.com/opencord/voltha-openonu-adapter/master/templates/BBSM-12345123451234512345-00000000000001-v1.json
Shrey Baidb0447182020-02-27 16:39:35 -0800111 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
Shrey Baide7614d02020-02-25 10:26:42 -0800112 fi
113 '''
Shrey Baid0d4e31d2020-02-11 13:28:47 -0800114 }
Shrey Baide7614d02020-02-25 10:26:42 -0800115 }
116 stage('disable-ONOS-apps') {
117 steps {
118 sh '''
119 #Check withOnosApps and disable apps accordingly
120 if [ ${withOnosApps} = false ] ; then
Shrey Baidb0447182020-02-27 16:39:35 -0800121 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost app deactivate org.opencord.olt
122 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost app deactivate org.opencord.aaa
123 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost app deactivate org.opencord.dhcpl2relay
Shrey Baide7614d02020-02-25 10:26:42 -0800124 fi
125 '''
Shrey Baid0d4e31d2020-02-11 13:28:47 -0800126 }
Shrey Baide7614d02020-02-25 10:26:42 -0800127 }
128 stage('configuration') {
129 steps {
130 sh '''
131 #Setting LOG level to WARN
Shrey Baidb0447182020-02-27 16:39:35 -0800132 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost log:set WARN
133 kubectl exec $(kubectl get pods | grep bbsim | awk 'NR==1{print $1}') bbsimctl log warn false
Shrey Baide7614d02020-02-25 10:26:42 -0800134 #Setting link discovery
Shrey Baidb0447182020-02-27 16:39:35 -0800135 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost cfg set org.onosproject.provider.lldp.impl.LldpLinkProvider enabled ${setLinkDiscovery}
Shrey Baide7614d02020-02-25 10:26:42 -0800136 #Setting the flow stats collection interval
Shrey Baidb0447182020-02-27 16:39:35 -0800137 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost cfg set org.onosproject.provider.of.flow.impl.OpenFlowRuleProvider flowPollFrequency ${flowStatInterval}
Shrey Baide7614d02020-02-25 10:26:42 -0800138 #Setting the ports stats collection interval
Shrey Baidb0447182020-02-27 16:39:35 -0800139 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost cfg set org.onosproject.provider.of.device.impl.OpenFlowDeviceProvider portStatsPollFrequency ${portsStatInterval}
Matteo Scandolo7b3fde92020-02-26 16:17:16 -0800140 # extending voltctl timeout
Shrey Baidb0447182020-02-27 16:39:35 -0800141 sed -i 's/timeout: 10s/timeout: 5m/g' /home/cord/.volt/config
Shrey Baide7614d02020-02-25 10:26:42 -0800142 '''
143 }
144 }
145 stage('execute') {
146 options {
147 timeout(time:10)
148 }
149 stages {
Shrey Baida3b8aa62020-02-13 11:22:51 -0800150 stage('ONUs-enabled') {
151 steps {
152 sh '''
153 if [ -z ${expectedOnus} ]
154 then
155 echo -e "You need to set the target ONU number\n"
156 exit 1
157 fi
Shrey Baid00ff5c42020-02-07 15:14:08 -0800158
Shrey Baida3b8aa62020-02-13 11:22:51 -0800159 voltctl device create -t openolt -H bbsim:50060
160 voltctl device enable $(voltctl device list --filter Type~openolt -q)
161 # check ONUs reached Active State in VOLTHA
162 i=$(voltctl device list | grep -v OLT | grep ACTIVE | wc -l)
163 until [ $i -eq ${expectedOnus} ]
164 do
165 echo "$i ONUs ACTIVE of ${expectedOnus} expected (time: $SECONDS)"
166 sleep ${pollInterval}
167 i=$(voltctl device list | grep -v OLT | grep ACTIVE | wc -l)
168 done
169 echo "${expectedOnus} ONUs Activated in $SECONDS seconds (time: $SECONDS)"
Shrey Baid49bf8f62020-03-09 17:52:01 -0700170 echo $SECONDS > voltha-devices-time-num.txt
Shrey Baida3b8aa62020-02-13 11:22:51 -0800171 '''
172 }
173 }
174 stage('ONOS-ports') {
175 steps {
Shrey Baide7614d02020-02-25 10:26:42 -0800176 sh '''
Shrey Baida3b8aa62020-02-13 11:22:51 -0800177 # Check ports showed up in ONOS
Shrey Baidb0447182020-02-27 16:39:35 -0800178 z=$(sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost ports -e | grep BBSM | wc -l)
Shrey Baida3b8aa62020-02-13 11:22:51 -0800179 until [ $z -eq ${expectedOnus} ]
180 do
181 echo "${z} enabled ports of ${expectedOnus} expected (time: $SECONDS)"
182 sleep ${pollInterval}
Shrey Baidb0447182020-02-27 16:39:35 -0800183 z=$(sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost ports -e | grep BBSM | wc -l)
Shrey Baida3b8aa62020-02-13 11:22:51 -0800184 done
185 echo "${expectedOnus} ports enabled in $SECONDS seconds (time: $SECONDS)"
Shrey Baid49bf8f62020-03-09 17:52:01 -0700186 echo $SECONDS > temp.txt
187 paste voltha-devices-time-num.txt temp.txt | awk '{print ($1 + $2)}' > onos-ports-time-num.txt
188 echo "ONOS-Duration(s)" > onos-ports-time.txt
189 echo "VOLTHA-Duration(s)" > voltha-devices-time.txt
190 cat voltha-devices-time-num.txt >> voltha-devices-time.txt
191 cat onos-ports-time-num.txt >> onos-ports-time.txt
Shrey Baida3b8aa62020-02-13 11:22:51 -0800192 '''
193 }
194 }
Shrey Baidb001c712020-02-11 11:12:46 -0800195 }
196 }
Matteo Scandolo51b76302020-02-05 12:07:23 -0800197 }
198 post {
Shrey Baid4da57a62020-03-05 15:49:50 -0800199 success {
Shrey Baide7614d02020-02-25 10:26:42 -0800200 plot([
201 csvFileName: 'plot-onu-activation.csv',
Shrey Baid49bf8f62020-03-09 17:52:01 -0700202 csvSeries: [[displayTableFlag: false, exclusionValues: '', file: 'voltha-devices-time.txt', inclusionFlag: 'OFF', url: ''], [displayTableFlag: false, exclusionValues: '', file: 'onos-ports-time.txt', inclusionFlag: 'OFF', url: '']],
Shrey Baid943e2072020-03-04 10:31:32 -0800203 group: 'Voltha-Scale-Numbers', numBuilds: '100', style: 'line', title: "Time (${BBSIMdelay}s Delay)", yaxis: 'Time (s)', useDescr: true
Shrey Baide7614d02020-02-25 10:26:42 -0800204 ])
Shrey Baid4da57a62020-03-05 15:49:50 -0800205 }
206 always {
207 sh '''
208 echo $(voltctl device list | grep -v OLT | grep ACTIVE | wc -l) > onus.txt
Shrey Baid49bf8f62020-03-09 17:52:01 -0700209 echo "#-of-ONUs" > voltha-devices-count.txt
210 cat onus.txt >> voltha-devices-count.txt
Shrey Baid4da57a62020-03-05 15:49:50 -0800211
212 echo $(sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost ports -e | grep BBSM | wc -l) > ports.txt
Shrey Baid49bf8f62020-03-09 17:52:01 -0700213 echo "#-of-ports" > onos-ports-count.txt
214 cat ports.txt >> onos-ports-count.txt
Shrey Baid4da57a62020-03-05 15:49:50 -0800215
216 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
217 voltctl device list -o json > device-list.json
Shrey Baid49bf8f62020-03-09 17:52:01 -0700218 python -m json.tool device-list.json > voltha-devices-list.json
219 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost ports > onos-ports-list.txt
Shrey Baidce9ed552020-03-13 13:40:13 -0700220 curl -s -X GET -G http://127.0.0.1:31301/api/v1/query --data-urlencode 'query=avg(rate(container_cpu_usage_seconds_total[10m])*100) by (pod_name)' | jq . > cpu-usage.json
Matteo Scandolo7059b082020-03-17 09:05:03 -0700221 kubectl log deployment/adapter-open-olt > open-olt-logs.txt
222 kubectl log deployment/adapter-open-onu > open-onu-logs.txt
223 kubectl log deployment/voltha-rw-core > voltha-rw-core-logs.txt
224 kubectl log deployment/voltha-ofagent > voltha-ofagent-logs.txt
225 kubectl log deployment/bbsim > bbsim-logs.txt
226
Shrey Baid49bf8f62020-03-09 17:52:01 -0700227 rm -rf BBSM-12345123451234512345-00000000000001-v1.json device-list.json onus.txt ports.txt temp.txt
Shrey Baid4da57a62020-03-05 15:49:50 -0800228 '''
229 plot([
230 csvFileName: 'plot-numbers.csv',
Shrey Baid49bf8f62020-03-09 17:52:01 -0700231 csvSeries: [[displayTableFlag: false, exclusionValues: '', file: 'voltha-devices-count.txt', inclusionFlag: 'OFF', url: ''], [displayTableFlag: false, exclusionValues: '', file: 'onos-ports-count.txt', inclusionFlag: 'OFF', url: '']],
Shrey Baid4da57a62020-03-05 15:49:50 -0800232 group: 'Voltha-Scale-Numbers', numBuilds: '100', style: 'line', title: "Activated ONUs and Recognized Ports", yaxis: 'Number of Ports/ONUs', useDescr: true
233 ])
234
235 archiveArtifacts artifacts: '*.log,*.json,*txt'
236
Matteo Scandolo51b76302020-02-05 12:07:23 -0800237 }
238 }
Matteo Scandoloe69614f2020-03-10 11:35:35 -0700239}