Zsolt Haraszti | 2a792f6 | 2016-05-12 17:49:02 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 the original author or authors. |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
David K. Bainbridge | 59bdb54 | 2016-07-01 11:07:45 -0700 | [diff] [blame] | 16 | import org.opencord.gradle.rules.* |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 17 | import org.yaml.snakeyaml.Yaml |
Zsolt Haraszti | 2a792f6 | 2016-05-12 17:49:02 -0700 | [diff] [blame] | 18 | |
David K. Bainbridge | 59bdb54 | 2016-07-01 11:07:45 -0700 | [diff] [blame] | 19 | allprojects { |
| 20 | apply plugin: 'base' |
| 21 | apply plugin: 'de.gesellix.docker' |
| 22 | //apply plugin: 'com.tmiyamon.config' |
| 23 | |
| 24 | docker { |
| 25 | // dockerHost = System.env.DOCKER_HOST ?: 'unix:///var/run/docker.sock' |
| 26 | // dockerHost = System.env.DOCKER_HOST ?: 'https://192.168.99.100:2376' |
| 27 | // certPath = System.getProperty('docker.cert.path') ?: "${System.getProperty('user.home')}/.docker/machine/machines/default" |
| 28 | // authConfigPlain = [ |
| 29 | // "username" : "joe", |
| 30 | // "password" : "some-pw-as-needed", |
| 31 | // "email" : "joe@acme.com", |
| 32 | // "serveraddress" : "https://index.docker.io/v1/" |
| 33 | // ] |
| 34 | } |
| 35 | } |
| 36 | |
Zsolt Haraszti | 2a792f6 | 2016-05-12 17:49:02 -0700 | [diff] [blame] | 37 | ext { |
| 38 | |
David K. Bainbridge | 59bdb54 | 2016-07-01 11:07:45 -0700 | [diff] [blame] | 39 | // Upstream registry to simplify filling out the comps table below |
| 40 | upstreamReg = project.hasProperty('upstreamReg') ? project.getProperty('upstreamReg') : 'docker.io' |
| 41 | |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 42 | // Deployment target config file (yaml format); this can be overwritten from the command line |
| 43 | // using the -PdeployConfig=<file-path> syntax. |
| 44 | deployConfig = project.hasProperty('deployConfig') ? project.getProperty('deployConfig') : './config/default.yml' |
David K. Bainbridge | 19b8d27 | 2016-05-26 21:20:43 -0700 | [diff] [blame] | 45 | |
David K. Bainbridge | c4e0fc5 | 2016-11-14 12:03:35 -0800 | [diff] [blame] | 46 | println "Using deployment config: $deployConfig" |
| 47 | File configFile = new File(deployConfig) |
| 48 | def yaml = new Yaml() |
| 49 | config = yaml.load(configFile.newReader()) |
| 50 | |
| 51 | // Target registry to be used to publish docker images needed for deployment |
| 52 | targetReg = project.hasProperty('targetReg') |
| 53 | ? project.getProperty('targetReg') |
| 54 | : config.docker && config.docker.registry |
| 55 | ? config.docker.registry |
David K. Bainbridge | c9cacd3 | 2016-11-15 15:10:06 -0800 | [diff] [blame] | 56 | : config.seedServer.ip |
| 57 | ? config.seedServer.ip + ":5000" |
| 58 | : 'localhost:5000' |
David K. Bainbridge | c4e0fc5 | 2016-11-14 12:03:35 -0800 | [diff] [blame] | 59 | |
| 60 | // The tag used to tag the docker images push to the target registry |
| 61 | targetTag = project.hasProperty('targetTag') |
| 62 | ? project.getProperty('targetTag') |
| 63 | : config.docker && config.docker.imageVersion |
| 64 | ? config.docker.imageVersion |
| 65 | : 'candidate' |
| 66 | |
David K. Bainbridge | 59bdb54 | 2016-07-01 11:07:45 -0700 | [diff] [blame] | 67 | comps = [ |
| 68 | 'consul': [ |
| 69 | 'type': 'image', |
| 70 | 'upstream': upstreamReg, |
| 71 | 'name': 'consul', |
| 72 | 'digest': 'sha256:0dc990ff3c44d5b5395475bcc5ebdae4fc8b67f69e17942a8b9793b3df74d290' |
| 73 | ] |
| 74 | ] |
| 75 | } |
| 76 | |
| 77 | task fetchUpstreamImages { |
| 78 | comps.each { name, spec -> if (spec.type == 'image') { dependsOn "fetch" + name } } |
Zsolt Haraszti | 2a792f6 | 2016-05-12 17:49:02 -0700 | [diff] [blame] | 79 | } |
| 80 | |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 81 | // Switch Configuration Image |
| 82 | |
David K. Bainbridge | de0d926 | 2016-09-13 20:12:06 -0700 | [diff] [blame] | 83 | def getBuildTimestamp() { |
| 84 | def cal = Calendar.getInstance(TimeZone.getTimeZone("UTC")) |
| 85 | def date = cal.getTime() |
David K. Bainbridge | 151e845 | 2016-12-19 23:05:51 -0800 | [diff] [blame] | 86 | def formattedDate = date.format("yyyy-MM-dd'T'HH:mm:ssZ") |
David K. Bainbridge | de0d926 | 2016-09-13 20:12:06 -0700 | [diff] [blame] | 87 | return formattedDate |
| 88 | } |
| 89 | |
David K. Bainbridge | 151e845 | 2016-12-19 23:05:51 -0800 | [diff] [blame] | 90 | def getCommitDate = { -> |
| 91 | def stdOut = new ByteArrayOutputStream() |
| 92 | exec { |
| 93 | commandLine "git", "log", "--pretty=format:%cd", "--date=format:%FT%T%z", "-n", "1" |
| 94 | standardOutput = stdOut |
| 95 | } |
| 96 | return stdOut.toString().trim() |
| 97 | } |
| 98 | |
David K. Bainbridge | de0d926 | 2016-09-13 20:12:06 -0700 | [diff] [blame] | 99 | def getCommitHash = { -> |
| 100 | def hashStdOut = new ByteArrayOutputStream() |
| 101 | exec { |
David K. Bainbridge | 151e845 | 2016-12-19 23:05:51 -0800 | [diff] [blame] | 102 | commandLine "git", "log", "--pretty=format:%H", "-n", "1" |
David K. Bainbridge | de0d926 | 2016-09-13 20:12:06 -0700 | [diff] [blame] | 103 | standardOutput = hashStdOut |
| 104 | } |
| 105 | return hashStdOut.toString().trim() |
| 106 | } |
| 107 | |
| 108 | def getBranchName = { -> |
| 109 | def branchStdOut = new ByteArrayOutputStream() |
| 110 | exec { |
| 111 | commandLine "git", "rev-parse", "--abbrev-ref", "HEAD" |
| 112 | standardOutput = branchStdOut |
| 113 | } |
| 114 | return branchStdOut.toString().trim() |
| 115 | } |
David K. Bainbridge | 6e23ac8 | 2016-12-07 12:55:41 -0800 | [diff] [blame^] | 116 | |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 117 | task buildSwitchqImage(type: Exec) { |
David K. Bainbridge | 151e845 | 2016-12-19 23:05:51 -0800 | [diff] [blame] | 118 | commandLine "docker", 'build', '--label', 'org.label-schema.build-date=' + getBuildTimestamp(), '--label', 'org.label-schema.vcs-ref=' + getCommitHash(), '--label', 'org.label-schema.vcs-ref-date=' + getCommitDate(), '--label', 'org.label-schema.version=' + getBranchName(), '-t', 'cord-maas-switchq', './switchq' |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | task tagSwitchqImage(type: Exec) { |
| 122 | dependsOn buildSwitchqImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 123 | commandLine "docker", 'tag', 'cord-maas-switchq', "$targetReg/cord-maas-switchq:$targetTag" |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | task publishSwitchqImage(type: Exec) { |
| 127 | dependsOn tagSwitchqImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 128 | commandLine "docker", 'push', "$targetReg/cord-maas-switchq:$targetTag" |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 129 | } |
| 130 | |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 131 | // IP Allocator Image |
| 132 | |
David K. Bainbridge | 8bc905c | 2016-05-31 14:07:10 -0700 | [diff] [blame] | 133 | task buildAllocationImage(type: Exec) { |
David K. Bainbridge | 151e845 | 2016-12-19 23:05:51 -0800 | [diff] [blame] | 134 | commandLine "docker", 'build', '--label', 'org.label-schema.build-date=' + getBuildTimestamp(), '--label', 'org.label-schema.vcs-ref=' + getCommitHash(), '--label', 'org.label-schema.vcs-ref-date=' + getCommitDate(), '--label', 'org.label-schema.version=' + getBranchName(), '-t', 'cord-ip-allocator', './ip-allocator' |
David K. Bainbridge | 8bc905c | 2016-05-31 14:07:10 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | task tagAllocationImage(type: Exec) { |
David K. Bainbridge | f22dc06 | 2016-05-31 15:35:39 -0700 | [diff] [blame] | 138 | dependsOn buildAllocationImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 139 | commandLine "docker", 'tag', 'cord-ip-allocator', "$targetReg/cord-ip-allocator:$targetTag" |
David K. Bainbridge | 8bc905c | 2016-05-31 14:07:10 -0700 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | task publishAllocationImage(type: Exec) { |
David K. Bainbridge | f22dc06 | 2016-05-31 15:35:39 -0700 | [diff] [blame] | 143 | dependsOn tagAllocationImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 144 | commandLine "docker", 'push', "$targetReg/cord-ip-allocator:$targetTag" |
David K. Bainbridge | 8bc905c | 2016-05-31 14:07:10 -0700 | [diff] [blame] | 145 | } |
| 146 | |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 147 | // Provisioner Image |
| 148 | |
David K. Bainbridge | f0da873 | 2016-06-01 16:15:37 -0700 | [diff] [blame] | 149 | task buildProvisionerImage(type: Exec) { |
David K. Bainbridge | 151e845 | 2016-12-19 23:05:51 -0800 | [diff] [blame] | 150 | commandLine "docker", 'build', '--label', 'org.label-schema.build-date=' + getBuildTimestamp(), '--label', 'org.label-schema.vcs-ref=' + getCommitHash(), '--label', 'org.label-schema.vcs-ref-date=' + getCommitDate(), '--label', 'org.label-schema.version=' + getBranchName(), '-t', 'cord-provisioner', './provisioner' |
David K. Bainbridge | f0da873 | 2016-06-01 16:15:37 -0700 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | task tagProvisionerImage(type: Exec) { |
| 154 | dependsOn buildProvisionerImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 155 | commandLine "docker", 'tag', 'cord-provisioner', "$targetReg/cord-provisioner:$targetTag" |
David K. Bainbridge | f0da873 | 2016-06-01 16:15:37 -0700 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | task publishProvisionerImage(type: Exec) { |
| 159 | dependsOn tagProvisionerImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 160 | commandLine "docker", 'push', "$targetReg/cord-provisioner:$targetTag" |
David K. Bainbridge | f0da873 | 2016-06-01 16:15:37 -0700 | [diff] [blame] | 161 | } |
| 162 | |
gunjan5 | e9bdd1d | 2016-07-13 14:59:33 -0700 | [diff] [blame] | 163 | // Config Generator Image |
| 164 | |
| 165 | task buildConfigGeneratorImage(type: Exec) { |
David K. Bainbridge | 151e845 | 2016-12-19 23:05:51 -0800 | [diff] [blame] | 166 | commandLine "docker", 'build', '--label', 'org.label-schema.build-date=' + getBuildTimestamp(), '--label', 'org.label-schema.vcs-ref=' + getCommitHash(), '--label', 'org.label-schema.vcs-ref-date=' + getCommitDate(), '--label', 'org.label-schema.version=' + getBranchName(), '-t', 'config-generator', './config-generator' |
gunjan5 | e9bdd1d | 2016-07-13 14:59:33 -0700 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | task tagConfigGeneratorImage(type: Exec) { |
| 170 | dependsOn buildConfigGeneratorImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 171 | commandLine "docker", 'tag', 'config-generator', "$targetReg/config-generator:$targetTag" |
gunjan5 | e9bdd1d | 2016-07-13 14:59:33 -0700 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | task publishConfigGeneratorImage(type: Exec) { |
| 175 | dependsOn tagConfigGeneratorImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 176 | commandLine "docker", 'push', "$targetReg/config-generator:$targetTag" |
gunjan5 | e9bdd1d | 2016-07-13 14:59:33 -0700 | [diff] [blame] | 177 | } |
| 178 | |
David K. Bainbridge | 9d1e02d | 2016-06-22 09:22:16 -0700 | [diff] [blame] | 179 | // Automation Image |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 180 | |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 181 | task buildAutomationImage(type: Exec) { |
David K. Bainbridge | 151e845 | 2016-12-19 23:05:51 -0800 | [diff] [blame] | 182 | commandLine "docker", 'build', '--label', 'org.label-schema.build-date=' + getBuildTimestamp(), '--label', 'org.label-schema.vcs-ref=' + getCommitHash(), '--label', 'org.label-schema.vcs-ref-date=' + getCommitDate(), '--label', 'org.label-schema.version=' + getBranchName(), '-t', "cord-maas-automation", "-f", "./automation/Dockerfile", "./automation" |
David K. Bainbridge | efa951d | 2016-05-26 10:54:25 -0700 | [diff] [blame] | 183 | } |
| 184 | |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 185 | task tagAutomationImage(type: Exec) { |
| 186 | dependsOn buildAutomationImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 187 | commandLine "docker", 'tag', 'cord-maas-automation', "$targetReg/cord-maas-automation:$targetTag" |
Zsolt Haraszti | 2a792f6 | 2016-05-12 17:49:02 -0700 | [diff] [blame] | 188 | } |
| 189 | |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 190 | task publishAutomationImage(type: Exec) { |
| 191 | dependsOn tagAutomationImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 192 | commandLine "docker", 'push', "$targetReg/cord-maas-automation:$targetTag" |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 193 | } |
| 194 | |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 195 | // DHCP Harvester Images |
| 196 | |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 197 | task buildHarvesterImage(type: Exec) { |
David K. Bainbridge | 151e845 | 2016-12-19 23:05:51 -0800 | [diff] [blame] | 198 | commandLine "docker", 'build', '--label', 'org.label-schema.build-date=' + getBuildTimestamp(), '--label', 'org.label-schema.vcs-ref=' + getCommitHash(), '--label', 'org.label-schema.vcs-ref-date=' + getCommitDate(), '--label', 'org.label-schema.version=' + getBranchName(), '-t', "cord-dhcp-harvester", "./harvester" |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | task tagHarvesterImage(type: Exec) { |
| 202 | dependsOn buildHarvesterImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 203 | commandLine "docker", 'tag', 'cord-dhcp-harvester', "$targetReg/cord-dhcp-harvester:$targetTag" |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | task publishHarvesterImage(type: Exec) { |
| 207 | dependsOn tagHarvesterImage |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 208 | commandLine "docker", 'push', "$targetReg/cord-dhcp-harvester:$targetTag" |
Zsolt Haraszti | 2a792f6 | 2016-05-12 17:49:02 -0700 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | // ~~~~~~~~~~~~~~~~~~~ Global tasks ~~~~~~~~~~~~~~~~~~~~~~~ |
| 212 | |
alshabib | 462f625 | 2016-08-29 16:15:28 -0700 | [diff] [blame] | 213 | task updateDocker (type: Exec) { |
David K. Bainbridge | 59bdb54 | 2016-07-01 11:07:45 -0700 | [diff] [blame] | 214 | commandLine 'sudo', 'utils/enable-remote-docker-registry', "$targetReg" |
| 215 | } |
| 216 | |
Zsolt Haraszti | 2a792f6 | 2016-05-12 17:49:02 -0700 | [diff] [blame] | 217 | // To be used to fetch upstream binaries, clone repos, etc. |
| 218 | task fetch(type: Exec) { |
| 219 | // this is where we fetch upstream artifacts that we do not need internet for the build phase" |
| 220 | // Placeholdr example: |
David K. Bainbridge | 59bdb54 | 2016-07-01 11:07:45 -0700 | [diff] [blame] | 221 | dependsOn fetchUpstreamImages |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 222 | commandLine "docker", "pull", "golang:alpine" |
| 223 | commandLine "docker", "pull", "python:2.7-alpine" |
Zsolt Haraszti | 2a792f6 | 2016-05-12 17:49:02 -0700 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | // To be used to generate all needed binaries that need to be present on the target |
| 227 | // as docker images in the local docker runner. |
| 228 | task buildImages { |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 229 | dependsOn buildHarvesterImage |
David K. Bainbridge | 9d1e02d | 2016-06-22 09:22:16 -0700 | [diff] [blame] | 230 | dependsOn buildAutomationImage |
David K. Bainbridge | 8bc905c | 2016-05-31 14:07:10 -0700 | [diff] [blame] | 231 | dependsOn buildAllocationImage |
David K. Bainbridge | f0da873 | 2016-06-01 16:15:37 -0700 | [diff] [blame] | 232 | dependsOn buildProvisionerImage |
gunjan5 | e9bdd1d | 2016-07-13 14:59:33 -0700 | [diff] [blame] | 233 | dependsOn buildConfigGeneratorImage |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 234 | dependsOn buildSwitchqImage |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | task tagImages { |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 238 | dependsOn tagHarvesterImage |
David K. Bainbridge | 9d1e02d | 2016-06-22 09:22:16 -0700 | [diff] [blame] | 239 | dependsOn tagAutomationImage |
David K. Bainbridge | 8bc905c | 2016-05-31 14:07:10 -0700 | [diff] [blame] | 240 | dependsOn tagAllocationImage |
David K. Bainbridge | f0da873 | 2016-06-01 16:15:37 -0700 | [diff] [blame] | 241 | dependsOn tagProvisionerImage |
gunjan5 | e9bdd1d | 2016-07-13 14:59:33 -0700 | [diff] [blame] | 242 | dependsOn tagConfigGeneratorImage |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 243 | dependsOn tagSwitchqImage |
Zsolt Haraszti | 2a792f6 | 2016-05-12 17:49:02 -0700 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | task publish { |
alshabib | 462f625 | 2016-08-29 16:15:28 -0700 | [diff] [blame] | 247 | //FIXME: This works because the upstream project primes the nodes before running this. |
David K. Bainbridge | 59bdb54 | 2016-07-01 11:07:45 -0700 | [diff] [blame] | 248 | comps.each { name, spec -> if (spec.type == 'image') { dependsOn "publish" + name } } |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 249 | dependsOn publishHarvesterImage |
David K. Bainbridge | 9d1e02d | 2016-06-22 09:22:16 -0700 | [diff] [blame] | 250 | dependsOn publishAutomationImage |
David K. Bainbridge | 8bc905c | 2016-05-31 14:07:10 -0700 | [diff] [blame] | 251 | dependsOn publishAllocationImage |
David K. Bainbridge | f0da873 | 2016-06-01 16:15:37 -0700 | [diff] [blame] | 252 | dependsOn publishProvisionerImage |
gunjan5 | e9bdd1d | 2016-07-13 14:59:33 -0700 | [diff] [blame] | 253 | dependsOn publishConfigGeneratorImage |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 254 | dependsOn publishSwitchqImage |
David K. Bainbridge | efa951d | 2016-05-26 10:54:25 -0700 | [diff] [blame] | 255 | } |
| 256 | |
David K. Bainbridge | 59bdb54 | 2016-07-01 11:07:45 -0700 | [diff] [blame] | 257 | |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 258 | // ~~~~~~~~~~~~~~~~~~~ Deployment / Test Tasks ~~~~~~~~~~~~~~~~~~~~~~~ |
| 259 | |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 260 | List.metaClass.asParam = { prefix, sep -> |
| 261 | if (delegate.size() == 0) { |
| 262 | "" |
| 263 | } |
| 264 | String result = "--" + prefix + "=" |
| 265 | String p = "" |
| 266 | delegate.each { |
| 267 | result += p + "${it}" |
| 268 | p = sep |
| 269 | } |
| 270 | result |
David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 271 | } |
| 272 | |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 273 | List.metaClass.p = { value, name -> |
| 274 | if (value != null && value != "") { |
| 275 | delegate << name + "=" + value |
| 276 | } else { |
| 277 | delegate |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | List.metaClass.p = { spec -> |
| 282 | if (spec != null && spec != "") { |
| 283 | delegate += spec |
| 284 | } else { |
| 285 | delegate |
| 286 | } |
| 287 | } |
| 288 | |
alshabib | 462f625 | 2016-08-29 16:15:28 -0700 | [diff] [blame] | 289 | task prime (type: Exec) { |
David K. Bainbridge | f418170 | 2016-06-17 14:44:03 -0700 | [diff] [blame] | 290 | executable = "ansible-playbook" |
| 291 | args = ["-i", config.seedServer.ip + ','] |
| 292 | |
| 293 | if ( config.seedServer.user != null && config.seedServer.user != "" ) { |
| 294 | args = args << "--user=$config.seedServer.user" |
| 295 | } |
| 296 | |
David K. Bainbridge | 5ba01a9 | 2016-08-16 14:58:31 -0700 | [diff] [blame] | 297 | if ( config.debug ) { |
| 298 | args = args << "-vvvv" |
| 299 | } |
| 300 | |
David K. Bainbridge | f418170 | 2016-06-17 14:44:03 -0700 | [diff] [blame] | 301 | def extraVars = [] |
| 302 | if (config.seedServer) { |
| 303 | extraVars = extraVars.p(config.seedServer.extraVars) |
| 304 | .p(config.seedServer.password, "ansible_ssh_pass") |
| 305 | .p(config.seedServer.sudoPassword, "ansible_sudo_pass") |
| 306 | .p(config.seedServer.fabric_ip, "fabric_ip") |
David K. Bainbridge | fad8cee | 2016-11-22 12:39:14 -0800 | [diff] [blame] | 307 | .p(config.seedServer.fabric_range_low, "fabric_range_low") |
| 308 | .p(config.seedServer.fabric_range_high, "fabric_range_high") |
David K. Bainbridge | f418170 | 2016-06-17 14:44:03 -0700 | [diff] [blame] | 309 | .p(config.seedServer.management_ip, "management_ip") |
David K. Bainbridge | fad8cee | 2016-11-22 12:39:14 -0800 | [diff] [blame] | 310 | .p(config.seedServer.management_range_low, "management_range_low") |
| 311 | .p(config.seedServer.management_range_high, "management_range_high") |
David K. Bainbridge | e80fd39 | 2016-08-19 15:46:19 -0700 | [diff] [blame] | 312 | .p(config.seedServer.management_gw, "management_gw") |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 313 | .p(config.seedServer.management_bc, "management_bc") |
David K. Bainbridge | f418170 | 2016-06-17 14:44:03 -0700 | [diff] [blame] | 314 | .p(config.seedServer.management_network, "management_network") |
| 315 | .p(config.seedServer.management_iface, "management_iface") |
| 316 | .p(config.seedServer.external_ip, "external_ip") |
David K. Bainbridge | e80fd39 | 2016-08-19 15:46:19 -0700 | [diff] [blame] | 317 | .p(config.seedServer.external_gw, "external_gw") |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 318 | .p(config.seedServer.external_bc, "external_bc") |
David K. Bainbridge | f418170 | 2016-06-17 14:44:03 -0700 | [diff] [blame] | 319 | .p(config.seedServer.external_network, "external_network") |
| 320 | .p(config.seedServer.external_iface, "external_iface") |
David K. Bainbridge | f418170 | 2016-06-17 14:44:03 -0700 | [diff] [blame] | 321 | .p(config.seedServer.fabric_iface, "fabric_iface") |
| 322 | .p(config.seedServer.domain, "domain") |
David K. Bainbridge | fad8cee | 2016-11-22 12:39:14 -0800 | [diff] [blame] | 323 | .p(config.seedServer.virtualbox_support, "virtualbox_support") |
David K. Bainbridge | be58a0d | 2016-06-22 15:43:02 -0700 | [diff] [blame] | 324 | .p(config.seedServer.power_helper_user, "power_helper_user") |
| 325 | .p(config.seedServer.power_helper_host, "power_helper_host") |
| 326 | .p(config.seedServer.port, "ansible_ssh_port") |
David K. Bainbridge | f418170 | 2016-06-17 14:44:03 -0700 | [diff] [blame] | 327 | } |
| 328 | |
David K. Bainbridge | 8b17904 | 2016-11-30 15:38:42 -0800 | [diff] [blame] | 329 | if (config.passwords) { |
| 330 | extraVars = extraVars.p(config.passwords.compute_node, "password_compute_node") |
| 331 | .p(config.passwords.maas_admin, "password_maas_admin") |
| 332 | .p(config.passwords.maas_user, "password_maas_user") |
| 333 | } |
| 334 | |
David K. Bainbridge | f418170 | 2016-06-17 14:44:03 -0700 | [diff] [blame] | 335 | if (config.otherServers) { |
| 336 | extraVars = extraVars.p(config.otherServers.location, "prov_location") |
| 337 | .p(config.otherServers.rolesPath, "prov_role_path") |
| 338 | .p(config.otherServers.role, "prov_role") |
| 339 | } |
| 340 | |
David K. Bainbridge | c4e0fc5 | 2016-11-14 12:03:35 -0800 | [diff] [blame] | 341 | extraVars = extraVars.p("$targetReg", "deploy_docker_registry") |
| 342 | .p("$targetTag", "deploy_docker_tag") |
David K. Bainbridge | f418170 | 2016-06-17 14:44:03 -0700 | [diff] [blame] | 343 | |
David K. Bainbridge | 6e23ac8 | 2016-12-07 12:55:41 -0800 | [diff] [blame^] | 344 | // the password set on the compute node is skipped because this is being run against the |
| 345 | // head node and we don't want to change the head node password as this node was manualy |
David K. Bainbridge | 8b17904 | 2016-11-30 15:38:42 -0800 | [diff] [blame] | 346 | // set up. |
| 347 | def skipTags = [].p(config.seedServer.skipTags).p('set_compute_node_password') |
David K. Bainbridge | f418170 | 2016-06-17 14:44:03 -0700 | [diff] [blame] | 348 | |
| 349 | args = args.p(skipTags.asParam("skip-tags", ",")).p(extraVars.asParam("extra-vars", " ")) << "prime-node.yml" |
| 350 | } |
| 351 | |
alshabib | 462f625 | 2016-08-29 16:15:28 -0700 | [diff] [blame] | 352 | task deployBase(type: Exec) { |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 353 | executable = "ansible-playbook" |
David K. Bainbridge | 13c765c | 2016-05-26 11:24:22 -0700 | [diff] [blame] | 354 | args = ["-i", config.seedServer.ip + ','] |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 355 | |
David K. Bainbridge | 13c765c | 2016-05-26 11:24:22 -0700 | [diff] [blame] | 356 | if ( config.seedServer.user != null && config.seedServer.user != "" ) { |
| 357 | args = args << "--user=$config.seedServer.user" |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 358 | } |
| 359 | |
David K. Bainbridge | 5ba01a9 | 2016-08-16 14:58:31 -0700 | [diff] [blame] | 360 | |
| 361 | if ( config.debug ) { |
| 362 | args = args << "-vvvv" |
| 363 | } |
| 364 | |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 365 | def extraVars = [] |
David K. Bainbridge | 13c765c | 2016-05-26 11:24:22 -0700 | [diff] [blame] | 366 | if (config.seedServer) { |
| 367 | extraVars = extraVars.p(config.seedServer.extraVars) |
| 368 | .p(config.seedServer.password, "ansible_ssh_pass") |
| 369 | .p(config.seedServer.sudoPassword, "ansible_sudo_pass") |
| 370 | .p(config.seedServer.fabric_ip, "fabric_ip") |
David K. Bainbridge | fad8cee | 2016-11-22 12:39:14 -0800 | [diff] [blame] | 371 | .p(config.seedServer.fabric_range_low, "fabric_range_low") |
| 372 | .p(config.seedServer.fabric_range_high, "fabric_range_high") |
| 373 | .p(config.seedServer.management_ip, "management_ip") |
| 374 | .p(config.seedServer.management_range_low, "management_range_low") |
| 375 | .p(config.seedServer.management_range_high, "management_range_high") |
David K. Bainbridge | e80fd39 | 2016-08-19 15:46:19 -0700 | [diff] [blame] | 376 | .p(config.seedServer.management_gw, "management_gw") |
David K. Bainbridge | c82a446 | 2016-06-14 12:39:01 -0700 | [diff] [blame] | 377 | .p(config.seedServer.management_network, "management_network") |
David K. Bainbridge | fad8cee | 2016-11-22 12:39:14 -0800 | [diff] [blame] | 378 | .p(config.seedServer.management_iface, "management_iface") |
| 379 | .p(config.seedServer.external_ip, "external_ip") |
David K. Bainbridge | e80fd39 | 2016-08-19 15:46:19 -0700 | [diff] [blame] | 380 | .p(config.seedServer.external_gw, "external_gw") |
David K. Bainbridge | c82a446 | 2016-06-14 12:39:01 -0700 | [diff] [blame] | 381 | .p(config.seedServer.external_network, "external_network") |
| 382 | .p(config.seedServer.external_iface, "external_iface") |
David K. Bainbridge | fad8cee | 2016-11-22 12:39:14 -0800 | [diff] [blame] | 383 | .p(config.seedServer.fabric_iface, "fabric_iface") |
David K. Bainbridge | c82a446 | 2016-06-14 12:39:01 -0700 | [diff] [blame] | 384 | .p(config.seedServer.domain, "domain") |
David K. Bainbridge | be58a0d | 2016-06-22 15:43:02 -0700 | [diff] [blame] | 385 | .p(config.seedServer.virtualbox_support, "virtualbox_support") |
David K. Bainbridge | fad8cee | 2016-11-22 12:39:14 -0800 | [diff] [blame] | 386 | .p(config.seedServer.power_helper_user, "power_helper_user") |
| 387 | .p(config.seedServer.power_helper_host, "power_helper_host") |
David K. Bainbridge | be58a0d | 2016-06-22 15:43:02 -0700 | [diff] [blame] | 388 | .p(config.seedServer.port, "ansible_ssh_port") |
David K. Bainbridge | 6ea57c1 | 2016-06-06 23:29:12 -0700 | [diff] [blame] | 389 | } |
| 390 | |
David K. Bainbridge | 8b17904 | 2016-11-30 15:38:42 -0800 | [diff] [blame] | 391 | if (config.passwords) { |
| 392 | extraVars = extraVars.p(config.passwords.compute_node, "password_compute_node") |
| 393 | .p(config.passwords.maas_admin, "password_maas_admin") |
| 394 | .p(config.passwords.maas_user, "password_maas_user") |
| 395 | } |
| 396 | |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 397 | if (config.otherServers) { |
| 398 | extraVars = extraVars.p(config.otherServers.location, "prov_location") |
| 399 | .p(config.otherServers.rolesPath, "prov_role_path") |
| 400 | .p(config.otherServers.role, "prov_role") |
| 401 | } |
| 402 | |
David K. Bainbridge | c4e0fc5 | 2016-11-14 12:03:35 -0800 | [diff] [blame] | 403 | extraVars = extraVars.p("$targetReg", "deploy_docker_registry") |
| 404 | .p("$targetTag", "deploy_docker_tag") |
David K. Bainbridge | 97ee805 | 2016-06-14 00:52:07 -0700 | [diff] [blame] | 405 | |
David K. Bainbridge | 8b17904 | 2016-11-30 15:38:42 -0800 | [diff] [blame] | 406 | // the password set on the compute node is skipped because this is being run against the |
| 407 | // head node and we don't want to change the head node password as this node was manualy |
| 408 | // set up. |
| 409 | def skipTags = [].p(config.seedServer.skipTags).p('set_compute_node_password') |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 410 | |
| 411 | args = args.p(skipTags.asParam("skip-tags", ",")).p(extraVars.asParam("extra-vars", " ")) << "head-node.yml" |
David K. Bainbridge | 10b0c11 | 2016-05-24 13:17:23 -0700 | [diff] [blame] | 412 | } |
alshabib | 462f625 | 2016-08-29 16:15:28 -0700 | [diff] [blame] | 413 | |
| 414 | prime.dependsOn { |
| 415 | updateDocker |
| 416 | } |
| 417 | |
| 418 | tasks.addRule(new DockerFetchRule(project)) |
| 419 | tasks.addRule(new DockerPublishRule(project, project(':maas').prime)) |
| 420 | tasks.addRule(new DockerTagRule(project)) |
| 421 | |
| 422 | |