blob: f29afa38fe0504b65fe10f540ec07001b52b6243 [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
alshabib11b8e5c2016-08-29 15:36:36 -070020buildscript {
21 repositories {
22 maven {
23 url "https://plugins.gradle.org/m2/"
24 }
25 }
26 dependencies {
27 classpath "gradle.plugin.com.dorongold.plugins:task-tree:1.2.1"
28 }
29}
30
31apply plugin: "com.dorongold.task-tree"
32
33evaluationDependsOn(':maas')
34evaluationDependsOn(':platform-install')
35evaluationDependsOn(':onos-apps')
36
Zsolt Harasztiec7df102016-05-05 13:34:18 -070037allprojects {
38 apply plugin: 'base'
39 apply plugin: 'de.gesellix.docker'
40 //apply plugin: 'com.tmiyamon.config'
41
42 docker {
43 // dockerHost = System.env.DOCKER_HOST ?: 'unix:///var/run/docker.sock'
44 // dockerHost = System.env.DOCKER_HOST ?: 'https://192.168.99.100:2376'
45 // certPath = System.getProperty('docker.cert.path') ?: "${System.getProperty('user.home')}/.docker/machine/machines/default"
46 // authConfigPlain = [
47 // "username" : "joe",
48 // "password" : "some-pw-as-needed",
49 // "email" : "joe@acme.com",
50 // "serveraddress" : "https://index.docker.io/v1/"
51 // ]
52 }
53}
54
55ext {
56
David K. Bainbridge094508e2016-11-15 17:23:51 -080057 // Deployment target config file (yaml format); this can be overwritten from the command line
58 // using the -PdeployConfig=<file-path> syntax.
59 deployConfig = project.hasProperty('deployConfig') ? project.getProperty('deployConfig') : './config/default.yml'
60
61 println "Using deployment config: $deployConfig"
62 File configFile = new File(deployConfig)
63 def yaml = new Yaml()
64 config = yaml.load(configFile.newReader())
65
Zsolt Harasztiec7df102016-05-05 13:34:18 -070066 // Upstream registry to simplify filling out the comps table below
Zsolt Harasztia9f72502016-05-12 16:07:03 -070067 upstreamReg = project.hasProperty('upstreamReg') ? project.getProperty('upstreamReg') : 'docker.io'
Zsolt Harasztiec7df102016-05-05 13:34:18 -070068
69 // Target registry to be used to publish docker images needed for deployment
David K. Bainbridge094508e2016-11-15 17:23:51 -080070 targetReg = project.hasProperty('targetReg')
71 ? project.getProperty('targetReg')
72 : config.docker && config.docker.registry
73 ? config.docker.registry
74 : config.seedServer.ip
75 ? config.seedServer.ip + ":5000"
76 : 'localhost:5000'
Zsolt Harasztiec7df102016-05-05 13:34:18 -070077
78 // The tag used to tag the docker images push to the target registry
David K. Bainbridge094508e2016-11-15 17:23:51 -080079 targetTag = project.hasProperty('targetTag')
80 ? project.getProperty('targetTag')
81 : config.docker && config.docker.imageVersion
82 ? config.docker.imageVersion
83 : 'candidate'
Zsolt Harasztiec7df102016-05-05 13:34:18 -070084
85 // Component table
86 comps = [
Andy Bavier65c8e152016-12-22 16:01:27 -050087 // ONOS 1.8.1.SNAPSHOT from the support branch
88 // This is probably not exactly what we want
David K. Bainbridged54ca702016-07-13 22:27:12 -070089 'onosproject/onos': [
90 'type': 'image',
91 'upstream': upstreamReg,
92 'name': 'onosproject/onos',
Andy Bavier65c8e152016-12-22 16:01:27 -050093 'digest': 'sha256:83aa5b1f43d4bf772929dc5aacf3f57cbd4467a4c7184586b53a35ea8a23226a'
David K. Bainbridged54ca702016-07-13 22:27:12 -070094 ],
Zsolt Haraszti3dbe6162016-05-12 12:25:56 -070095 'nginx': [
96 'type': 'image',
97 'upstream': upstreamReg,
98 'name': 'nginx',
99 'digest': 'sha256:b555f8c64ab4e85405e0d8b03f759b73ce88deb802892a3b155ef55e3e832806'
100 ],
101 'swarm': [
102 'type': 'image',
103 'upstream': upstreamReg,
104 'name': 'swarm',
105 'digest': 'sha256:6ca9b40980e2fcdcd229900ec8933f3e92c14ead22c9404cb09736cb4f3a9248'
106 ],
Scott Bakera0a0e442016-10-10 20:58:22 -0700107 'xosproject/vsg': [
108 'type': 'image',
109 'upstream': upstreamReg,
110 'name': 'xosproject/vsg',
111 'digest': 'sha256:18d1c6ef9767d8a41c9b51948776052d024d4e3294e5d1d6dde1a49112175d91'
112 ],
Scott Bakerbceca9c2016-11-05 18:59:25 -0700113 'xosproject/xos-postgres': [
114 'type': 'image',
115 'upstream': upstreamReg,
116 'name': 'xosproject/xos-postgres',
117 'digest': 'sha256:f2d31a50b8af7434ab07b1e54e99c1ff1e10d77d16a46e5d6933d3c0528f4820'
118 ],
119 'xosproject/cord-app-build': [
120 'type': 'image',
121 'upstream': upstreamReg,
122 'name': 'xosproject/cord-app-build',
123 'digest': 'sha256:528c6ac3a87609779035857a7b1cf9fab8e046e7ac259d72cf275f1c46d7416e'
124 ],
Jonathan Hart09dad6c2016-11-14 16:52:56 -0800125 'xosproject/xos-base': [
126 'type': 'image',
127 'upstream': upstreamReg,
128 'name': 'xosproject/xos-base',
Scott Baker3bd9fa82016-12-19 12:45:47 -0800129 'digest': 'sha256:1bc8cc8e9f99ae8e9c40ace4ee513c4278952ad719118aabf8aa6d6cc0a466ba'
Jonathan Hart09dad6c2016-11-14 16:52:56 -0800130 ],
Scott Bakerbceca9c2016-11-05 18:59:25 -0700131 'redis': [
132 'type': 'image',
133 'upstream': upstreamReg,
134 'name': 'redis',
135 'digest': 'sha256:0fe5a7afa2c2154f37c8ab56a9a6c5023cb0405cc0e85b34d8dcc1de6c3f143e'
136 ],
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700137 ]
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700138}
139
alshabib00c4b5d2016-06-17 17:26:10 -0700140// ---------------- Useful tasks ----------------
141
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700142task fetchUpstreamImages {
Zsolt Haraszti3dbe6162016-05-12 12:25:56 -0700143 comps.each { name, spec -> if (spec.type == 'image') { dependsOn "fetch" + name } }
144}
145
alshabib11b8e5c2016-08-29 15:36:36 -0700146
147task fetch {
148 dependsOn fetchUpstreamImages
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700149}
150
alshabib11b8e5c2016-08-29 15:36:36 -0700151task buildImages {
152 logger.info "Root project has nothing to build"
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700153}
154
155task publishImages {
alshabib11b8e5c2016-08-29 15:36:36 -0700156 comps.each { name, spec -> if (spec.type == 'image') {
157 dependsOn "publish" + name
158 }
159 }
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700160}
161
162task publish {
Zsolt Haraszti3dbe6162016-05-12 12:25:56 -0700163 dependsOn publishImages
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700164}
165
166tasks.addRule(new DockerFetchRule(project))
alshabib11b8e5c2016-08-29 15:36:36 -0700167tasks.addRule(new DockerPublishRule(project, project(':maas').prime))
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700168tasks.addRule(new DockerTagRule(project))
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700169
alshabib11b8e5c2016-08-29 15:36:36 -0700170project('platform-install').deployPlatform.dependsOn project(':maas').deployBase
171project('onos-apps').publishMavenRepoImage.dependsOn project(':maas').prime
alshabibc64cf7f2016-09-07 11:47:01 -0700172project('platform-install').deployPlatform.dependsOn project(':onos-apps').deploy
173project(':onos-apps').deploy.dependsOn project(':maas').deployBase
174
Andy Bavierbeb89c02016-07-07 13:26:55 -0400175
alshabib11b8e5c2016-08-29 15:36:36 -0700176task deploy {
177 dependsOn << project(':platform-install').deployPlatform
Zsolt Harasztiec7df102016-05-05 13:34:18 -0700178}
alshabibb58aeab2016-06-17 16:47:02 -0700179