blob: b09b4929018119b2ca5c59a0651a2c773e53c4e3 [file] [log] [blame]
Zsolt Harasztiec7df102016-05-05 13:34:18 -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 */
16
Zsolt Haraszti0b790aa2016-05-12 22:33:14 -070017import org.opencord.gradle.rules.*
Zsolt Harasztiec7df102016-05-05 13:34:18 -070018import org.yaml.snakeyaml.Yaml
19
20allprojects {
21 apply plugin: 'base'
22 apply plugin: 'de.gesellix.docker'
23 //apply plugin: 'com.tmiyamon.config'
24
25 docker {
26 // dockerHost = System.env.DOCKER_HOST ?: 'unix:///var/run/docker.sock'
27 // dockerHost = System.env.DOCKER_HOST ?: 'https://192.168.99.100:2376'
28 // certPath = System.getProperty('docker.cert.path') ?: "${System.getProperty('user.home')}/.docker/machine/machines/default"
29 // authConfigPlain = [
30 // "username" : "joe",
31 // "password" : "some-pw-as-needed",
32 // "email" : "joe@acme.com",
33 // "serveraddress" : "https://index.docker.io/v1/"
34 // ]
35 }
36}
37
38ext {
39
40 // Upstream registry to simplify filling out the comps table below
Zsolt Harasztia9f72502016-05-12 16:07:03 -070041 upstreamReg = project.hasProperty('upstreamReg') ? project.getProperty('upstreamReg') : 'docker.io'
Zsolt Harasztiec7df102016-05-05 13:34:18 -070042
43 // Target registry to be used to publish docker images needed for deployment
Zsolt Harasztia9f72502016-05-12 16:07:03 -070044 targetReg = project.hasProperty('targetReg') ? project.getProperty('targetReg') : 'localhost:5000'
Zsolt Harasztiec7df102016-05-05 13:34:18 -070045
46 // The tag used to tag the docker images push to the target registry
Zsolt Harasztia9f72502016-05-12 16:07:03 -070047 targetTag = project.hasProperty('targetTag') ? project.getProperty('targetTag') : 'candidate'
Zsolt Harasztiec7df102016-05-05 13:34:18 -070048
49 // Component table
50 comps = [
Zsolt Haraszti3dbe6162016-05-12 12:25:56 -070051 'maas': [
52 'type': 'gitmodule',
53 'upstream': '../maas',
54 'branch': 'master',
55 'tag': null,
56 'componentDir': './components/maas'
57 ],
Zsolt Harasztifac9f192016-06-02 18:20:06 -070058 'cord-tester': [
59 'type': 'gitmodule',
60 'upstream': '../cord-tester',
61 'branch': 'master',
62 'tag': null,
63 'componentDir': './components/cord-tester'
64 ],
Zsolt Haraszti7fdeaf02016-06-03 09:12:28 -070065 'cord-onos-publisher': [
66 'type': 'gitmodule',
67 'upstream': '../cord-onos-publisher',
68 'branch': 'master',
69 'tag': null,
70 'componentDir': './components/cord-onos-publisher'
71 ],
Andy Bavierfe2b4072016-07-06 19:13:55 -040072 'platform-install': [
73 'type': 'gitmodule',
74 'upstream': '../platform-install',
75 'branch': 'master',
76 'tag': null,
77 'componentDir': './components/platform-install'
78 ],
David K. Bainbridge73701e42016-07-13 22:27:12 -070079 'onosproject/onos': [
80 'type': 'image',
81 'upstream': upstreamReg,
82 'name': 'onosproject/onos',
83 'digest': 'sha256:6c310b6bc798f745977973c8c883d3dd1eb250fd124ae4d627fd98a69efb5afc'
84 ],
Zsolt Haraszti3dbe6162016-05-12 12:25:56 -070085 'nginx': [
86 'type': 'image',
87 'upstream': upstreamReg,
88 'name': 'nginx',
89 'digest': 'sha256:b555f8c64ab4e85405e0d8b03f759b73ce88deb802892a3b155ef55e3e832806'
90 ],
91 'swarm': [
92 'type': 'image',
93 'upstream': upstreamReg,
94 'name': 'swarm',
95 'digest': 'sha256:6ca9b40980e2fcdcd229900ec8933f3e92c14ead22c9404cb09736cb4f3a9248'
96 ],
Zsolt Harasztiec7df102016-05-05 13:34:18 -070097 ]
98
99 // Deployment target config file (yaml format); this can be overwritten from the command line
100 // using the -PdeployConfig=<file-path> syntax.
Zsolt Harasztia9f72502016-05-12 16:07:03 -0700101 deployConfig = project.hasProperty('deployConfig') ? project.getProperty('deployConfig') : './config/default.yml'
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700102
103}
104
alshabib00c4b5d2016-06-17 17:26:10 -0700105// ------------- PlaceHolders ----------------
106
107task updateDocker (type: Exec) {
108 commandLine 'sudo', 'utils/enable-remote-docker-registry', "$targetReg"
109}
110
111task prime {
112 // TODO this is a place-holder.
113 dependsOn updateDocker
114 doFirst {
115 println "Using deployment config: $deployConfig"
116 File configFile = new File(deployConfig)
117 def yaml = new Yaml()
118 def config = yaml.load(configFile.newReader())
119 println "Config: $config"
120 println "Access some data in config:\n\tSeed server IP=${config.seedServer.ip}"
121 }
122}
123
alshabib00c4b5d2016-06-17 17:26:10 -0700124// ---------------- Useful tasks ----------------
125
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700126task fetchUpstreamImages {
Zsolt Haraszti3dbe6162016-05-12 12:25:56 -0700127 comps.each { name, spec -> if (spec.type == 'image') { dependsOn "fetch" + name } }
128}
129
130task fetchGitSubmodules {
131 comps.each { name, spec -> if (spec.type == 'gitmodule') { dependsOn "gitupdate" + name } }
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700132}
133
134task fetch {
Zsolt Haraszti3dbe6162016-05-12 12:25:56 -0700135 dependsOn fetchUpstreamImages
136 dependsOn fetchGitSubmodules
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700137}
138
139task publishImages {
Zsolt Harasztia9f72502016-05-12 16:07:03 -0700140 comps.each { name, spec -> if (spec.type == 'image') { dependsOn "publish" + name } }
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700141}
142
143task publish {
Zsolt Haraszti3dbe6162016-05-12 12:25:56 -0700144 dependsOn publishImages
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700145}
146
147tasks.addRule(new DockerFetchRule(project))
148tasks.addRule(new DockerPublishRule(project))
149tasks.addRule(new DockerTagRule(project))
Zsolt Haraszti3dbe6162016-05-12 12:25:56 -0700150tasks.addRule(new GitSubmoduleUpdateRule(project))
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700151
Andy Bavierbeb89c02016-07-07 13:26:55 -0400152task deployBase {
153 // TODO this is a place-holder.
154 doFirst {
155 println "Using deployment config: $deployConfig"
156 File configFile = new File(deployConfig)
157 def yaml = new Yaml()
158 def config = yaml.load(configFile.newReader())
159 println "Config: $config"
160 println "Access some data in config:\n\tSeed server IP=${config.seedServer.ip}"
161 }
162}
163
164task deployPlatform {
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700165 // TODO this is a place-holder.
166 doFirst {
167 println "Using deployment config: $deployConfig"
168 File configFile = new File(deployConfig)
169 def yaml = new Yaml()
170 def config = yaml.load(configFile.newReader())
171 println "Config: $config"
172 println "Access some data in config:\n\tSeed server IP=${config.seedServer.ip}"
173 }
174}
alshabibb58aeab2016-06-17 16:47:02 -0700175