blob: 3f2f2985b6027a62256ff60a68e34007093aef2b [file] [log] [blame]
Luca Pretee2d51fd2017-08-31 16:19:21 -07001// Copyright 2017-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
You Wang1abf2bf2017-12-12 15:21:07 -080015import groovy.json.JsonSlurperClassic
16
Luca Pretee2d51fd2017-08-31 16:19:21 -070017def filename = 'manifest-${branch}.xml'
18def manifestUrl = 'https://gerrit.opencord.org/manifest'
You Wang1abf2bf2017-12-12 15:21:07 -080019deployment_config = null;
20pod_config = null;
Luca Pretee2d51fd2017-08-31 16:19:21 -070021
22node ('master') {
23 checkout changelog: false, poll: false, scm: [$class: 'RepoScm', currentBranch: true, manifestBranch: params.branch, manifestRepositoryUrl: "${manifestUrl}", quiet: true]
24
25 stage ("Generate and Copy Manifest file") {
26 sh returnStdout: true, script: 'repo manifest -r -o ' + filename
27 sh returnStdout: true, script: 'cp ' + filename + ' ' + env.JENKINS_HOME + '/tmp'
28 }
29
30 stage ("Parse deployment configuration file") {
31 sh returnStdout: true, script: 'rm -rf ${configRepoBaseDir}'
32 sh returnStdout: true, script: 'git clone -b ${branch} ${configRepoUrl}'
You Wang1abf2bf2017-12-12 15:21:07 -080033 deployment_config = readYaml file: "${configRepoBaseDir}${configRepoFile}"
34 pod_config = readYaml file: "${configRepoBaseDir}${deployment_config.pod_config.file_name}"
Luca Pretee2d51fd2017-08-31 16:19:21 -070035 }
36}
37
You Wang1abf2bf2017-12-12 15:21:07 -080038node ("${deployment_config.dev_node.name}") {
Luca Pretee2d51fd2017-08-31 16:19:21 -070039 timeout (time: 240) {
Luca Prete225d9652017-09-12 10:44:48 -070040 stage ('Remove old head node from known hosts') {
You Wang1abf2bf2017-12-12 15:21:07 -080041 sh "ssh-keygen -R ${deployment_config.head.ip}"
You Wangf9cb2f32017-09-11 13:26:42 -070042 }
Luca Pretee2d51fd2017-08-31 16:19:21 -070043 stage ('Checkout cord repo') {
44 checkout changelog: false, poll: false, scm: [$class: 'RepoScm', currentBranch: true, manifestBranch: params.branch, manifestRepositoryUrl: "${manifestUrl}", quiet: true]
45 }
46
Luca Pretefcbc54b2017-09-12 14:37:33 -070047 try {
48 dir('build') {
Luca Pretee2d51fd2017-08-31 16:19:21 -070049 stage ("Re-deploy head node") {
50 maasOps: {
You Wang1abf2bf2017-12-12 15:21:07 -080051 sh "maas login maas http://${deployment_config.maas.ip}/MAAS/api/2.0 ${deployment_config.maas.api_key}"
52 sh "maas maas machine release ${deployment_config.maas.head_system_id}"
Luca Pretee2d51fd2017-08-31 16:19:21 -070053
54 timeout(time: 15) {
55 waitUntil {
56 try {
You Wang1abf2bf2017-12-12 15:21:07 -080057 sh "maas maas machine read ${deployment_config.maas.head_system_id} | grep Ready"
Luca Pretee2d51fd2017-08-31 16:19:21 -070058 return true
59 } catch (exception) {
60 return false
61 }
62 }
63 }
64
65 sh 'maas maas machines allocate'
You Wang1abf2bf2017-12-12 15:21:07 -080066 sh "maas maas machine deploy ${deployment_config.maas.head_system_id}"
Luca Pretee2d51fd2017-08-31 16:19:21 -070067
68 timeout(time: 30) {
69 waitUntil {
70 try {
You Wang1abf2bf2017-12-12 15:21:07 -080071 sh "maas maas machine read ${deployment_config.maas.head_system_id} | grep Deployed"
Luca Pretee2d51fd2017-08-31 16:19:21 -070072 return true
73 } catch (exception) {
74 return false
75 }
76 }
77 }
78 }
79 }
80
81 stage ("Download CORD POD configuration") {
You Wange6fbdae2018-01-02 11:35:10 -080082 sh "cd ../orchestration/profiles; git clone -b ${branch} ${deployment_config.pod_config.repo_url} automation"
Luca Pretee2d51fd2017-08-31 16:19:21 -070083 }
84
85 stage ("Generate CORD configuration") {
Andy Bavier4775df22018-01-05 10:52:30 -070086 sh "make PODCONFIG_PATH=../orchestration/profiles/automation/${deployment_config.pod_config.file_name} config"
Luca Pretee2d51fd2017-08-31 16:19:21 -070087 }
88
You Wang1abf2bf2017-12-12 15:21:07 -080089 if (deployment_config.fabric_switches != null) {
Andy Bavier700f2662017-09-19 13:52:30 -070090 stage("Reserve IPs for fabric switches") {
You Wang1abf2bf2017-12-12 15:21:07 -080091 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
92 def str = createMACIPbindingStr("fabric", i+1,
93 "${deployment_config.fabric_switches[i].mac}",
94 "${deployment_config.fabric_switches[i].ip}")
Andy Bavier700f2662017-09-19 13:52:30 -070095 sh "echo $str >> maas/roles/maas/files/dhcpd.reservations"
96 }
97 }
98 }
99
Luca Pretee2d51fd2017-08-31 16:19:21 -0700100 stage ("Deploy") {
Luca Prete614d6702017-10-18 11:52:55 -0700101 sh "make build"
Luca Pretee2d51fd2017-08-31 16:19:21 -0700102 }
103
You Wang1abf2bf2017-12-12 15:21:07 -0800104 if (deployment_config.compute_nodes != null) {
Luca Pretee2095272017-10-17 11:47:26 -0700105 stage ("Power cycle compute nodes") {
You Wang1abf2bf2017-12-12 15:21:07 -0800106 for(int i=0; i < deployment_config.compute_nodes.size(); i++) {
107 sh "ipmitool -U ${deployment_config.compute_nodes[i].ipmi.user} -P ${deployment_config.compute_nodes[i].ipmi.pass} -H ${deployment_config.compute_nodes[i].ipmi.ip} power cycle"
Luca Pretee2095272017-10-17 11:47:26 -0700108 }
109 }
110
111 stage ("Wait for compute nodes to get deployed") {
You Wang1abf2bf2017-12-12 15:21:07 -0800112 sh "ssh-keygen -f /home/${deployment_config.dev_node.user}/.ssh/known_hosts -R ${deployment_config.head.ip}"
113 def cordApiKey = runHeadNodeCmd("sudo maas-region-admin apikey --username ${deployment_config.head.user}")
114 runHeadNodeCmd("maas login pod-maas http://${deployment_config.head.ip}/MAAS/api/1.0 ${cordApiKey}")
Luca Prete49c818c2017-10-24 17:22:09 -0700115 timeout(time: 90) {
Luca Pretee2095272017-10-17 11:47:26 -0700116 waitUntil {
117 try {
You Wang1abf2bf2017-12-12 15:21:07 -0800118 num = runHeadNodeCmd("maas pod-maas nodes list | grep substatus_name | grep -i deployed | wc -l").trim()
119 return num.toInteger() == deployment_config.compute_nodes.size()
Luca Pretee2095272017-10-17 11:47:26 -0700120 } catch (exception) {
121 return false
122 }
Luca Pretee2d51fd2017-08-31 16:19:21 -0700123 }
124 }
125 }
Luca Pretee2d51fd2017-08-31 16:19:21 -0700126
Luca Pretee2095272017-10-17 11:47:26 -0700127 stage ("Wait for compute nodes to be provisioned") {
128 timeout(time:45) {
129 waitUntil {
130 try {
You Wang1abf2bf2017-12-12 15:21:07 -0800131 num = runHeadNodeCmd("cord prov list | grep -i node | grep -i complete | wc -l").trim()
132 return num.toInteger() == deployment_config.compute_nodes.size()
Luca Pretee2095272017-10-17 11:47:26 -0700133 } catch (exception) {
134 return false
135 }
Luca Pretee2d51fd2017-08-31 16:19:21 -0700136 }
137 }
138 }
Luca Pretee2095272017-10-17 11:47:26 -0700139 }
Luca Pretee2d51fd2017-08-31 16:19:21 -0700140
You Wang1abf2bf2017-12-12 15:21:07 -0800141 if (deployment_config.fabric_switches != null) {
Luca Pretee2d51fd2017-08-31 16:19:21 -0700142 stage ("Wait for fabric switches to get deployed") {
You Wang1abf2bf2017-12-12 15:21:07 -0800143 runFabricSwitchCmdAll("sudo onl-onie-boot-mode install")
144 runFabricSwitchCmdAll("sudo reboot")
Andy Bavier700f2662017-09-19 13:52:30 -0700145 // Ensure that switches get provisioned after ONIE reinstall.
146 // Delete them if they were provisioned earlier. If the switches are not
147 // present in 'cord prov list', this command has no effect.
You Wang1abf2bf2017-12-12 15:21:07 -0800148 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
149 runHeadNodeCmd("cord prov delete ${deployment_config.fabric_switches[i].mac}")
Luca Pretee2d51fd2017-08-31 16:19:21 -0700150 }
151 timeout(time: 45) {
152 waitUntil {
153 try {
You Wang1abf2bf2017-12-12 15:21:07 -0800154 def harvestCompleted = runHeadNodeCmd("cord harvest list | grep -i fabric | wc -l").trim()
155 return harvestCompleted.toInteger() == deployment_config.fabric_switches.size()
Luca Pretee2d51fd2017-08-31 16:19:21 -0700156 } catch (exception) {
157 return false
158 }
159 }
160 }
161 }
162
163 stage ("Wait for fabric switches to be provisioned") {
164 timeout(time:45) {
165 waitUntil {
166 try {
167 def provCompleted = 0
You Wang1abf2bf2017-12-12 15:21:07 -0800168 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
169 def count = runHeadNodeCmd("cord prov list | grep -i ${deployment_config.fabric_switches[i].ip} | grep -i complete | wc -l").trim()
Luca Pretee2d51fd2017-08-31 16:19:21 -0700170 provCompleted = provCompleted + count.toInteger()
171 }
You Wang1abf2bf2017-12-12 15:21:07 -0800172 return provCompleted == deployment_config.fabric_switches.size()
Luca Pretee2d51fd2017-08-31 16:19:21 -0700173 } catch (exception) {
174 return false
175 }
176 }
177 }
178 }
Marc De Leenheer672afa82017-11-27 17:25:09 -0800179
You Wang1abf2bf2017-12-12 15:21:07 -0800180 // Post installation configuration starts here
181 fabricIpPrefix = pod_config.fabric_ip.split(/\.\d+\.\d+\/24/)[0]
182 xosUser = "xosadmin@opencord.org"
183 xosPass = runHeadNodeCmd("cat /opt/credentials/xosadmin@opencord.org").trim()
184 stage ("Connect fabric switches and compute nodes to ONOS") {
185 // Configure breakout ports
186 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
187 if (deployment_config.fabric_switches[i].breakout_ports != null) {
188 for(int j=0; j < deployment_config.fabric_switches[i].breakout_ports.size(); j++) {
189 runFabricSwitchCmd("${deployment_config.fabric_switches[i].ip}",
190 "${deployment_config.fabric_switches[i].user}",
191 "${deployment_config.fabric_switches[i].pass}",
You Wangd1d67aa2017-12-13 11:18:54 -0800192 "sed -i -e 's/#port_mode_${deployment_config.fabric_switches[i].breakout_ports[j]}=/port_mode_${deployment_config.fabric_switches[i].breakout_ports[j]}=/g' /etc/accton/ofdpa.conf")
Marc De Leenheer672afa82017-11-27 17:25:09 -0800193 }
You Wang1abf2bf2017-12-12 15:21:07 -0800194 }
195 }
196 connectFabricAndComputeToOnos()
197 }
198 stage ("Configure the compute nodes") {
199 leafSwitchNum = 0
200 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
You Wangd37a1732017-12-14 15:29:11 -0800201 if(deployment_config.fabric_switches[i].containsKey("role")) {
You Wangdd8793e2017-12-14 15:03:36 -0800202 if(deployment_config.fabric_switches[i].role.toLowerCase().contains("leaf")) {
203 leafSwitchNum += 1
204 }
You Wang1abf2bf2017-12-12 15:21:07 -0800205 }
206 }
You Wang1abf2bf2017-12-12 15:21:07 -0800207 for(int i=1; i<=leafSwitchNum; i++) {
208 // Figure out which compute node connects to which switch
209 leafName = "leaf-" + i.toString()
210 computeNames = getComputeNames(leafName)
211 echo "Compute nodes connnected to " + leafName + " switch:"
212 for(name in computeNames) { echo "${name}" }
213 index = 1
214 for(name in computeNames) {
215 if(i>1) {
216 //Update fabric IP of compute nodes
217 index += 1
218 fabricIp = runComputeNodeCmd("${name}", "ip a | grep -o '${fabricIpPrefix}.[1-9][0-9]*.[0-9]*/24'").trim()
219 if (fabricIp != "") {
220 nodeId = sh(returnStdout: true, script: "curl -u ${xosUser}:${xosPass} -X GET http://${deployment_config.head.ip}/xosapi/v1/core/nodes | jq '.[\"items\"][] | select(.dataPlaneIp==\"${fabricIp}\") | .id'").trim()
221 newFabricIp = "${fabricIpPrefix}." + i.toString() + "." + index.toString() + "/24"
222 out = sh(returnStdout: true, script: "curl -u ${xosUser}:${xosPass} -X PUT -d '{\"dataPlaneIp\":\"${newFabricIp}\"}' http://${deployment_config.head.ip}/xosapi/v1/core/nodes/${nodeId}").trim()
223 // Wait until the new fabric IP gets configured
224 timeout(time: 5) {
225 waitUntil {
226 try {
227 num = runComputeNodeCmd("${name}", "ip a | grep " + newFabricIp + " | wc -l").trim()
228 return num.toInteger() == 1
229 } catch (exception) {
230 return false
231 }
232 }
233 }
234 }
235 else echo "Cannot find fabric IP matching pattern ${fabricIpPrefix}.[1-9][0-9]*.[0-9]*"
236 }
237 //Add routes to fabric subnets
238 for(int j=1; j<=leafSwitchNum; j++) {
239 if(j!=i) {
240 runComputeNodeCmd("${name}", "sudo ip route add ${fabricIpPrefix}." + j.toString() + ".0/24 via ${fabricIpPrefix}." + i.toString() + ".254 || echo route already exists")
241 }
242 }
243 }
244 }
245 }
246 stage ("Generate and load network configuration") {
247 // Reconnect compute nodes to update the fabric IP in ONOS
248 connectFabricAndComputeToOnos()
249 // Generate network configuration
250 runHeadNodeCmd("""
251 cd /opt/cord_profile/
252 cp fabric-network-cfg.json fabric-network-cfg.json.\$(date +%Y%m%d-%H%M%S)
253 cord generate > fabric-network-cfg.json
254 """)
255 // Install httpie on the head-node
256 runHeadNodeCmd("sudo pip install httpie")
257 // Delete old ONOS netcfg
258 runHeadNodeCmd("http -a onos:rocks DELETE http://onos-fabric:8181/onos/v1/network/configuration/")
259 // Load new configuration
You Wang22e48862017-12-22 11:04:29 -0800260 runHeadNodeCmd("http -a onos:rocks POST http://onos-fabric:8181/onos/v1/network/configuration/ < /opt/cord_profile/fabric-network-cfg.json")
You Wang1abf2bf2017-12-12 15:21:07 -0800261 // Restart ONOS apps
262 runHeadNodeCmd("""
You Wang1abf2bf2017-12-12 15:21:07 -0800263 http -a onos:rocks DELETE http://onos-fabric:8181/onos/v1/applications/org.onosproject.segmentrouting/active; sleep 5
264 http -a onos:rocks POST http://onos-fabric:8181/onos/v1/applications/org.onosproject.segmentrouting/active; sleep 5
265 """)
Marc De Leenheer672afa82017-11-27 17:25:09 -0800266 }
Luca Pretee2d51fd2017-08-31 16:19:21 -0700267 }
Luca Pretee2d51fd2017-08-31 16:19:21 -0700268 }
Luca Pretefcbc54b2017-09-12 14:37:33 -0700269
You Wang1abf2bf2017-12-12 15:21:07 -0800270 if (deployment_config.make_release == true) {
Luca Pretefcbc54b2017-09-12 14:37:33 -0700271 stage ("Trigger Build") {
272 url = 'https://jenkins.opencord.org/job/release-build/job/' + params.branch + '/build'
273 httpRequest authentication: 'auto-release', httpMode: 'POST', url: url, validResponseCodes: '201'
274 }
275 }
276
277 currentBuild.result = 'SUCCESS'
278 } catch (err) {
279 currentBuild.result = 'FAILURE'
280 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
281 } finally {
282 sh "make -C build clean-all || true"
283 sh "rm -rf *"
284 }
285 echo "RESULT: ${currentBuild.result}"
Luca Pretee2d51fd2017-08-31 16:19:21 -0700286 }
287}
288
289/**
290 * Returns a string used to bind IPs and MAC addresses, substituting the values
291 * given.
292 *
You Wang1abf2bf2017-12-12 15:21:07 -0800293 * @param word the word used to generate the host name
Luca Pretee2d51fd2017-08-31 16:19:21 -0700294 * @param counter the counter used to generate the host name
295 * @param mac the MAC address to substitute
296 * @param ip the IP address to substitute
297 */
You Wang1abf2bf2017-12-12 15:21:07 -0800298def createMACIPbindingStr(word, counter, mac, ip) {
299 return """host ${word}-${counter} {'\n'hardware ethernet ${mac}';''\n'fixed-address ${ip}';''\n'}"""
Luca Pretee2d51fd2017-08-31 16:19:21 -0700300}
301
302/**
303 * Runs a command on a remote host using sshpass.
304 *
305 * @param ip the node IP address
306 * @param user the node user name
307 * @param pass the node password
308 * @param command the command to run
You Wang1abf2bf2017-12-12 15:21:07 -0800309 * @param sshArgs arguments for the ssh command
Luca Pretee2d51fd2017-08-31 16:19:21 -0700310 * @return the output of the command
311 */
You Wang1abf2bf2017-12-12 15:21:07 -0800312def runCmd(ip, user, pass, command, sshArgs="") {
313 return sh(returnStdout: true, script: "sshpass -p ${pass} ssh ${sshArgs} -oStrictHostKeyChecking=no -l ${user} ${ip} \"${command}\"")
314}
315
316/**
317 * Runs a command on the head node.
318 *
319 * @param command the command to run
320 * @param sshArgs arguments for the ssh command
321 * @return the output of the command
322 */
323def runHeadNodeCmd(command, sshArgs="") {
324 return sh(returnStdout: true, script: "sshpass -p ${deployment_config.head.pass} ssh ${sshArgs} -oStrictHostKeyChecking=no -l ${deployment_config.head.user} ${deployment_config.head.ip} \"${command}\"")
Luca Pretee2d51fd2017-08-31 16:19:21 -0700325}
326
327/**
328 * Runs a command on a fabric switch.
329 *
You Wang1abf2bf2017-12-12 15:21:07 -0800330 * @param ip the mgmt IP of the fabric switch, reachable from the head node
331 * @param user the mgmt user name of the fabric switch
332 * @param pass the mgmt password of the fabric switch
333 * @param command the command to run on the fabric switch
334 * @param ssgArgs arguments for the ssh command
Luca Pretee2d51fd2017-08-31 16:19:21 -0700335 * @return the output of the command
336 */
You Wang1abf2bf2017-12-12 15:21:07 -0800337def runFabricSwitchCmd(ip, user, pass, command, sshArgs="") {
338 return sh(returnStdout: true, script: "sshpass -p ${deployment_config.head.pass} ssh ${sshArgs} -oStrictHostKeyChecking=no -l ${deployment_config.head.user} ${deployment_config.head.ip} \"sshpass -p ${pass} ssh ${sshArgs} -oStrictHostKeyChecking=no -l ${user} ${ip} ${command}\"")
339}
340
341/**
342 * Runs a command on all fabric switches
343 *
344 * @param command the command to run on the fabric switches
345 * @param ssgArgs arguments for the ssh command
346 */
347def runFabricSwitchCmdAll(command, sshArgs="") {
348 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
349 runFabricSwitchCmd("${deployment_config.fabric_switches[i].ip}",
350 "${deployment_config.fabric_switches[i].user}",
351 "${deployment_config.fabric_switches[i].pass}",
352 "${command}",
353 "${sshArgs}")
354 }
355}
356
357/**
358 * Runs a command on a compute node.
359 *
360 * @param name the name of the compute node
361 * @param command the command to run on the compute node
362 * @param ssgArgs arguments for the ssh command
363 * @return the output of the command
364 */
365def runComputeNodeCmd(name, command, sshArgs="") {
366 return sh(returnStdout: true, script: "sshpass -p ${deployment_config.head.pass} ssh ${sshArgs} -oStrictHostKeyChecking=no -l ${deployment_config.head.user} ${deployment_config.head.ip} \"ssh ${sshArgs} ubuntu@${name} ${command}\"")
367}
368
369/**
370 * Runs a command on all compute nodes
371 *
372 * @param command the command to run on the compute nodes
373 * @param ssgArgs arguments for the ssh command
374 */
375def runComputeNodeCmdAll(command, sshArgs="") {
376 computeNamesAll = getComputeNames()
377 for (name in computeNamesAll) {
378 runComputeNodeCmd("${name}", "${command}", "${sshArgs}")
379 }
380}
381
382/**
383 * Runs an ONOS CLI command
384 *
385 * @param name the onos node name, reachable from the head node
386 * @param port the port used to login to ONOS CLI
387 * @param user the user name to login to ONOS CLI
388 * @param pass the password to login to ONOS CLI
389 * @param command the command to run in ONOS CLI
390 * @return the output of the command
391 */
392def runOnosCliCmd(name, port, user, pass, command) {
393 return sh(returnStdout: true, script: "sshpass -p ${deployment_config.head.pass} ssh -oStrictHostKeyChecking=no -l ${deployment_config.head.user} ${deployment_config.head.ip} \"sshpass -p ${pass} ssh -oStrictHostKeyChecking=no -l ${user} -p ${port} ${name} ${command}\"")
394}
395
396/**
397 * Returns a list of compute node names. When "role" is specified, returns only
398 * names of compute nodes connected to the switch
399 *
400 * @param role the switch role, i.e. "leaf-1"
401 */
402def getComputeNames(role="") {
403 computeNamesAll = runHeadNodeCmd("cord prov list | grep node | awk '{print \\\$2}' | sed -e \\\"s/.*/'&'/\\\"").trim()
404 computeNamesAll = "${computeNamesAll}".split()
405 computeNamesAll = "${computeNamesAll}".replaceAll("'", "\"")
406 computeNamesAll = new JsonSlurperClassic().parseText("${computeNamesAll}")
407 if ("${role}" == "") return computeNamesAll
408 computeNames = []
409 switchMac = ""
410 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
You Wangd37a1732017-12-14 15:29:11 -0800411 if(deployment_config.fabric_switches[i].containsKey("role")) {
412 if ("${deployment_config.fabric_switches[i].role}" == "${role}")
413 switchMac = "${deployment_config.fabric_switches[i].mac}"
414 }
You Wang1abf2bf2017-12-12 15:21:07 -0800415 }
416 if ("${switchMac}" != "") {
417 switchMac = switchMac.toLowerCase().replaceAll(':','')
418 // Get fabric IPs of compute nodes connected to the switch
You Wang22e48862017-12-22 11:04:29 -0800419 try {
420 computeFabricIps = runHeadNodeCmd("sshpass -p rocks ssh -q -oStrictHostKeyChecking=no -l onos -p 8101 onos-fabric hosts -j | jq '.[] | select(.location.elementId | contains(\\\"${switchMac}\\\")) | .ipAddresses' | grep -o '\\\"${fabricIpPrefix}.[1-9][0-9]*.[0-9]*\\\"'",
421 "-q").trim()
422 }catch (exception) {
423 return computeNames
424 }
You Wang1abf2bf2017-12-12 15:21:07 -0800425 computeFabricIps = "${computeFabricIps}".split()
426 computeFabricIps = new JsonSlurperClassic().parseText("${computeFabricIps}")
427 // Figure out which compute node connects to the switch
428 for (name in computeNamesAll) {
429 fabricIp = runComputeNodeCmd("${name}", "ip a | grep -o '${fabricIpPrefix}.[1-9][0-9]*.[0-9]*'").trim()
430 if (fabricIp in computeFabricIps) {
431 computeNames.add("${name}")
432 }
433 }
434 }
435 return computeNames
436}
437
438/**
439 * Connects all fabric switches and compute nodes to ONOS
440 */
441def connectFabricAndComputeToOnos() {
442 // Kill existing switch connections
443 runFabricSwitchCmdAll("./killit || echo no ofagentapp running")
444 // Clean stale ONOS data
445 runOnosCliCmd("onos-fabric", "8101", "onos", "rocks", "wipe-out -r -j please")
446 // Connect switches to ONOS
447 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
448 runFabricSwitchCmd("${deployment_config.fabric_switches[i].ip}",
449 "${deployment_config.fabric_switches[i].user}",
450 "${deployment_config.fabric_switches[i].pass}",
451 "./connect -bg 2>&1 > ${deployment_config.fabric_switches[i].ip}.log",
452 "-qftn")
453 }
454 // Verify ONOS has recognized the switches
455 timeout(time: 5) {
456 waitUntil {
457 try {
458 num = runHeadNodeCmd("\"sshpass -p rocks ssh -q -oStrictHostKeyChecking=no -l onos -p 8101 onos-fabric devices | grep available=true | wc -l\"").trim()
459 return num.toInteger() == deployment_config.fabric_switches.size()
460 } catch (exception) {
461 return false
462 }
463 }
464 }
465 // Connect compute nodes to ONOS
You Wang1abf2bf2017-12-12 15:21:07 -0800466 runComputeNodeCmdAll("ping -c 1 ${fabricIpPrefix}.1.254", "-qftn")
467 // Verify ONOS has recognized the hosts
468 timeout(time: 5) {
469 waitUntil {
470 try {
471 num = runHeadNodeCmd("\"sshpass -p rocks ssh -q -oStrictHostKeyChecking=no -l onos -p 8101 onos-fabric hosts | grep id= | wc -l\"").trim()
You Wangd37a1732017-12-14 15:29:11 -0800472 return num.toInteger() == deployment_config.compute_nodes.size()
You Wang1abf2bf2017-12-12 15:21:07 -0800473 } catch (exception) {
474 return false
475 }
476 }
477 }
Luca Pretee2d51fd2017-08-31 16:19:21 -0700478}