blob: 4e327a3780668032291e6393afee7eb335d03b92 [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()
You Wang23779d62018-02-06 15:52:36 -0800249 // Refresh fabric configurations
250 sh "make fabric-refresh"
Marc De Leenheer672afa82017-11-27 17:25:09 -0800251 }
Luca Pretee2d51fd2017-08-31 16:19:21 -0700252 }
Luca Pretee2d51fd2017-08-31 16:19:21 -0700253 }
Luca Pretefcbc54b2017-09-12 14:37:33 -0700254
You Wang1abf2bf2017-12-12 15:21:07 -0800255 if (deployment_config.make_release == true) {
Luca Pretefcbc54b2017-09-12 14:37:33 -0700256 stage ("Trigger Build") {
257 url = 'https://jenkins.opencord.org/job/release-build/job/' + params.branch + '/build'
258 httpRequest authentication: 'auto-release', httpMode: 'POST', url: url, validResponseCodes: '201'
259 }
260 }
261
262 currentBuild.result = 'SUCCESS'
263 } catch (err) {
264 currentBuild.result = 'FAILURE'
265 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
266 } finally {
267 sh "make -C build clean-all || true"
268 sh "rm -rf *"
269 }
270 echo "RESULT: ${currentBuild.result}"
Luca Pretee2d51fd2017-08-31 16:19:21 -0700271 }
272}
273
274/**
275 * Returns a string used to bind IPs and MAC addresses, substituting the values
276 * given.
277 *
You Wang1abf2bf2017-12-12 15:21:07 -0800278 * @param word the word used to generate the host name
Luca Pretee2d51fd2017-08-31 16:19:21 -0700279 * @param counter the counter used to generate the host name
280 * @param mac the MAC address to substitute
281 * @param ip the IP address to substitute
282 */
You Wang1abf2bf2017-12-12 15:21:07 -0800283def createMACIPbindingStr(word, counter, mac, ip) {
284 return """host ${word}-${counter} {'\n'hardware ethernet ${mac}';''\n'fixed-address ${ip}';''\n'}"""
Luca Pretee2d51fd2017-08-31 16:19:21 -0700285}
286
287/**
288 * Runs a command on a remote host using sshpass.
289 *
290 * @param ip the node IP address
291 * @param user the node user name
292 * @param pass the node password
293 * @param command the command to run
You Wang1abf2bf2017-12-12 15:21:07 -0800294 * @param sshArgs arguments for the ssh command
Luca Pretee2d51fd2017-08-31 16:19:21 -0700295 * @return the output of the command
296 */
You Wang1abf2bf2017-12-12 15:21:07 -0800297def runCmd(ip, user, pass, command, sshArgs="") {
298 return sh(returnStdout: true, script: "sshpass -p ${pass} ssh ${sshArgs} -oStrictHostKeyChecking=no -l ${user} ${ip} \"${command}\"")
299}
300
301/**
302 * Runs a command on the head node.
303 *
304 * @param command the command to run
305 * @param sshArgs arguments for the ssh command
306 * @return the output of the command
307 */
308def runHeadNodeCmd(command, sshArgs="") {
309 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 -0700310}
311
312/**
313 * Runs a command on a fabric switch.
314 *
You Wang1abf2bf2017-12-12 15:21:07 -0800315 * @param ip the mgmt IP of the fabric switch, reachable from the head node
316 * @param user the mgmt user name of the fabric switch
317 * @param pass the mgmt password of the fabric switch
318 * @param command the command to run on the fabric switch
319 * @param ssgArgs arguments for the ssh command
Luca Pretee2d51fd2017-08-31 16:19:21 -0700320 * @return the output of the command
321 */
You Wang1abf2bf2017-12-12 15:21:07 -0800322def runFabricSwitchCmd(ip, user, pass, command, sshArgs="") {
323 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}\"")
324}
325
326/**
327 * Runs a command on all fabric switches
328 *
329 * @param command the command to run on the fabric switches
330 * @param ssgArgs arguments for the ssh command
331 */
332def runFabricSwitchCmdAll(command, sshArgs="") {
333 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
334 runFabricSwitchCmd("${deployment_config.fabric_switches[i].ip}",
335 "${deployment_config.fabric_switches[i].user}",
336 "${deployment_config.fabric_switches[i].pass}",
337 "${command}",
338 "${sshArgs}")
339 }
340}
341
342/**
343 * Runs a command on a compute node.
344 *
345 * @param name the name of the compute node
346 * @param command the command to run on the compute node
347 * @param ssgArgs arguments for the ssh command
348 * @return the output of the command
349 */
350def runComputeNodeCmd(name, command, sshArgs="") {
351 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}\"")
352}
353
354/**
355 * Runs a command on all compute nodes
356 *
357 * @param command the command to run on the compute nodes
358 * @param ssgArgs arguments for the ssh command
359 */
360def runComputeNodeCmdAll(command, sshArgs="") {
361 computeNamesAll = getComputeNames()
362 for (name in computeNamesAll) {
363 runComputeNodeCmd("${name}", "${command}", "${sshArgs}")
364 }
365}
366
367/**
368 * Runs an ONOS CLI command
369 *
370 * @param name the onos node name, reachable from the head node
371 * @param port the port used to login to ONOS CLI
372 * @param user the user name to login to ONOS CLI
373 * @param pass the password to login to ONOS CLI
374 * @param command the command to run in ONOS CLI
375 * @return the output of the command
376 */
377def runOnosCliCmd(name, port, user, pass, command) {
378 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}\"")
379}
380
381/**
382 * Returns a list of compute node names. When "role" is specified, returns only
383 * names of compute nodes connected to the switch
384 *
385 * @param role the switch role, i.e. "leaf-1"
386 */
387def getComputeNames(role="") {
388 computeNamesAll = runHeadNodeCmd("cord prov list | grep node | awk '{print \\\$2}' | sed -e \\\"s/.*/'&'/\\\"").trim()
389 computeNamesAll = "${computeNamesAll}".split()
390 computeNamesAll = "${computeNamesAll}".replaceAll("'", "\"")
391 computeNamesAll = new JsonSlurperClassic().parseText("${computeNamesAll}")
392 if ("${role}" == "") return computeNamesAll
393 computeNames = []
394 switchMac = ""
395 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
You Wangd37a1732017-12-14 15:29:11 -0800396 if(deployment_config.fabric_switches[i].containsKey("role")) {
397 if ("${deployment_config.fabric_switches[i].role}" == "${role}")
398 switchMac = "${deployment_config.fabric_switches[i].mac}"
399 }
You Wang1abf2bf2017-12-12 15:21:07 -0800400 }
401 if ("${switchMac}" != "") {
402 switchMac = switchMac.toLowerCase().replaceAll(':','')
403 // Get fabric IPs of compute nodes connected to the switch
You Wang22e48862017-12-22 11:04:29 -0800404 try {
You Wang2e11a4b2018-02-01 13:10:37 -0800405 computeFabricIps = runHeadNodeCmd("sshpass -p rocks ssh -q -oStrictHostKeyChecking=no -l onos -p 8101 onos-fabric hosts -j | jq '.[] | select(.locations[].elementId | contains(\\\"${switchMac}\\\")) | .ipAddresses' | grep -o '\\\"${fabricIpPrefix}.[1-9][0-9]*.[0-9]*\\\"'",
You Wang22e48862017-12-22 11:04:29 -0800406 "-q").trim()
407 }catch (exception) {
408 return computeNames
409 }
You Wang1abf2bf2017-12-12 15:21:07 -0800410 computeFabricIps = "${computeFabricIps}".split()
411 computeFabricIps = new JsonSlurperClassic().parseText("${computeFabricIps}")
412 // Figure out which compute node connects to the switch
413 for (name in computeNamesAll) {
414 fabricIp = runComputeNodeCmd("${name}", "ip a | grep -o '${fabricIpPrefix}.[1-9][0-9]*.[0-9]*'").trim()
415 if (fabricIp in computeFabricIps) {
416 computeNames.add("${name}")
417 }
418 }
419 }
420 return computeNames
421}
422
423/**
424 * Connects all fabric switches and compute nodes to ONOS
425 */
426def connectFabricAndComputeToOnos() {
427 // Kill existing switch connections
428 runFabricSwitchCmdAll("./killit || echo no ofagentapp running")
429 // Clean stale ONOS data
430 runOnosCliCmd("onos-fabric", "8101", "onos", "rocks", "wipe-out -r -j please")
431 // Connect switches to ONOS
432 for(int i=0; i < deployment_config.fabric_switches.size(); i++) {
433 runFabricSwitchCmd("${deployment_config.fabric_switches[i].ip}",
434 "${deployment_config.fabric_switches[i].user}",
435 "${deployment_config.fabric_switches[i].pass}",
436 "./connect -bg 2>&1 > ${deployment_config.fabric_switches[i].ip}.log",
437 "-qftn")
438 }
439 // Verify ONOS has recognized the switches
440 timeout(time: 5) {
441 waitUntil {
442 try {
443 num = runHeadNodeCmd("\"sshpass -p rocks ssh -q -oStrictHostKeyChecking=no -l onos -p 8101 onos-fabric devices | grep available=true | wc -l\"").trim()
444 return num.toInteger() == deployment_config.fabric_switches.size()
445 } catch (exception) {
446 return false
447 }
448 }
449 }
450 // Connect compute nodes to ONOS
You Wang1abf2bf2017-12-12 15:21:07 -0800451 runComputeNodeCmdAll("ping -c 1 ${fabricIpPrefix}.1.254", "-qftn")
452 // Verify ONOS has recognized the hosts
453 timeout(time: 5) {
454 waitUntil {
455 try {
456 num = runHeadNodeCmd("\"sshpass -p rocks ssh -q -oStrictHostKeyChecking=no -l onos -p 8101 onos-fabric hosts | grep id= | wc -l\"").trim()
You Wang97bf12e2018-01-24 12:05:39 -0800457 return num.toInteger() >= deployment_config.compute_nodes.size()
You Wang1abf2bf2017-12-12 15:21:07 -0800458 } catch (exception) {
459 return false
460 }
461 }
462 }
Luca Pretee2d51fd2017-08-31 16:19:21 -0700463}