@@ -64,6 +64,14 @@ class ContivComposer(object):
64
64
'hostPath' : {'path' : '/var/log/contiv' }
65
65
})
66
66
67
+ if self ._is_resource (resource , 'ConfigMap' , 'contiv-config' ,
68
+ 'kube-system' ):
69
+ if args ['k8s_api' ] is not None :
70
+ k8s_config = resource ['data' ]['contiv_k8s_config' ]
71
+ resource ['data' ]['contiv_k8s_config' ] = k8s_config .replace (
72
+ 'https://__KUBERNETES_SERVICE_HOST__:__KUBERNETES_SERVICE_PORT__' ,
73
+ args ['k8s_api' ])
74
+
67
75
def add_prometheus (self , resource , args ):
68
76
if (self ._is_resource (resource , 'DaemonSet' , 'contiv-netplugin' ,
69
77
'kube-system' ) or
@@ -108,7 +116,7 @@ class ContivComposer(object):
108
116
109
117
def add_auth_proxy (self , resource , args ):
110
118
if self ._is_resource (resource , 'ReplicaSet' , 'contiv-netmaster' ,
111
- 'kube-system' ):
119
+ 'kube-system' ):
112
120
containers = resource ['spec' ]['template' ]['spec' ]['containers' ]
113
121
auth_proxy = [c
114
122
for c in containers
@@ -117,8 +125,9 @@ class ContivComposer(object):
117
125
'name' : 'contiv-api-proxy' ,
118
126
'image' : 'contiv/auth_proxy:latest' ,
119
127
'args' : [
120
- '--tls-key-file=%s' % args ['tls_key' ], '--tls-certificate=%s'
121
- % args ['tls_cert' ], '--data-store-address=$(STORE_URL)' ,
128
+ '--tls-key-file=%s' % args ['tls_key' ],
129
+ '--tls-certificate=%s' % args ['tls_cert' ],
130
+ '--data-store-address=$(STORE_URL)' ,
122
131
'--data-store-driver=$(STORE_DRIVER)' ,
123
132
'--netmaster-address=localhost:9999'
124
133
],
@@ -152,14 +161,17 @@ class ContivComposer(object):
152
161
def use_release (self , resource , args ):
153
162
if args .get ('version' ) is not None :
154
163
args ['netplugin_img' ] = 'contiv/netplugin:%s' % args ['use_release' ]
155
- args ['netplugin_init_img' ] = 'contiv/netplugin-init:%s' % args ['use_release' ]
164
+ args ['netplugin_init_img' ] = 'contiv/netplugin-init:%s' % args [
165
+ 'use_release' ]
156
166
args ['stat_exporter_img' ] = 'contiv/stats:%s' % args ['use_release' ]
157
- args ['auth_proxy_img' ] = 'contiv/auth_proxy:%s' % args ['use_release' ]
167
+ args ['auth_proxy_img' ] = 'contiv/auth_proxy:%s' % args [
168
+ 'use_release' ]
158
169
args ['ovs_img' ] = 'contiv/ovs:%s' % args ['use_release' ]
159
170
160
171
def compose (self , args ):
161
172
if args ['target' ] not in ('add-systest' , 'add-prometheus' ,
162
- 'add-auth-proxy' , 'add-aci' , 'update-image' , 'use-release' ):
173
+ 'add-auth-proxy' , 'add-aci' , 'update-image' ,
174
+ 'use-release' ):
163
175
raise Exception ("unsupported compose target %s" % args ['target' ])
164
176
func = getattr (self , args ['target' ].replace ('-' , '_' ))
165
177
with self ._compose_data (args ['base_yaml' ], args ['in_place' ]) as data :
@@ -191,7 +203,7 @@ class ContivComposer(object):
191
203
self ._update_container_image (resource , 'netmaster-exporter' ,
192
204
args ['stat_exporter_img' ])
193
205
if args .get ('auth_proxy_img' ) is not None :
194
- self ._update_container_image (resource , 'contiv-api-proxy' ,
206
+ self ._update_container_image (resource , 'contiv-api-proxy' ,
195
207
args ['auth_proxy_img' ])
196
208
if self ._is_resource (resource , 'DaemonSet' , 'contiv-ovs' ,
197
209
'kube-system' ):
@@ -201,7 +213,6 @@ class ContivComposer(object):
201
213
self ._update_container_image (resource , 'contiv-ovs-vswitchd' ,
202
214
args ['ovs_img' ])
203
215
204
-
205
216
def _update_container_image (self , resource , name , image ):
206
217
# find container in a defination, return the location
207
218
# doesn't care if it's init container or container
@@ -246,17 +257,16 @@ def _add_common_args(parser):
246
257
metavar = 'base-yaml' ,
247
258
help = 'contiv base yaml file' )
248
259
260
+
249
261
def _add_image_args (parser ):
250
262
parser .add_argument ('--netplugin-img' ,
251
263
help = 'contiv netplugin image to use' )
252
- parser .add_argument ('--ovs-img' ,
253
- help = 'contiv ovs image to use' )
264
+ parser .add_argument ('--ovs-img' , help = 'contiv ovs image to use' )
254
265
parser .add_argument ('--netplugin-init-img' ,
255
266
help = 'contiv netplugin-init image to use' )
256
- parser .add_argument ('--auth-proxy-img' ,
257
- help = 'auth proxy image to use' )
267
+ parser .add_argument ('--auth-proxy-img' , help = 'auth proxy image to use' )
258
268
parser .add_argument ('--stat-exporter-img' ,
259
- help = 'netplugin stat exporter img to use' )
269
+ help = 'netplugin stat exporter img to use' )
260
270
261
271
262
272
def create_cli_args ():
@@ -274,6 +284,7 @@ def create_cli_args():
274
284
description = "Add system test required updates" )
275
285
_add_common_args (systest_parser )
276
286
_add_image_args (systest_parser )
287
+ systest_parser .add_argument ('--k8s-api' , help = 'k8s api endpoint' )
277
288
278
289
# add prometheus
279
290
prometheus_parser = subclis .add_parser (
@@ -316,9 +327,10 @@ def create_cli_args():
316
327
'use-release' ,
317
328
description = "Update images to use contiv release version" )
318
329
_add_common_args (release_parser )
319
- release_parser .add_argument ('-v' , '--version' ,
320
- default = 'latest' ,
321
- help = 'the release version to use' )
330
+ release_parser .add_argument ('-v' ,
331
+ '--version' ,
332
+ default = 'latest' ,
333
+ help = 'the release version to use' )
322
334
323
335
return parser
324
336
0 commit comments