blob: d85ad1aa0509e8e156c6f6bdee77e28fecb88cee [file] [log] [blame]
Zsolt Haraszti2a792f62016-05-12 17:49:02 -07001/*
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. Bainbridge59bdb542016-07-01 11:07:45 -070016import org.opencord.gradle.rules.*
David K. Bainbridge10b0c112016-05-24 13:17:23 -070017import org.yaml.snakeyaml.Yaml
Zsolt Haraszti2a792f62016-05-12 17:49:02 -070018
David K. Bainbridge59bdb542016-07-01 11:07:45 -070019allprojects {
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 Haraszti2a792f62016-05-12 17:49:02 -070037ext {
38
David K. Bainbridge59bdb542016-07-01 11:07:45 -070039 // Upstream registry to simplify filling out the comps table below
40 upstreamReg = project.hasProperty('upstreamReg') ? project.getProperty('upstreamReg') : 'docker.io'
41
David K. Bainbridge10b0c112016-05-24 13:17:23 -070042 // 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. Bainbridge19b8d272016-05-26 21:20:43 -070045
David K. Bainbridgec4e0fc52016-11-14 12:03:35 -080046 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. Bainbridgec9cacd32016-11-15 15:10:06 -080056 : config.seedServer.ip
57 ? config.seedServer.ip + ":5000"
58 : 'localhost:5000'
David K. Bainbridgec4e0fc52016-11-14 12:03:35 -080059
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. Bainbridge59bdb542016-07-01 11:07:45 -070067 comps = [
68 'consul': [
69 'type': 'image',
70 'upstream': upstreamReg,
71 'name': 'consul',
72 'digest': 'sha256:0dc990ff3c44d5b5395475bcc5ebdae4fc8b67f69e17942a8b9793b3df74d290'
73 ]
74 ]
75}
76
77task fetchUpstreamImages {
78 comps.each { name, spec -> if (spec.type == 'image') { dependsOn "fetch" + name } }
Zsolt Haraszti2a792f62016-05-12 17:49:02 -070079}
80
David K. Bainbridge97ee8052016-06-14 00:52:07 -070081// Switch Configuration Image
82
David K. Bainbridgede0d9262016-09-13 20:12:06 -070083def getBuildTimestamp() {
84 def cal = Calendar.getInstance(TimeZone.getTimeZone("UTC"))
85 def date = cal.getTime()
David K. Bainbridge151e8452016-12-19 23:05:51 -080086 def formattedDate = date.format("yyyy-MM-dd'T'HH:mm:ssZ")
David K. Bainbridgede0d9262016-09-13 20:12:06 -070087 return formattedDate
88}
89
David K. Bainbridge151e8452016-12-19 23:05:51 -080090def 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. Bainbridgede0d9262016-09-13 20:12:06 -070099def getCommitHash = { ->
100 def hashStdOut = new ByteArrayOutputStream()
101 exec {
David K. Bainbridge151e8452016-12-19 23:05:51 -0800102 commandLine "git", "log", "--pretty=format:%H", "-n", "1"
David K. Bainbridgede0d9262016-09-13 20:12:06 -0700103 standardOutput = hashStdOut
104 }
105 return hashStdOut.toString().trim()
106}
107
David K. Bainbridged4e3f622017-01-12 14:07:54 -0800108def isModified = { ->
109 def statusOut = new ByteArrayOutputStream()
110 def branchesOut = new ByteArrayOutputStream()
David K. Bainbridgede0d9262016-09-13 20:12:06 -0700111 exec {
David K. Bainbridged4e3f622017-01-12 14:07:54 -0800112 commandLine "bash", "-c", "repo --color=never --no-pager status . | tail -n +2 | wc -l"
113 standardOutput = statusOut
David K. Bainbridgede0d9262016-09-13 20:12:06 -0700114 }
David K. Bainbridged4e3f622017-01-12 14:07:54 -0800115 exec {
116 commandLine "bash", "-c", "repo --color=never --no-pager branches | wc -l"
117 standardOutput = branchesOut
118 }
119 def statusVal = statusOut.toString().trim()
120 def branchesVal = branchesOut.toString().trim()
121
122 return statusVal != "0" || branchesVal != "0"
123}
124
125def getBranchName = { ->
126 def stdout = new ByteArrayOutputStream()
127 exec {
128 commandLine "bash", "-c", "repo --color=never --no-pager info -l -o | grep 'Manifest branch:' | awk '{print \$NF}'"
129 standardOutput = stdout
130 }
131 def val = stdout.toString().trim()
132 if ( isModified() != "0" ) {
133 val += '[modified]'
134 }
135 return val
David K. Bainbridgede0d9262016-09-13 20:12:06 -0700136}
David K. Bainbridge6e23ac82016-12-07 12:55:41 -0800137
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700138task buildSwitchqImage(type: Exec) {
David K. Bainbridge151e8452016-12-19 23:05:51 -0800139 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. Bainbridge97ee8052016-06-14 00:52:07 -0700140}
141
142task tagSwitchqImage(type: Exec) {
143 dependsOn buildSwitchqImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700144 commandLine "docker", 'tag', 'cord-maas-switchq', "$targetReg/cord-maas-switchq:$targetTag"
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700145}
146
147task publishSwitchqImage(type: Exec) {
148 dependsOn tagSwitchqImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700149 commandLine "docker", 'push', "$targetReg/cord-maas-switchq:$targetTag"
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700150}
151
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700152// IP Allocator Image
153
David K. Bainbridge8bc905c2016-05-31 14:07:10 -0700154task buildAllocationImage(type: Exec) {
David K. Bainbridge151e8452016-12-19 23:05:51 -0800155 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. Bainbridge8bc905c2016-05-31 14:07:10 -0700156}
157
158task tagAllocationImage(type: Exec) {
David K. Bainbridgef22dc062016-05-31 15:35:39 -0700159 dependsOn buildAllocationImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700160 commandLine "docker", 'tag', 'cord-ip-allocator', "$targetReg/cord-ip-allocator:$targetTag"
David K. Bainbridge8bc905c2016-05-31 14:07:10 -0700161}
162
163task publishAllocationImage(type: Exec) {
David K. Bainbridgef22dc062016-05-31 15:35:39 -0700164 dependsOn tagAllocationImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700165 commandLine "docker", 'push', "$targetReg/cord-ip-allocator:$targetTag"
David K. Bainbridge8bc905c2016-05-31 14:07:10 -0700166}
167
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700168// Provisioner Image
169
David K. Bainbridgef0da8732016-06-01 16:15:37 -0700170task buildProvisionerImage(type: Exec) {
David K. Bainbridge151e8452016-12-19 23:05:51 -0800171 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. Bainbridgef0da8732016-06-01 16:15:37 -0700172}
173
174task tagProvisionerImage(type: Exec) {
175 dependsOn buildProvisionerImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700176 commandLine "docker", 'tag', 'cord-provisioner', "$targetReg/cord-provisioner:$targetTag"
David K. Bainbridgef0da8732016-06-01 16:15:37 -0700177}
178
179task publishProvisionerImage(type: Exec) {
180 dependsOn tagProvisionerImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700181 commandLine "docker", 'push', "$targetReg/cord-provisioner:$targetTag"
David K. Bainbridgef0da8732016-06-01 16:15:37 -0700182}
183
gunjan5e9bdd1d2016-07-13 14:59:33 -0700184// Config Generator Image
185
186task buildConfigGeneratorImage(type: Exec) {
David K. Bainbridge151e8452016-12-19 23:05:51 -0800187 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'
gunjan5e9bdd1d2016-07-13 14:59:33 -0700188}
189
190task tagConfigGeneratorImage(type: Exec) {
191 dependsOn buildConfigGeneratorImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700192 commandLine "docker", 'tag', 'config-generator', "$targetReg/config-generator:$targetTag"
gunjan5e9bdd1d2016-07-13 14:59:33 -0700193}
194
195task publishConfigGeneratorImage(type: Exec) {
196 dependsOn tagConfigGeneratorImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700197 commandLine "docker", 'push', "$targetReg/config-generator:$targetTag"
gunjan5e9bdd1d2016-07-13 14:59:33 -0700198}
199
David K. Bainbridge9d1e02d2016-06-22 09:22:16 -0700200// Automation Image
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700201
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700202task buildAutomationImage(type: Exec) {
David K. Bainbridge151e8452016-12-19 23:05:51 -0800203 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. Bainbridgeefa951d2016-05-26 10:54:25 -0700204}
205
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700206task tagAutomationImage(type: Exec) {
207 dependsOn buildAutomationImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700208 commandLine "docker", 'tag', 'cord-maas-automation', "$targetReg/cord-maas-automation:$targetTag"
Zsolt Haraszti2a792f62016-05-12 17:49:02 -0700209}
210
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700211task publishAutomationImage(type: Exec) {
212 dependsOn tagAutomationImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700213 commandLine "docker", 'push', "$targetReg/cord-maas-automation:$targetTag"
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700214}
215
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700216// DHCP Harvester Images
217
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700218task buildHarvesterImage(type: Exec) {
David K. Bainbridge151e8452016-12-19 23:05:51 -0800219 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. Bainbridgeb5415042016-05-13 17:06:10 -0700220}
221
222task tagHarvesterImage(type: Exec) {
223 dependsOn buildHarvesterImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700224 commandLine "docker", 'tag', 'cord-dhcp-harvester', "$targetReg/cord-dhcp-harvester:$targetTag"
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700225}
226
227task publishHarvesterImage(type: Exec) {
228 dependsOn tagHarvesterImage
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700229 commandLine "docker", 'push', "$targetReg/cord-dhcp-harvester:$targetTag"
Zsolt Haraszti2a792f62016-05-12 17:49:02 -0700230}
231
232// ~~~~~~~~~~~~~~~~~~~ Global tasks ~~~~~~~~~~~~~~~~~~~~~~~
233
alshabib462f6252016-08-29 16:15:28 -0700234task updateDocker (type: Exec) {
David K. Bainbridge59bdb542016-07-01 11:07:45 -0700235 commandLine 'sudo', 'utils/enable-remote-docker-registry', "$targetReg"
236}
237
Zsolt Haraszti2a792f62016-05-12 17:49:02 -0700238// To be used to fetch upstream binaries, clone repos, etc.
239task fetch(type: Exec) {
240 // this is where we fetch upstream artifacts that we do not need internet for the build phase"
241 // Placeholdr example:
David K. Bainbridge59bdb542016-07-01 11:07:45 -0700242 dependsOn fetchUpstreamImages
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700243 commandLine "docker", "pull", "golang:alpine"
244 commandLine "docker", "pull", "python:2.7-alpine"
Zsolt Haraszti2a792f62016-05-12 17:49:02 -0700245}
246
247// To be used to generate all needed binaries that need to be present on the target
248// as docker images in the local docker runner.
249task buildImages {
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700250 dependsOn buildHarvesterImage
David K. Bainbridge9d1e02d2016-06-22 09:22:16 -0700251 dependsOn buildAutomationImage
David K. Bainbridge8bc905c2016-05-31 14:07:10 -0700252 dependsOn buildAllocationImage
David K. Bainbridgef0da8732016-06-01 16:15:37 -0700253 dependsOn buildProvisionerImage
gunjan5e9bdd1d2016-07-13 14:59:33 -0700254 dependsOn buildConfigGeneratorImage
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700255 dependsOn buildSwitchqImage
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700256}
257
258task tagImages {
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700259 dependsOn tagHarvesterImage
David K. Bainbridge9d1e02d2016-06-22 09:22:16 -0700260 dependsOn tagAutomationImage
David K. Bainbridge8bc905c2016-05-31 14:07:10 -0700261 dependsOn tagAllocationImage
David K. Bainbridgef0da8732016-06-01 16:15:37 -0700262 dependsOn tagProvisionerImage
gunjan5e9bdd1d2016-07-13 14:59:33 -0700263 dependsOn tagConfigGeneratorImage
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700264 dependsOn tagSwitchqImage
Zsolt Haraszti2a792f62016-05-12 17:49:02 -0700265}
266
267task publish {
alshabib462f6252016-08-29 16:15:28 -0700268 //FIXME: This works because the upstream project primes the nodes before running this.
David K. Bainbridge59bdb542016-07-01 11:07:45 -0700269 comps.each { name, spec -> if (spec.type == 'image') { dependsOn "publish" + name } }
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700270 dependsOn publishHarvesterImage
David K. Bainbridge9d1e02d2016-06-22 09:22:16 -0700271 dependsOn publishAutomationImage
David K. Bainbridge8bc905c2016-05-31 14:07:10 -0700272 dependsOn publishAllocationImage
David K. Bainbridgef0da8732016-06-01 16:15:37 -0700273 dependsOn publishProvisionerImage
gunjan5e9bdd1d2016-07-13 14:59:33 -0700274 dependsOn publishConfigGeneratorImage
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700275 dependsOn publishSwitchqImage
David K. Bainbridgeefa951d2016-05-26 10:54:25 -0700276}
277
David K. Bainbridge59bdb542016-07-01 11:07:45 -0700278
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700279// ~~~~~~~~~~~~~~~~~~~ Deployment / Test Tasks ~~~~~~~~~~~~~~~~~~~~~~~
280
David K. Bainbridge10b0c112016-05-24 13:17:23 -0700281List.metaClass.asParam = { prefix, sep ->
282 if (delegate.size() == 0) {
283 ""
284 }
285 String result = "--" + prefix + "="
286 String p = ""
287 delegate.each {
288 result += p + "${it}"
289 p = sep
290 }
291 result
David K. Bainbridgeb5415042016-05-13 17:06:10 -0700292}
293
David K. Bainbridge10b0c112016-05-24 13:17:23 -0700294List.metaClass.p = { value, name ->
295 if (value != null && value != "") {
296 delegate << name + "=" + value
297 } else {
298 delegate
299 }
300}
301
302List.metaClass.p = { spec ->
303 if (spec != null && spec != "") {
304 delegate += spec
305 } else {
306 delegate
307 }
308}
309
alshabib462f6252016-08-29 16:15:28 -0700310task prime (type: Exec) {
David K. Bainbridgef4181702016-06-17 14:44:03 -0700311 executable = "ansible-playbook"
312 args = ["-i", config.seedServer.ip + ',']
313
314 if ( config.seedServer.user != null && config.seedServer.user != "" ) {
315 args = args << "--user=$config.seedServer.user"
316 }
317
David K. Bainbridge5ba01a92016-08-16 14:58:31 -0700318 if ( config.debug ) {
319 args = args << "-vvvv"
320 }
321
David K. Bainbridgef4181702016-06-17 14:44:03 -0700322 def extraVars = []
323 if (config.seedServer) {
324 extraVars = extraVars.p(config.seedServer.extraVars)
325 .p(config.seedServer.password, "ansible_ssh_pass")
326 .p(config.seedServer.sudoPassword, "ansible_sudo_pass")
327 .p(config.seedServer.fabric_ip, "fabric_ip")
David K. Bainbridgefad8cee2016-11-22 12:39:14 -0800328 .p(config.seedServer.fabric_range_low, "fabric_range_low")
329 .p(config.seedServer.fabric_range_high, "fabric_range_high")
David K. Bainbridgef4181702016-06-17 14:44:03 -0700330 .p(config.seedServer.management_ip, "management_ip")
David K. Bainbridgefad8cee2016-11-22 12:39:14 -0800331 .p(config.seedServer.management_range_low, "management_range_low")
332 .p(config.seedServer.management_range_high, "management_range_high")
David K. Bainbridgee80fd392016-08-19 15:46:19 -0700333 .p(config.seedServer.management_gw, "management_gw")
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700334 .p(config.seedServer.management_bc, "management_bc")
David K. Bainbridgef4181702016-06-17 14:44:03 -0700335 .p(config.seedServer.management_network, "management_network")
336 .p(config.seedServer.management_iface, "management_iface")
337 .p(config.seedServer.external_ip, "external_ip")
David K. Bainbridgee80fd392016-08-19 15:46:19 -0700338 .p(config.seedServer.external_gw, "external_gw")
David K. Bainbridgea677d4e2016-09-11 20:01:32 -0700339 .p(config.seedServer.external_bc, "external_bc")
David K. Bainbridgef4181702016-06-17 14:44:03 -0700340 .p(config.seedServer.external_network, "external_network")
341 .p(config.seedServer.external_iface, "external_iface")
David K. Bainbridgef4181702016-06-17 14:44:03 -0700342 .p(config.seedServer.fabric_iface, "fabric_iface")
343 .p(config.seedServer.domain, "domain")
David K. Bainbridgefad8cee2016-11-22 12:39:14 -0800344 .p(config.seedServer.virtualbox_support, "virtualbox_support")
David K. Bainbridgebe58a0d2016-06-22 15:43:02 -0700345 .p(config.seedServer.power_helper_user, "power_helper_user")
346 .p(config.seedServer.power_helper_host, "power_helper_host")
347 .p(config.seedServer.port, "ansible_ssh_port")
David K. Bainbridgef4181702016-06-17 14:44:03 -0700348 }
349
David K. Bainbridge8b179042016-11-30 15:38:42 -0800350 if (config.passwords) {
351 extraVars = extraVars.p(config.passwords.compute_node, "password_compute_node")
352 .p(config.passwords.maas_admin, "password_maas_admin")
353 .p(config.passwords.maas_user, "password_maas_user")
354 }
355
David K. Bainbridgef4181702016-06-17 14:44:03 -0700356 if (config.otherServers) {
357 extraVars = extraVars.p(config.otherServers.location, "prov_location")
358 .p(config.otherServers.rolesPath, "prov_role_path")
359 .p(config.otherServers.role, "prov_role")
360 }
361
David K. Bainbridgec4e0fc52016-11-14 12:03:35 -0800362 extraVars = extraVars.p("$targetReg", "deploy_docker_registry")
363 .p("$targetTag", "deploy_docker_tag")
David K. Bainbridgef4181702016-06-17 14:44:03 -0700364
David K. Bainbridge6e23ac82016-12-07 12:55:41 -0800365 // the password set on the compute node is skipped because this is being run against the
366 // head node and we don't want to change the head node password as this node was manualy
David K. Bainbridge8b179042016-11-30 15:38:42 -0800367 // set up.
368 def skipTags = [].p(config.seedServer.skipTags).p('set_compute_node_password')
David K. Bainbridgef4181702016-06-17 14:44:03 -0700369
370 args = args.p(skipTags.asParam("skip-tags", ",")).p(extraVars.asParam("extra-vars", " ")) << "prime-node.yml"
371}
372
alshabib462f6252016-08-29 16:15:28 -0700373task deployBase(type: Exec) {
David K. Bainbridge10b0c112016-05-24 13:17:23 -0700374 executable = "ansible-playbook"
David K. Bainbridge13c765c2016-05-26 11:24:22 -0700375 args = ["-i", config.seedServer.ip + ',']
David K. Bainbridge10b0c112016-05-24 13:17:23 -0700376
David K. Bainbridge13c765c2016-05-26 11:24:22 -0700377 if ( config.seedServer.user != null && config.seedServer.user != "" ) {
378 args = args << "--user=$config.seedServer.user"
David K. Bainbridge10b0c112016-05-24 13:17:23 -0700379 }
380
David K. Bainbridge5ba01a92016-08-16 14:58:31 -0700381
382 if ( config.debug ) {
383 args = args << "-vvvv"
384 }
385
David K. Bainbridge10b0c112016-05-24 13:17:23 -0700386 def extraVars = []
David K. Bainbridge13c765c2016-05-26 11:24:22 -0700387 if (config.seedServer) {
388 extraVars = extraVars.p(config.seedServer.extraVars)
389 .p(config.seedServer.password, "ansible_ssh_pass")
390 .p(config.seedServer.sudoPassword, "ansible_sudo_pass")
391 .p(config.seedServer.fabric_ip, "fabric_ip")
David K. Bainbridgefad8cee2016-11-22 12:39:14 -0800392 .p(config.seedServer.fabric_range_low, "fabric_range_low")
393 .p(config.seedServer.fabric_range_high, "fabric_range_high")
394 .p(config.seedServer.management_ip, "management_ip")
395 .p(config.seedServer.management_range_low, "management_range_low")
396 .p(config.seedServer.management_range_high, "management_range_high")
David K. Bainbridgee80fd392016-08-19 15:46:19 -0700397 .p(config.seedServer.management_gw, "management_gw")
David K. Bainbridgec82a4462016-06-14 12:39:01 -0700398 .p(config.seedServer.management_network, "management_network")
David K. Bainbridgefad8cee2016-11-22 12:39:14 -0800399 .p(config.seedServer.management_iface, "management_iface")
400 .p(config.seedServer.external_ip, "external_ip")
David K. Bainbridgee80fd392016-08-19 15:46:19 -0700401 .p(config.seedServer.external_gw, "external_gw")
David K. Bainbridgec82a4462016-06-14 12:39:01 -0700402 .p(config.seedServer.external_network, "external_network")
403 .p(config.seedServer.external_iface, "external_iface")
David K. Bainbridgefad8cee2016-11-22 12:39:14 -0800404 .p(config.seedServer.fabric_iface, "fabric_iface")
David K. Bainbridgec82a4462016-06-14 12:39:01 -0700405 .p(config.seedServer.domain, "domain")
David K. Bainbridgebe58a0d2016-06-22 15:43:02 -0700406 .p(config.seedServer.virtualbox_support, "virtualbox_support")
David K. Bainbridgefad8cee2016-11-22 12:39:14 -0800407 .p(config.seedServer.power_helper_user, "power_helper_user")
408 .p(config.seedServer.power_helper_host, "power_helper_host")
David K. Bainbridgebe58a0d2016-06-22 15:43:02 -0700409 .p(config.seedServer.port, "ansible_ssh_port")
David K. Bainbridge6ea57c12016-06-06 23:29:12 -0700410 }
411
David K. Bainbridge8b179042016-11-30 15:38:42 -0800412 if (config.passwords) {
413 extraVars = extraVars.p(config.passwords.compute_node, "password_compute_node")
414 .p(config.passwords.maas_admin, "password_maas_admin")
415 .p(config.passwords.maas_user, "password_maas_user")
416 }
417
David K. Bainbridge10b0c112016-05-24 13:17:23 -0700418 if (config.otherServers) {
419 extraVars = extraVars.p(config.otherServers.location, "prov_location")
420 .p(config.otherServers.rolesPath, "prov_role_path")
421 .p(config.otherServers.role, "prov_role")
422 }
423
David K. Bainbridgec4e0fc52016-11-14 12:03:35 -0800424 extraVars = extraVars.p("$targetReg", "deploy_docker_registry")
425 .p("$targetTag", "deploy_docker_tag")
David K. Bainbridge97ee8052016-06-14 00:52:07 -0700426
David K. Bainbridge8b179042016-11-30 15:38:42 -0800427 // the password set on the compute node is skipped because this is being run against the
428 // head node and we don't want to change the head node password as this node was manualy
429 // set up.
430 def skipTags = [].p(config.seedServer.skipTags).p('set_compute_node_password')
David K. Bainbridge10b0c112016-05-24 13:17:23 -0700431
432 args = args.p(skipTags.asParam("skip-tags", ",")).p(extraVars.asParam("extra-vars", " ")) << "head-node.yml"
David K. Bainbridge10b0c112016-05-24 13:17:23 -0700433}
alshabib462f6252016-08-29 16:15:28 -0700434
435prime.dependsOn {
436 updateDocker
437}
438
439tasks.addRule(new DockerFetchRule(project))
440tasks.addRule(new DockerPublishRule(project, project(':maas').prime))
441tasks.addRule(new DockerTagRule(project))
442
443