@@ -91,7 +91,7 @@ class ContivComposer(object):
91
91
contiv_stat = {
92
92
"name" : exporter_name ,
93
93
# version updated later
94
- "image" : args . stat_exporter_img ,
94
+ "image" : "contiv/stats:latest" ,
95
95
"env" : [
96
96
{'name' : 'CONTIV_ETCD' ,
97
97
'valueFrom' : {'configMapKeyRef' :
@@ -107,18 +107,18 @@ class ContivComposer(object):
107
107
exporter [0 ].update (contiv_stat )
108
108
109
109
def add_auth_proxy (self , resource , args ):
110
- if self ._is_resource (resource , 'DaemonSet ' , 'contiv-netplugin ' ,
111
- 'kube-system' ):
110
+ if self ._is_resource (resource , 'ReplicaSet ' , 'contiv-netmaster ' ,
111
+ 'kube-system' ):
112
112
containers = resource ['spec' ]['template' ]['spec' ]['containers' ]
113
113
auth_proxy = [c
114
114
for c in containers
115
115
if c ['name' ] == 'contiv-api-proxy' ]
116
116
auth_proxy_data = {
117
117
'name' : 'contiv-api-proxy' ,
118
- 'image' : args . auth_proxy_img ,
118
+ 'image' : 'contiv/auth_proxy:latest' ,
119
119
'args' : [
120
- '--tls-key-file=%s' % args . tls_key , '--tls-certificate=%s'
121
- % args . tls_cert , '--data-store-address=$(STORE_URL)' ,
120
+ '--tls-key-file=%s' % args [ ' tls_key' ] , '--tls-certificate=%s'
121
+ % args [ ' tls_cert' ] , '--data-store-address=$(STORE_URL)' ,
122
122
'--data-store-driver=$(STORE_DRIVER)' ,
123
123
'--netmaster-address=localhost:9999'
124
124
],
@@ -145,12 +145,24 @@ class ContivComposer(object):
145
145
def add_aci (self , resource , args ):
146
146
raise Exception ("Not implemented yet" )
147
147
148
+ def update_image (self , reource , args ):
149
+ # update image will be done in compose
150
+ pass
151
+
152
+ def use_release (self , resource , args ):
153
+ if args .get ('version' ) is not None :
154
+ args ['netplugin_img' ] = 'contiv/netplugin:%s' % args ['use_release' ]
155
+ args ['netplugin_init_img' ] = 'contiv/netplugin-init:%s' % args ['use_release' ]
156
+ args ['stat_exporter_img' ] = 'contiv/stats:%s' % args ['use_release' ]
157
+ args ['auth_proxy_img' ] = 'contiv/auth_proxy:%s' % args ['use_release' ]
158
+ args ['ovs_img' ] = 'contiv/ovs:%s' % args ['use_release' ]
159
+
148
160
def compose (self , args ):
149
- if args . target not in ('add-systest' , 'add-prometheus' ,
150
- 'add-auth-proxy' , 'add-aci' ):
151
- raise "unsupported compose target"
152
- func = getattr (self , args . target .replace ('-' , '_' ))
153
- with self ._compose_data (args . base_yaml , args . in_place ) as data :
161
+ if args [ ' target' ] not in ('add-systest' , 'add-prometheus' ,
162
+ 'add-auth-proxy' , 'add-aci' , 'update-image' , 'use-release' ):
163
+ raise Exception ( "unsupported compose target %s" % args [ 'target' ])
164
+ func = getattr (self , args [ ' target' ] .replace ('-' , '_' ))
165
+ with self ._compose_data (args [ ' base_yaml' ] , args [ ' in_place' ] ) as data :
154
166
for resource in data :
155
167
func (resource , args )
156
168
self ._update_images (resource , args )
@@ -165,20 +177,30 @@ class ContivComposer(object):
165
177
'kube-system' ) or self ._is_resource (
166
178
resource , 'ReplicaSet' , 'contiv-netmaster' ,
167
179
'kube-system' ):
168
- if args .netplugin_img is not None :
169
- name = 'contiv-netplugin' if resource [
170
- 'kind' ] == 'DaemonSet' else 'contiv-netmaster'
171
- self ._update_container_image (resource , name ,
172
- args . netplugin_img )
173
- if args .netplugin_init_img is not None :
180
+ if args .get ( ' netplugin_img' ) is not None :
181
+ self . _update_container_image ( resource , 'contiv-netplugin' ,
182
+ args [ 'netplugin_img' ])
183
+ self ._update_container_image (resource , 'contiv-netmaster' ,
184
+ args [ ' netplugin_img' ] )
185
+ if args .get ( ' netplugin_init_img' ) is not None :
174
186
self ._update_container_image (resource , 'contiv-netplugin-init' ,
175
- args .netplugin_init_img )
187
+ args ['netplugin_init_img' ])
188
+ if args .get ('stat_exporter_img' ) is not None :
189
+ self ._update_container_image (resource , 'netplugin-exporter' ,
190
+ args ['stat_exporter_img' ])
191
+ self ._update_container_image (resource , 'netmaster-exporter' ,
192
+ args ['stat_exporter_img' ])
193
+ if args .get ('auth_proxy_img' ) is not None :
194
+ self ._update_container_image (resource , 'contiv-api-proxy' ,
195
+ args ['auth_proxy_img' ])
176
196
if self ._is_resource (resource , 'DaemonSet' , 'contiv-ovs' ,
177
197
'kube-system' ):
178
- self ._update_container_image (resource , 'contiv-ovsdb-server' ,
179
- args .ovs_img )
180
- self ._update_container_image (resource , 'contiv-ovs-vswitchd' ,
181
- args .ovs_img )
198
+ if args .get ('ovs_img' ) is not None :
199
+ self ._update_container_image (resource , 'contiv-ovsdb-server' ,
200
+ args ['ovs_img' ])
201
+ self ._update_container_image (resource , 'contiv-ovs-vswitchd' ,
202
+ args ['ovs_img' ])
203
+
182
204
183
205
def _update_container_image (self , resource , name , image ):
184
206
# find container in a defination, return the location
@@ -220,18 +242,21 @@ def _add_common_args(parser):
220
242
'--in-place' ,
221
243
action = 'store_true' ,
222
244
help = 'edit files in place' )
245
+ parser .add_argument ('base_yaml' ,
246
+ metavar = 'base-yaml' ,
247
+ help = 'contiv base yaml file' )
248
+
249
+ def _add_image_args (parser ):
223
250
parser .add_argument ('--netplugin-img' ,
224
- default = 'contiv/netplugin:latest' ,
225
251
help = 'contiv netplugin image to use' )
226
252
parser .add_argument ('--ovs-img' ,
227
- default = 'contiv/ovs:latest' ,
228
253
help = 'contiv ovs image to use' )
229
254
parser .add_argument ('--netplugin-init-img' ,
230
- default = 'contiv/netplugin-init:latest' ,
231
255
help = 'contiv netplugin-init image to use' )
232
- parser .add_argument ('base_yaml' ,
233
- metavar = 'base-yaml' ,
234
- help = 'contiv base yaml file' )
256
+ parser .add_argument ('--auth-proxy-img' ,
257
+ help = 'auth proxy image to use' )
258
+ parser .add_argument ('--stat-exporter-img' ,
259
+ help = 'netplugin stat exporter img to use' )
235
260
236
261
237
262
def create_cli_args ():
@@ -248,24 +273,21 @@ def create_cli_args():
248
273
'add-systest' ,
249
274
description = "Add system test required updates" )
250
275
_add_common_args (systest_parser )
276
+ _add_image_args (systest_parser )
251
277
252
278
# add prometheus
253
279
prometheus_parser = subclis .add_parser (
254
280
'add-prometheus' ,
255
281
description = "Add prometheus required updates" )
256
282
_add_common_args (prometheus_parser )
257
- prometheus_parser .add_argument ('--stat-exporter-img' ,
258
- default = 'contiv/stats:latest' ,
259
- help = 'netplugin stat exporter img to use' )
283
+ _add_image_args (prometheus_parser )
260
284
261
285
# add auth proxy
262
286
auth_proxy_parser = subclis .add_parser (
263
287
'add-auth-proxy' ,
264
288
description = "Add auth proxy required updates" )
265
289
_add_common_args (auth_proxy_parser )
266
- auth_proxy_parser .add_argument ('--auth-proxy-img' ,
267
- default = 'contiv/auth_proxy:latest' ,
268
- help = 'auth proxy image to use' )
290
+ _add_image_args (auth_proxy_parser )
269
291
auth_proxy_parser .add_argument (
270
292
'--tls-key' ,
271
293
required = True ,
@@ -280,9 +302,26 @@ def create_cli_args():
280
302
'add-aci' ,
281
303
description = "Add cisco ACI required updates" )
282
304
_add_common_args (aci_parser )
305
+ _add_image_args (aci_parser )
306
+
307
+ # update image
308
+ image_parser = subclis .add_parser (
309
+ 'update-image' ,
310
+ description = "Update contiv services images" )
311
+ _add_common_args (image_parser )
312
+ _add_image_args (image_parser )
313
+
314
+ # add use_release
315
+ release_parser = subclis .add_parser (
316
+ 'use-release' ,
317
+ description = "Update images to use contiv release version" )
318
+ _add_common_args (release_parser )
319
+ release_parser .add_argument ('-v' , '--version' ,
320
+ default = 'latest' ,
321
+ help = 'the release version to use' )
283
322
284
323
return parser
285
324
286
325
287
326
if __name__ == '__main__' :
288
- ContivComposer ().compose (create_cli_args ().parse_args ())
327
+ ContivComposer ().compose (vars ( create_cli_args ().parse_args () ))
0 commit comments