Skip to content

Commit 8e611cc

Browse files
author
Wei Tie
committed
Override k8s api for systest
In systest (vagrant) env, service ip doesn't work.
1 parent b743bcb commit 8e611cc

File tree

2 files changed

+29
-17
lines changed

2 files changed

+29
-17
lines changed

install/k8s/cluster/k8smaster_centos.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ -n "$CONTIV_TEST" ]; then
77
cp /etc/kubernetes/admin.conf /shared/admin.conf
88
chmod 0644 /etc/kubernetes/admin.conf
99
cd /opt/gopath/src/github.com/contiv/netplugin/install/k8s/contiv/
10-
./contiv-compose add-systest ./base.yaml > /shared/contiv.yaml
10+
./contiv-compose add-systest --k8s-api https://$2:$3 ./base.yaml > /shared/contiv.yaml
1111
# remove kube-dns
1212
# TODO: enable kube-dns
1313
kubectl delete deployment -n kube-system kube-dns

install/k8s/contiv/contiv-compose

+28-16
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ class ContivComposer(object):
6464
'hostPath': {'path': '/var/log/contiv'}
6565
})
6666

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+
6775
def add_prometheus(self, resource, args):
6876
if (self._is_resource(resource, 'DaemonSet', 'contiv-netplugin',
6977
'kube-system') or
@@ -108,7 +116,7 @@ class ContivComposer(object):
108116

109117
def add_auth_proxy(self, resource, args):
110118
if self._is_resource(resource, 'ReplicaSet', 'contiv-netmaster',
111-
'kube-system'):
119+
'kube-system'):
112120
containers = resource['spec']['template']['spec']['containers']
113121
auth_proxy = [c
114122
for c in containers
@@ -117,8 +125,9 @@ class ContivComposer(object):
117125
'name': 'contiv-api-proxy',
118126
'image': 'contiv/auth_proxy:latest',
119127
'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)',
122131
'--data-store-driver=$(STORE_DRIVER)',
123132
'--netmaster-address=localhost:9999'
124133
],
@@ -152,14 +161,17 @@ class ContivComposer(object):
152161
def use_release(self, resource, args):
153162
if args.get('version') is not None:
154163
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']
156166
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']
158169
args['ovs_img'] = 'contiv/ovs:%s' % args['use_release']
159170

160171
def compose(self, args):
161172
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'):
163175
raise Exception("unsupported compose target %s" % args['target'])
164176
func = getattr(self, args['target'].replace('-', '_'))
165177
with self._compose_data(args['base_yaml'], args['in_place']) as data:
@@ -191,7 +203,7 @@ class ContivComposer(object):
191203
self._update_container_image(resource, 'netmaster-exporter',
192204
args['stat_exporter_img'])
193205
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',
195207
args['auth_proxy_img'])
196208
if self._is_resource(resource, 'DaemonSet', 'contiv-ovs',
197209
'kube-system'):
@@ -201,7 +213,6 @@ class ContivComposer(object):
201213
self._update_container_image(resource, 'contiv-ovs-vswitchd',
202214
args['ovs_img'])
203215

204-
205216
def _update_container_image(self, resource, name, image):
206217
# find container in a defination, return the location
207218
# doesn't care if it's init container or container
@@ -246,17 +257,16 @@ def _add_common_args(parser):
246257
metavar='base-yaml',
247258
help='contiv base yaml file')
248259

260+
249261
def _add_image_args(parser):
250262
parser.add_argument('--netplugin-img',
251263
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')
254265
parser.add_argument('--netplugin-init-img',
255266
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')
258268
parser.add_argument('--stat-exporter-img',
259-
help='netplugin stat exporter img to use')
269+
help='netplugin stat exporter img to use')
260270

261271

262272
def create_cli_args():
@@ -274,6 +284,7 @@ def create_cli_args():
274284
description="Add system test required updates")
275285
_add_common_args(systest_parser)
276286
_add_image_args(systest_parser)
287+
systest_parser.add_argument('--k8s-api', help='k8s api endpoint')
277288

278289
# add prometheus
279290
prometheus_parser = subclis.add_parser(
@@ -316,9 +327,10 @@ def create_cli_args():
316327
'use-release',
317328
description="Update images to use contiv release version")
318329
_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')
322334

323335
return parser
324336

0 commit comments

Comments
 (0)