blob: bde5a8d2c617907296e320ff8801fba5d7a6f79c [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 Baid67486582020-02-25 10:26:42 -080022 EXTRA_HELM_FLAGS="--set onu=${onuPerPon},pon=${ponPorts},delay=${BBSIMdelay},auth=${bbsimAuth},dhcp=${bbsimDhcp}"
Shrey Baid00ff5c42020-02-07 15:14:08 -080023 }
Matteo Scandolo51b76302020-02-05 12:07:23 -080024 stages {
Shrey Baide7614d02020-02-25 10:26:42 -080025 stage('set-description') {
26 steps {
27 script {
Shrey Baid943e2072020-03-04 10:31:32 -080028 currentBuild.description = "$BUILD_TIMESTAMP"
Shrey Baide7614d02020-02-25 10:26:42 -080029 }
30 }
31 }
Shrey Baidb0447182020-02-27 16:39:35 -080032 stage('cleanup') {
Matteo Scandolo51b76302020-02-05 12:07:23 -080033 steps {
Shrey Baidb0447182020-02-27 16:39:35 -080034 sh '''
Shrey Baid49bf8f62020-03-09 17:52:01 -070035 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 -080036 for hchart in \$(helm list -q | grep -E -v 'docker-registry|cord-kafka|etcd-operator');
37 do
38 echo "Purging chart: \${hchart}"
39 helm delete --purge "\${hchart}"
40 done
Shrey Baidb0447182020-02-27 16:39:35 -080041 bash /home/cord/voltha-scale/wait_for_pods.sh
42 bash /home/cord/voltha-scale/stop_port_forward.sh
43 '''
Matteo Scandolo51b76302020-02-05 12:07:23 -080044 }
45 }
46 stage('start') {
47 steps {
Shrey Baid00ff5c42020-02-07 15:14:08 -080048 sh '''
Matteo Scandolo51b76302020-02-05 12:07:23 -080049 #!/usr/bin/env bash
50 set -euo pipefail
Shrey Baid00ff5c42020-02-07 15:14:08 -080051 '''
52 }
53 }
Shrey Baid00ff5c42020-02-07 15:14:08 -080054 stage('deploy-voltha') {
Matteo Scandolo2fc1dac2020-03-09 08:39:53 -070055 options {
56 timeout(time:10)
57 }
Shrey Baid00ff5c42020-02-07 15:14:08 -080058 steps {
59 sh '''
Shrey Baidb0447182020-02-27 16:39:35 -080060 helm install -n onos onf/onos --set images.onos.repository=voltha/voltha-onos --set images.onos.tag=4.0.1
Shrey Baidb0447182020-02-27 16:39:35 -080061
Matteo Scandoloa2928e72020-03-02 16:38:22 -080062 IFS=: read -r volthaRepo volthaTag <<< ${volthaImg}
63 helm install -n voltha onf/voltha -f /home/cord/voltha-scale/voltha-values.yaml --set images.voltha.repository=${volthaRepo},images.voltha.tag=${volthaTag}
64
65 IFS=: read -r openoltAdapterRepo openoltAdapterTag <<< ${openoltAdapterImg}
66 helm install -n openolt onf/voltha-adapter-openolt -f /home/cord/voltha-scale/voltha-values.yaml --set images.adapter_open_olt.repository=${openoltAdapterRepo},images.adapter_open_olt.tag=${openoltAdapterTag}
67
68 IFS=: read -r openonuAdapterRepo openonuAdapterTag <<< ${openonuAdapterImg}
69 helm install -n openonu onf/voltha-adapter-openonu -f /home/cord/voltha-scale/voltha-values.yaml --set images.adapter_open_olt.repository=${openonuAdapterRepo},images.adapter_open_olt.tag=${openonuAdapterTag}
70
71 IFS=: read -r bbsimRepo bbsimTag <<< ${bbsimImg}
72 helm install -n bbsim onf/bbsim --set pon=${ponPorts},onu=${onuPerPon},auth=${bbsimAuth},dhcp=${bbsimDhcp},delay=${BBSIMdelay},images.bbsim.repository=${bbsimRepo},images.bbsim.tag=${bbsimTag}
Shrey Baidb0447182020-02-27 16:39:35 -080073 helm install -n radius onf/freeradius
74
Shrey Baide7614d02020-02-25 10:26:42 -080075 if [ ! -z ${bbsimImg} ];
76 then
77 IFS=: read -r bbsimRepo bbsimTag <<< ${bbsimImg}
78 EXTRA_HELM_FLAGS+=",images.bbsim.repository=${bbsimRepo},images.bbsim.tag=${bbsimTag}"
79 fi
80 if [ ! -z ${volthaImg} ];
81 then
82 IFS=: read -r volthaRepo volthaTag <<< ${volthaImg}
83 EXTRA_HELM_FLAGS+=",images.voltha.repository=${volthaRepo},images.voltha.tag=${volthaTag}"
84 fi
Shrey Baidb0447182020-02-27 16:39:35 -080085 bash /home/cord/voltha-scale/wait_for_pods.sh
86 bash /home/cord/voltha-scale/start_port_forward.sh
Shrey Baid00ff5c42020-02-07 15:14:08 -080087 '''
88 }
89 }
Matteo Scandoloa711ddf2020-03-06 16:41:34 -080090 stage('wait for adapters to be registered') {
Matteo Scandolo2fc1dac2020-03-09 08:39:53 -070091 options {
92 timeout(time:5)
93 }
Matteo Scandoloa711ddf2020-03-06 16:41:34 -080094 steps{
95 waitUntil {
96 script {
97 openolt_res = sh returnStdout: true, script: """
98 voltctl adapter list | grep openolt | wc -l
99 """
100
101 openonu_res = sh returnStdout: true, script: """
102 voltctl adapter list | grep brcm_openomci_onu | wc -l
103 """
104
105 return openolt_res.toInteger() == 1 && openonu_res.toInteger() == 1
106 }
107 }
108 }
109 }
Shrey Baide7614d02020-02-25 10:26:42 -0800110 stage('MIB-template') {
111 steps {
112 sh '''
113 if [ ${withMibTemplate} = true ] ; then
Shrey Baidb0447182020-02-27 16:39:35 -0800114 rm -f BBSM-12345123451234512345-00000000000001-v1.json
Shrey Baide7614d02020-02-25 10:26:42 -0800115 wget https://raw.githubusercontent.com/opencord/voltha-openonu-adapter/master/templates/BBSM-12345123451234512345-00000000000001-v1.json
Shrey Baidb0447182020-02-27 16:39:35 -0800116 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 -0800117 fi
118 '''
Shrey Baid0d4e31d2020-02-11 13:28:47 -0800119 }
Shrey Baide7614d02020-02-25 10:26:42 -0800120 }
121 stage('disable-ONOS-apps') {
122 steps {
123 sh '''
124 #Check withOnosApps and disable apps accordingly
125 if [ ${withOnosApps} = false ] ; then
Shrey Baidb0447182020-02-27 16:39:35 -0800126 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost app deactivate org.opencord.olt
127 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost app deactivate org.opencord.aaa
128 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 -0800129 fi
130 '''
Shrey Baid0d4e31d2020-02-11 13:28:47 -0800131 }
Shrey Baide7614d02020-02-25 10:26:42 -0800132 }
133 stage('configuration') {
134 steps {
135 sh '''
136 #Setting LOG level to WARN
Shrey Baidb0447182020-02-27 16:39:35 -0800137 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost log:set WARN
138 kubectl exec $(kubectl get pods | grep bbsim | awk 'NR==1{print $1}') bbsimctl log warn false
Shrey Baide7614d02020-02-25 10:26:42 -0800139 #Setting link discovery
Shrey Baidb0447182020-02-27 16:39:35 -0800140 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 -0800141 #Setting the flow stats collection interval
Shrey Baidb0447182020-02-27 16:39:35 -0800142 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 -0800143 #Setting the ports stats collection interval
Shrey Baidb0447182020-02-27 16:39:35 -0800144 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 -0800145 # extending voltctl timeout
Shrey Baidb0447182020-02-27 16:39:35 -0800146 sed -i 's/timeout: 10s/timeout: 5m/g' /home/cord/.volt/config
Shrey Baide7614d02020-02-25 10:26:42 -0800147 '''
148 }
149 }
150 stage('execute') {
151 options {
152 timeout(time:10)
153 }
154 stages {
Shrey Baida3b8aa62020-02-13 11:22:51 -0800155 stage('ONUs-enabled') {
156 steps {
157 sh '''
158 if [ -z ${expectedOnus} ]
159 then
160 echo -e "You need to set the target ONU number\n"
161 exit 1
162 fi
Shrey Baid00ff5c42020-02-07 15:14:08 -0800163
Shrey Baida3b8aa62020-02-13 11:22:51 -0800164 voltctl device create -t openolt -H bbsim:50060
165 voltctl device enable $(voltctl device list --filter Type~openolt -q)
166 # check ONUs reached Active State in VOLTHA
167 i=$(voltctl device list | grep -v OLT | grep ACTIVE | wc -l)
168 until [ $i -eq ${expectedOnus} ]
169 do
170 echo "$i ONUs ACTIVE of ${expectedOnus} expected (time: $SECONDS)"
171 sleep ${pollInterval}
172 i=$(voltctl device list | grep -v OLT | grep ACTIVE | wc -l)
173 done
174 echo "${expectedOnus} ONUs Activated in $SECONDS seconds (time: $SECONDS)"
Shrey Baid49bf8f62020-03-09 17:52:01 -0700175 echo $SECONDS > voltha-devices-time-num.txt
Shrey Baida3b8aa62020-02-13 11:22:51 -0800176 '''
177 }
178 }
179 stage('ONOS-ports') {
180 steps {
Shrey Baide7614d02020-02-25 10:26:42 -0800181 sh '''
Shrey Baida3b8aa62020-02-13 11:22:51 -0800182 # Check ports showed up in ONOS
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 until [ $z -eq ${expectedOnus} ]
185 do
186 echo "${z} enabled ports of ${expectedOnus} expected (time: $SECONDS)"
187 sleep ${pollInterval}
Shrey Baidb0447182020-02-27 16:39:35 -0800188 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 -0800189 done
190 echo "${expectedOnus} ports enabled in $SECONDS seconds (time: $SECONDS)"
Shrey Baid49bf8f62020-03-09 17:52:01 -0700191 echo $SECONDS > temp.txt
192 paste voltha-devices-time-num.txt temp.txt | awk '{print ($1 + $2)}' > onos-ports-time-num.txt
193 echo "ONOS-Duration(s)" > onos-ports-time.txt
194 echo "VOLTHA-Duration(s)" > voltha-devices-time.txt
195 cat voltha-devices-time-num.txt >> voltha-devices-time.txt
196 cat onos-ports-time-num.txt >> onos-ports-time.txt
Shrey Baida3b8aa62020-02-13 11:22:51 -0800197 '''
198 }
199 }
Shrey Baidb001c712020-02-11 11:12:46 -0800200 }
201 }
Matteo Scandolo51b76302020-02-05 12:07:23 -0800202 }
203 post {
Shrey Baid4da57a62020-03-05 15:49:50 -0800204 success {
Shrey Baide7614d02020-02-25 10:26:42 -0800205 plot([
206 csvFileName: 'plot-onu-activation.csv',
Shrey Baid49bf8f62020-03-09 17:52:01 -0700207 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 -0800208 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 -0800209 ])
Shrey Baid4da57a62020-03-05 15:49:50 -0800210 }
211 always {
212 sh '''
213 echo $(voltctl device list | grep -v OLT | grep ACTIVE | wc -l) > onus.txt
Shrey Baid49bf8f62020-03-09 17:52:01 -0700214 echo "#-of-ONUs" > voltha-devices-count.txt
215 cat onus.txt >> voltha-devices-count.txt
Shrey Baid4da57a62020-03-05 15:49:50 -0800216
217 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 -0700218 echo "#-of-ports" > onos-ports-count.txt
219 cat ports.txt >> onos-ports-count.txt
Shrey Baid4da57a62020-03-05 15:49:50 -0800220
221 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
222 voltctl device list -o json > device-list.json
Shrey Baid49bf8f62020-03-09 17:52:01 -0700223 python -m json.tool device-list.json > voltha-devices-list.json
224 sshpass -e ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@localhost ports > onos-ports-list.txt
225
226 rm -rf BBSM-12345123451234512345-00000000000001-v1.json device-list.json onus.txt ports.txt temp.txt
Shrey Baid4da57a62020-03-05 15:49:50 -0800227 '''
228 plot([
229 csvFileName: 'plot-numbers.csv',
Shrey Baid49bf8f62020-03-09 17:52:01 -0700230 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 -0800231 group: 'Voltha-Scale-Numbers', numBuilds: '100', style: 'line', title: "Activated ONUs and Recognized Ports", yaxis: 'Number of Ports/ONUs', useDescr: true
232 ])
233
234 archiveArtifacts artifacts: '*.log,*.json,*txt'
235
Matteo Scandolo51b76302020-02-05 12:07:23 -0800236 }
237 }
Shrey Baidfd1b5cf2020-03-09 10:11:50 -0700238}