-
Notifications
You must be signed in to change notification settings - Fork 60
/
docker_images.yml
257 lines (203 loc) · 6.87 KB
/
docker_images.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
---
# Copyright 2017-present Open Networking Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# docker_images.yml
# master list of docker images used by imagebuilder.py
# tag to set on every container built/downloaded
docker_build_tag: "candidate"
# pull_only_images: images pulled and used directly without changes
# you must include a tag (':1.0') on these images to pull the correct version
#
# do not include images in this list that are parents of images
# in buildable_images - those are automatically pulled
pull_only_images:
- "nginx:1.13"
- "onosproject/onos:1.12.0"
- "redis:3.2"
- "node:7.9.0" # remove once the issue with node:candidate is resolved
- "postgres:10.3-alpine"
- "sebp/elk:564"
# buildable_images - list of images that we build from Dockerfiles
#
# required:
# name: Name of docker image
# repo: git repo name (not the path! not what it's renamed to be in the repo manifest!)
# optional:
# dockerfile: Name of Dockerfile. Default: "Dockerfile"
# path: Path to parent directory of containing dockerfile, relative to. Default: "."
# context: Path to docker build context, relative to path item. Default: "."
# component: dict of sub-component paths to copy into build context.
# repo: Name of component repo to copy from (required)
# path: path in to copy from. Relative to component repo. Default "."
# dest: destination path to copy components to, relative to context
buildable_images:
- name: opencord/mavenrepo
repo: cord-onos-publisher
dockerfile: "Dockerfile.make"
- name: xosproject/xos-base
repo: xos
path: "containers/xos"
dockerfile: "Dockerfile.base"
- name: xosproject/xos-core
repo: xos
path: "containers/xos"
dockerfile: "Dockerfile.xos-core"
context: "../.."
- name: xosproject/xos-libraries
repo: xos
path: "containers/xos"
dockerfile: "Dockerfile.libraries"
context: "../.."
- name: xosproject/chameleon
repo: xos
path: "containers/chameleon"
dockerfile: "Dockerfile.chameleon"
components:
- repo: chameleon
dest: tmp.chameleon
- name: xosproject/xos-client
repo: xos
path: "containers/xos"
dockerfile: "Dockerfile.client"
context: "../.."
components:
- repo: chameleon
dest: containers/xos/tmp.chameleon
- name: xosproject/xos-synchronizer-base
repo: xos
path: "containers/xos"
dockerfile: "Dockerfile.synchronizer-base"
context: "../.."
- name: xosproject/xos-tosca
repo: xos-tosca
- name: xosproject/xos-ws
repo: xos-rest-gw
- name: xosproject/xos-gui-builder
repo: xos-gui
dockerfile: "Dockerfile.xos-gui-builder"
- name: xosproject/xos-gui
repo: xos-gui
- name: xosproject/gui-extension-rcord
repo: rcord
path: "xos/gui"
- name: xosproject/gui-extension-veestat
repo: vEE
path: "xos/veestat"
- name: xosproject/gui-extension-vtr
repo: vtr
path: "xos/gui"
- name: xosproject/gui-extension-vnaas
repo: vnaas
path: "xos/gui"
- name: xosproject/gui-extension-sample
repo: xos-sample-gui-extension
- name: xosproject/addressmanager-synchronizer
repo: addressmanager
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/openstack-synchronizer
repo: openstack
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/onos-synchronizer
repo: onos-service
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vee-synchronizer
repo: vEE
path: "xos/synchronizer"
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/veg-synchronizer
repo: vEG
path: "xos/synchronizer"
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vnaas-synchronizer
repo: vnaas
path: "xos/synchronizer"
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/volt-synchronizer
repo: olt-service
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vrouter-synchronizer
repo: vrouter
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vtn-synchronizer
repo: vtn-service
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vtr-synchronizer
repo: vtr
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vsg-hw-synchronizer
repo: vsg-hw
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/kubernetes-synchronizer
repo: kubernetes-service
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vsg-synchronizer
repo: vsg
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/fabric-synchronizer
repo: fabric
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/exampleservice-synchronizer
repo: exampleservice
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/simpleexampleservice-synchronizer
repo: simpleexampleservice
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vmme-synchronizer
repo: vMME
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vhss-synchronizer
repo: vHSS
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/hssdb-synchronizer
repo: hss_db
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/internetemulator-synchronizer
repo: internetemulator
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/sdncontroller-synchronizer
repo: sdn-controller
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vspgwc-synchronizer
repo: vspgwc
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vspgwu-synchronizer
repo: vspgwu
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/vepc-synchronizer
repo: epc-service
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/mcord-synchronizer
repo: mcord
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/venb-synchronizer
repo: venb
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/templateservice-synchronizer
repo: templateservice
path: "xos/synchronizer"
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/rcord-synchronizer
repo: rcord
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/progran-synchronizer
repo: progran
path: "xos/synchronizer"
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/hippie-oss-synchronizer
repo: hippie-oss
dockerfile: "Dockerfile.synchronizer"
- name: xosproject/xos-api-tester
repo: cord-tester
path: "src/test/cord-api"
dockerfile: "Dockerfile.k8s-api-tester"