@@ -4,6 +4,10 @@ import argparse
4
4
from contextlib import contextmanager
5
5
import os
6
6
import sys
7
+ try :
8
+ from urlparse import urlparse
9
+ except ImportError :
10
+ from urllib .parse import urlparse
7
11
import yaml
8
12
9
13
@@ -64,13 +68,6 @@ class ContivComposer(object):
64
68
'hostPath' : {'path' : '/var/log/contiv' }
65
69
})
66
70
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
71
75
72
def add_prometheus (self , resource , args ):
76
73
if (self ._is_resource (resource , 'DaemonSet' , 'contiv-netplugin' ,
@@ -178,6 +175,21 @@ class ContivComposer(object):
178
175
for resource in data :
179
176
func (resource , args )
180
177
self ._update_images (resource , args )
178
+ # update k8s api because netplugin doesn't work with service vip
179
+ # TODO: fix it in netplugin
180
+ self ._update_k8s_api_config (resource , args )
181
+
182
+ def _update_k8s_api_config (self , resource , args ):
183
+ if self ._is_resource (resource , 'ConfigMap' , 'contiv-config' ,
184
+ 'kube-system' ):
185
+ if args ['k8s_api' ] is not None :
186
+ k8s_config = resource ['data' ]['contiv_k8s_config' ]
187
+
188
+ resource ['data' ]['contiv_k8s_config' ] = k8s_config .replace (
189
+ 'https://__KUBERNETES_SERVICE_HOST__:__KUBERNETES_SERVICE_PORT__' ,
190
+ args ['k8s_api' ])
191
+ resource ['data' ]['contiv_etcd' ] = "http://%s:6666" % urlparse (
192
+ args ['k8s_api' ]).hostname
181
193
182
194
def _is_resource (self , resource , kind , name , namespace = None ):
183
195
return (resource ['kind' ] == kind and
@@ -249,6 +261,7 @@ class ContivComposer(object):
249
261
250
262
251
263
def _add_common_args (parser ):
264
+ parser .add_argument ('--k8s-api' , help = 'k8s api endpoint' )
252
265
parser .add_argument ('-i' ,
253
266
'--in-place' ,
254
267
action = 'store_true' ,
@@ -284,7 +297,7 @@ def create_cli_args():
284
297
description = "Add system test required updates" )
285
298
_add_common_args (systest_parser )
286
299
_add_image_args (systest_parser )
287
- systest_parser . add_argument ( '--k8s-api' , help = 'k8s api endpoint' )
300
+
288
301
289
302
# add prometheus
290
303
prometheus_parser = subclis .add_parser (
@@ -331,7 +344,6 @@ def create_cli_args():
331
344
'--version' ,
332
345
default = 'latest' ,
333
346
help = 'the release version to use' )
334
-
335
347
return parser
336
348
337
349
0 commit comments