You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 1 | // 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 | |
| 15 | def filename = 'manifest-${branch}.xml' |
| 16 | def manifestUrl = 'https://gerrit.opencord.org/manifest' |
| 17 | def config = null; |
| 18 | |
| 19 | node ('master') { |
| 20 | checkout changelog: false, poll: false, scm: [$class: 'RepoScm', currentBranch: true, manifestBranch: params.branch, manifestRepositoryUrl: "${manifestUrl}", quiet: true] |
| 21 | |
| 22 | stage ("Generate and Copy Manifest file") { |
| 23 | sh returnStdout: true, script: 'repo manifest -r -o ' + filename |
| 24 | sh returnStdout: true, script: 'cp ' + filename + ' ' + env.JENKINS_HOME + '/tmp' |
| 25 | } |
| 26 | |
| 27 | stage ("Parse deployment configuration file") { |
| 28 | sh returnStdout: true, script: 'rm -rf ${configRepoBaseDir}' |
| 29 | sh returnStdout: true, script: 'git clone -b ${branch} ${configRepoUrl}' |
| 30 | config = readYaml file: "${configRepoBaseDir}${configRepoFile}" |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | node ("${config.dev_node.name}") { |
| 35 | timeout (time: 240) { |
Luca Prete | 7b4a1e8 | 2017-09-12 10:44:48 -0700 | [diff] [blame] | 36 | stage ('Remove old head node from known hosts') { |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 37 | sh "ssh-keygen -R ${config.head.ip}" |
| 38 | } |
| 39 | stage ('Checkout cord repo') { |
| 40 | checkout changelog: false, poll: false, scm: [$class: 'RepoScm', currentBranch: true, manifestBranch: params.branch, manifestRepositoryUrl: "${manifestUrl}", quiet: true] |
| 41 | } |
| 42 | |
Luca Prete | 9081fcc | 2017-09-12 14:37:33 -0700 | [diff] [blame] | 43 | try { |
| 44 | dir('build') { |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 45 | stage ("Re-deploy head node") { |
| 46 | maasOps: { |
| 47 | sh "maas login maas http://${config.maas.ip}/MAAS/api/2.0 ${config.maas.api_key}" |
| 48 | sh "maas maas machine release ${config.maas.head_system_id}" |
| 49 | |
| 50 | timeout(time: 15) { |
| 51 | waitUntil { |
| 52 | try { |
| 53 | sh "maas maas machine read ${config.maas.head_system_id} | grep Ready" |
| 54 | return true |
| 55 | } catch (exception) { |
| 56 | return false |
| 57 | } |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | sh 'maas maas machines allocate' |
| 62 | sh "maas maas machine deploy ${config.maas.head_system_id}" |
| 63 | |
| 64 | timeout(time: 30) { |
| 65 | waitUntil { |
| 66 | try { |
| 67 | sh "maas maas machine read ${config.maas.head_system_id} | grep Deployed" |
| 68 | return true |
| 69 | } catch (exception) { |
| 70 | return false |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | stage ("Download CORD POD configuration") { |
| 78 | sh "cd podconfig; git clone -b ${branch} ${config.pod_config.repo_url} automation" |
| 79 | } |
| 80 | |
| 81 | stage ("Generate CORD configuration") { |
| 82 | sh "make PODCONFIG=automation/${config.pod_config.file_name} config" |
| 83 | } |
| 84 | |
Andy Bavier | 6c2f804 | 2017-09-19 13:52:30 -0700 | [diff] [blame] | 85 | if (config.fabric_switches != null) { |
| 86 | stage("Reserve IPs for fabric switches") { |
| 87 | for(int i=0; i < config.fabric_switches.size(); i++) { |
| 88 | def str = createMACIPbindingStr(i+1, |
| 89 | "${config.fabric_switches[i].mac}", |
| 90 | "${config.fabric_switches[i].ip}") |
| 91 | sh "echo $str >> maas/roles/maas/files/dhcpd.reservations" |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 | |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 96 | stage ("Deploy") { |
Luca Prete | e92458d | 2017-10-18 11:52:30 -0700 | [diff] [blame] | 97 | sh "make build" |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Luca Prete | 2339b18 | 2017-10-17 11:47:26 -0700 | [diff] [blame] | 100 | if (config.compute_nodes != null) { |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 101 | |
Luca Prete | 2339b18 | 2017-10-17 11:47:26 -0700 | [diff] [blame] | 102 | stage ("Power cycle compute nodes") { |
| 103 | for(int i=0; i < config.compute_nodes.size(); i++) { |
| 104 | sh "ipmitool -U ${config.compute_nodes[i].ipmi.user} -P ${config.compute_nodes[i].ipmi.pass} -H ${config.compute_nodes[i].ipmi.ip} power cycle" |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | stage ("Wait for compute nodes to get deployed") { |
| 109 | sh "ssh-keygen -f /home/${config.dev_node.user}/.ssh/known_hosts -R ${config.head.ip}" |
| 110 | def cordApiKey = runCmd("${config.head.ip}", |
| 111 | "${config.head.user}", |
| 112 | "${config.head.pass}", |
| 113 | "sudo maas-region-admin apikey --username ${config.head.user}") |
| 114 | runCmd("${config.head.ip}", |
| 115 | "${config.head.user}", |
| 116 | "${config.head.pass}", |
| 117 | "maas login pod-maas http://${config.head.ip}/MAAS/api/1.0 ${cordApiKey}") |
Luca Prete | be198b8 | 2017-10-24 17:22:09 -0700 | [diff] [blame] | 118 | timeout(time: 90) { |
Luca Prete | 2339b18 | 2017-10-17 11:47:26 -0700 | [diff] [blame] | 119 | waitUntil { |
| 120 | try { |
| 121 | num = runCmd("${config.head.ip}", |
| 122 | "${config.head.user}", |
| 123 | "${config.head.pass}", |
| 124 | "maas pod-maas nodes list | grep substatus_name | grep -i deployed | wc -l").trim() |
| 125 | return num.toInteger() == config.compute_nodes.size() |
| 126 | } catch (exception) { |
| 127 | return false |
| 128 | } |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 129 | } |
| 130 | } |
| 131 | } |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 132 | |
Luca Prete | 2339b18 | 2017-10-17 11:47:26 -0700 | [diff] [blame] | 133 | stage ("Wait for compute nodes to be provisioned") { |
| 134 | timeout(time:45) { |
| 135 | waitUntil { |
| 136 | try { |
| 137 | num = runCmd("${config.head.ip}", |
| 138 | "${config.head.user}", |
| 139 | "${config.head.pass}", |
| 140 | "cord prov list '|' grep -i node '|' grep -i complete '|' wc -l").trim() |
| 141 | return num.toInteger() == config.compute_nodes.size() |
| 142 | } catch (exception) { |
| 143 | return false |
| 144 | } |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 145 | } |
| 146 | } |
| 147 | } |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 148 | |
Luca Prete | 2339b18 | 2017-10-17 11:47:26 -0700 | [diff] [blame] | 149 | } |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 150 | if (config.fabric_switches != null) { |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 151 | |
| 152 | stage ("Wait for fabric switches to get deployed") { |
| 153 | for(int i=0; i < config.fabric_switches.size(); i++) { |
| 154 | runFabricCmd("${config.head.ip}", |
| 155 | "${config.head.user}", |
| 156 | "${config.head.pass}", |
| 157 | "${config.fabric_switches[i].ip}", |
| 158 | "${config.fabric_switches[i].user}", |
| 159 | "${config.fabric_switches[i].pass}", |
| 160 | "sudo onl-onie-boot-mode install") |
| 161 | |
| 162 | runFabricCmd("${config.head.ip}", |
| 163 | "${config.head.user}", |
| 164 | "${config.head.pass}", |
| 165 | "${config.fabric_switches[i].ip}", |
| 166 | "${config.fabric_switches[i].user}", |
| 167 | "${config.fabric_switches[i].pass}", |
| 168 | "sudo reboot") |
Andy Bavier | 6c2f804 | 2017-09-19 13:52:30 -0700 | [diff] [blame] | 169 | |
| 170 | // Ensure that switches get provisioned after ONIE reinstall. |
| 171 | // Delete them if they were provisioned earlier. If the switches are not |
| 172 | // present in 'cord prov list', this command has no effect. |
| 173 | runCmd("${config.head.ip}", |
| 174 | "${config.head.user}", |
| 175 | "${config.head.pass}", |
| 176 | "cord prov delete ${config.fabric_switches[i].mac}") |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 177 | } |
| 178 | timeout(time: 45) { |
| 179 | waitUntil { |
| 180 | try { |
| 181 | def harvestCompleted = runCmd("${config.head.ip}", |
| 182 | "${config.head.user}", |
| 183 | "${config.head.pass}", |
| 184 | "cord harvest list '|' grep -i fabric '|' wc -l").trim() |
| 185 | return harvestCompleted.toInteger() == config.fabric_switches.size() |
| 186 | } catch (exception) { |
| 187 | return false |
| 188 | } |
| 189 | } |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | stage ("Wait for fabric switches to be provisioned") { |
| 194 | timeout(time:45) { |
| 195 | waitUntil { |
| 196 | try { |
| 197 | def provCompleted = 0 |
| 198 | for(int i=0; i < config.fabric_switches.size(); i++) { |
| 199 | def count = runCmd("${config.head.ip}", |
| 200 | "${config.head.user}", |
| 201 | "${config.head.pass}", |
| 202 | "cord prov list '|' grep -i ${config.fabric_switches[i].ip} '|' grep -i complete '|' wc -l").trim() |
| 203 | provCompleted = provCompleted + count.toInteger() |
| 204 | } |
| 205 | return provCompleted == config.fabric_switches.size() |
| 206 | } catch (exception) { |
| 207 | return false |
| 208 | } |
| 209 | } |
| 210 | } |
| 211 | } |
| 212 | } |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 213 | } |
Luca Prete | 9081fcc | 2017-09-12 14:37:33 -0700 | [diff] [blame] | 214 | |
| 215 | if (config.make_release == true) { |
| 216 | stage ("Trigger Build") { |
| 217 | url = 'https://jenkins.opencord.org/job/release-build/job/' + params.branch + '/build' |
| 218 | httpRequest authentication: 'auto-release', httpMode: 'POST', url: url, validResponseCodes: '201' |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | currentBuild.result = 'SUCCESS' |
| 223 | } catch (err) { |
| 224 | currentBuild.result = 'FAILURE' |
| 225 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false]) |
| 226 | } finally { |
| 227 | sh "make -C build clean-all || true" |
| 228 | sh "rm -rf *" |
| 229 | } |
| 230 | echo "RESULT: ${currentBuild.result}" |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 231 | } |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Returns a string used to bind IPs and MAC addresses, substituting the values |
| 236 | * given. |
| 237 | * |
| 238 | * @param counter the counter used to generate the host name |
| 239 | * @param mac the MAC address to substitute |
| 240 | * @param ip the IP address to substitute |
| 241 | */ |
| 242 | def createMACIPbindingStr(counter, mac, ip) { |
Andy Bavier | 6c2f804 | 2017-09-19 13:52:30 -0700 | [diff] [blame] | 243 | return """host fabric${counter} {'\n'hardware ethernet ${mac}';''\n'fixed-address ${ip}';''\n'}""" |
You Wang | cebbd31 | 2017-09-11 14:35:24 -0700 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | /** |
| 247 | * Runs a command on a remote host using sshpass. |
| 248 | * |
| 249 | * @param ip the node IP address |
| 250 | * @param user the node user name |
| 251 | * @param pass the node password |
| 252 | * @param command the command to run |
| 253 | * @return the output of the command |
| 254 | */ |
| 255 | def runCmd(ip, user, pass, command) { |
| 256 | return sh(returnStdout: true, script: "sshpass -p ${pass} ssh -oStrictHostKeyChecking=no -l ${user} ${ip} ${command}") |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * Runs a command on a fabric switch. |
| 261 | * |
| 262 | * @param headIp the head node IP address |
| 263 | * @param headUser the head node user name |
| 264 | * @param headPass the head node password |
| 265 | * @param ip the mgmt IP of the fabric switch, reachable from the head node |
| 266 | * @param user the mgmt user name of the fabric switch |
| 267 | * @param pass the mgmt password of the fabric switch |
| 268 | * @param command the command to run on the fabric switch |
| 269 | * @return the output of the command |
| 270 | */ |
| 271 | def runFabricCmd(headIp, headUser, headPass, ip, user, pass, command) { |
| 272 | return sh(returnStdout: true, script: "sshpass -p ${headPass} ssh -oStrictHostKeyChecking=no -l ${headUser} ${headIp} \"sshpass -p ${pass} ssh -oStrictHostKeyChecking=no -l ${user} ${ip} ${command}\"") |
| 273 | } |