Skip to content

Commit 056f0a5

Browse files
author
Wei Tie
committed
Hard code k8s api endpoint
Hard code K8S API endpoints in all cases becuase netplugin is not able to handle the service ip correctly for daemonset
1 parent ad6aae1 commit 056f0a5

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

install/k8s/cluster/k8smaster_centos.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if [ -n "$CONTIV_TEST" ]; then
1414
else
1515
# update to use released version
1616
cd /opt/gopath/src/github.com/contiv/netplugin/install/k8s/contiv/
17-
./contiv-compose use-release -v $(cat /opt/gopath/src/github.com/contiv/netplugin/version/CURRENT_VERSION) ./contiv-base.yaml > /shared/contiv.yaml
17+
./contiv-compose use-release --k8s-api https://$2:$3 -v $(cat /opt/gopath/src/github.com/contiv/netplugin/version/CURRENT_VERSION) ./contiv-base.yaml > /shared/contiv.yaml
1818
fi
1919

2020
kubectl apply -f /shared/contiv.yaml

install/k8s/contiv/contiv-compose

+21-9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ import argparse
44
from contextlib import contextmanager
55
import os
66
import sys
7+
try:
8+
from urlparse import urlparse
9+
except ImportError:
10+
from urllib.parse import urlparse
711
import yaml
812

913

@@ -64,13 +68,6 @@ class ContivComposer(object):
6468
'hostPath': {'path': '/var/log/contiv'}
6569
})
6670

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'])
7471

7572
def add_prometheus(self, resource, args):
7673
if (self._is_resource(resource, 'DaemonSet', 'contiv-netplugin',
@@ -178,6 +175,21 @@ class ContivComposer(object):
178175
for resource in data:
179176
func(resource, args)
180177
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
181193

182194
def _is_resource(self, resource, kind, name, namespace=None):
183195
return (resource['kind'] == kind and
@@ -249,6 +261,7 @@ class ContivComposer(object):
249261

250262

251263
def _add_common_args(parser):
264+
parser.add_argument('--k8s-api', help='k8s api endpoint')
252265
parser.add_argument('-i',
253266
'--in-place',
254267
action='store_true',
@@ -284,7 +297,7 @@ def create_cli_args():
284297
description="Add system test required updates")
285298
_add_common_args(systest_parser)
286299
_add_image_args(systest_parser)
287-
systest_parser.add_argument('--k8s-api', help='k8s api endpoint')
300+
288301

289302
# add prometheus
290303
prometheus_parser = subclis.add_parser(
@@ -331,7 +344,6 @@ def create_cli_args():
331344
'--version',
332345
default='latest',
333346
help='the release version to use')
334-
335347
return parser
336348

337349

0 commit comments

Comments
 (0)