Skip to content

Commit b743bcb

Browse files
author
Wei Tie
committed
Support deploy k8s 1.8, update CNI version and misc fixes
1 parent 4f714e3 commit b743bcb

File tree

8 files changed

+95
-47
lines changed

8 files changed

+95
-47
lines changed

install/k8s/cluster/bootstrap_centos.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@ if [ "$k8s_version" = "stable" ]; then
4747
yum install -y kubelet kubeadm kubectl
4848
else
4949
v="${k8s_version#v}"
50-
yum install -y "kubelet-$v" "kubeadm-$v" "kubectl-$v"
50+
extra_rpm=""
51+
if [[ "$v" = 1.8* ]]; then
52+
extra_rpm="kubernetes-cni-0.5.1-1"
53+
fi
54+
yum install -y "kubelet-$v" "kubeadm-$v" "kubectl-$v" "$extra_rpm"
5155
fi
5256

5357
systemctl enable kubelet && systemctl start kubelet

install/k8s/cluster/k8smaster_centos.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -x
22
kubeadm init --token $1 --apiserver-advertise-address $2 --apiserver-bind-port $3 --kubernetes-version $4
3-
# --ignore-preflight-errors all
3+
44
kubectl taint nodes --all node-role.kubernetes.io/master-
55

66
if [ -n "$CONTIV_TEST" ]; then
@@ -12,7 +12,9 @@ if [ -n "$CONTIV_TEST" ]; then
1212
# TODO: enable kube-dns
1313
kubectl delete deployment -n kube-system kube-dns
1414
else
15-
cp /opt/gopath/src/github.com/contiv/netplugin/install/k8s/contiv/base.yaml /shared/contiv.yaml
15+
# update to use released version
16+
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) ./base.yaml > /shared/contiv.yaml
1618
fi
1719

1820
kubectl apply -f /shared/contiv.yaml

install/k8s/cluster/k8sworker_centos.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -x
22
kubeadm join --token "$1" "$2" --discovery-token-unsafe-skip-ca-verification
3-
# --ignore-preflight-errors all
3+
44
if [ ! -z "$CONTIV_TEST" ]; then
55
cp /shared/admin.conf /etc/kubernetes/admin.conf
66
chmod 0644 /etc/kubernetes/admin.conf

install/k8s/contiv/base.yaml

+8-4
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ data:
109109
contiv_etcd: "http://10.96.232.136:6666"
110110
contiv_cni_config: |-
111111
{
112-
"cniVersion": "0.6.0",
112+
"cniVersion": "0.3.1",
113113
"name": "contiv-net",
114114
"type": "contivk8s"
115115
}
@@ -180,6 +180,13 @@ spec:
180180
- mountPath: /etc/cni/net.d/
181181
name: etc-cni-dir
182182
readOnly: false
183+
- name: contiv-cni
184+
image: contiv/netplugin:latest
185+
command: ["cp", "/contiv/bin/contivk8s", "/opt/cni/bin/contivk8s"]
186+
volumeMounts:
187+
- mountPath: /opt/cni/bin
188+
name: cni-bin-dir
189+
readOnly: false
183190
containers:
184191
- name: contiv-netplugin
185192
image: contiv/netplugin:latest
@@ -219,9 +226,6 @@ spec:
219226
- mountPath: /var/contiv
220227
name: var-contiv
221228
readOnly: false
222-
- mountPath: /opt/cni/bin
223-
name: cni-bin-dir
224-
readOnly: false
225229
volumes:
226230
- name: var-run
227231
hostPath:

install/k8s/contiv/contiv-compose

+74-35
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class ContivComposer(object):
9191
contiv_stat = {
9292
"name": exporter_name,
9393
# version updated later
94-
"image": args.stat_exporter_img,
94+
"image": "contiv/stats:latest",
9595
"env": [
9696
{'name': 'CONTIV_ETCD',
9797
'valueFrom': {'configMapKeyRef':
@@ -107,18 +107,18 @@ class ContivComposer(object):
107107
exporter[0].update(contiv_stat)
108108

109109
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'):
112112
containers = resource['spec']['template']['spec']['containers']
113113
auth_proxy = [c
114114
for c in containers
115115
if c['name'] == 'contiv-api-proxy']
116116
auth_proxy_data = {
117117
'name': 'contiv-api-proxy',
118-
'image': args.auth_proxy_img,
118+
'image': 'contiv/auth_proxy:latest',
119119
'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)',
122122
'--data-store-driver=$(STORE_DRIVER)',
123123
'--netmaster-address=localhost:9999'
124124
],
@@ -145,12 +145,24 @@ class ContivComposer(object):
145145
def add_aci(self, resource, args):
146146
raise Exception("Not implemented yet")
147147

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+
148160
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:
154166
for resource in data:
155167
func(resource, args)
156168
self._update_images(resource, args)
@@ -165,20 +177,30 @@ class ContivComposer(object):
165177
'kube-system') or self._is_resource(
166178
resource, 'ReplicaSet', 'contiv-netmaster',
167179
'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:
174186
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'])
176196
if self._is_resource(resource, 'DaemonSet', 'contiv-ovs',
177197
'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+
182204

183205
def _update_container_image(self, resource, name, image):
184206
# find container in a defination, return the location
@@ -220,18 +242,21 @@ def _add_common_args(parser):
220242
'--in-place',
221243
action='store_true',
222244
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):
223250
parser.add_argument('--netplugin-img',
224-
default='contiv/netplugin:latest',
225251
help='contiv netplugin image to use')
226252
parser.add_argument('--ovs-img',
227-
default='contiv/ovs:latest',
228253
help='contiv ovs image to use')
229254
parser.add_argument('--netplugin-init-img',
230-
default='contiv/netplugin-init:latest',
231255
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')
235260

236261

237262
def create_cli_args():
@@ -248,24 +273,21 @@ def create_cli_args():
248273
'add-systest',
249274
description="Add system test required updates")
250275
_add_common_args(systest_parser)
276+
_add_image_args(systest_parser)
251277

252278
# add prometheus
253279
prometheus_parser = subclis.add_parser(
254280
'add-prometheus',
255281
description="Add prometheus required updates")
256282
_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)
260284

261285
# add auth proxy
262286
auth_proxy_parser = subclis.add_parser(
263287
'add-auth-proxy',
264288
description="Add auth proxy required updates")
265289
_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)
269291
auth_proxy_parser.add_argument(
270292
'--tls-key',
271293
required=True,
@@ -280,9 +302,26 @@ def create_cli_args():
280302
'add-aci',
281303
description="Add cisco ACI required updates")
282304
_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')
283322

284323
return parser
285324

286325

287326
if __name__ == '__main__':
288-
ContivComposer().compose(create_cli_args().parse_args())
327+
ContivComposer().compose(vars(create_cli_args().parse_args()))

mgmtfn/k8splugin/contivk8s/k8s_cni.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func addPodToContiv(nc *clients.NWClient, pInfo *cniapi.CNIPodAttr) {
7575
log.Errorf("EP create failed for pod: %s/%s",
7676
pInfo.K8sNameSpace, pInfo.Name)
7777
cerr := CNIError{}
78-
cerr.CNIVersion = "0.6.0"
78+
cerr.CNIVersion = "0.3.1"
7979

8080
if result != nil {
8181
cerr.Code = result.Result
@@ -107,7 +107,7 @@ func addPodToContiv(nc *clients.NWClient, pInfo *cniapi.CNIPodAttr) {
107107
}
108108

109109
out := CNIResponse{
110-
CNIVersion: "0.6.0",
110+
CNIVersion: "0.3.1",
111111
}
112112

113113
out.IPs = append(out.IPs, &cni.IPConfig{

scripts/netContain/scripts/contivNet.sh

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ if [ "$CONTIV_ROLE" = "netmaster" ]; then
5757
echo "INFO: Starting contiv netmaster"
5858
/contiv/bin/netmaster $@
5959
elif [ "$CONTIV_ROLE" = "netplugin" ]; then
60-
cp /contiv/bin/contivk8s /opt/cni/bin/
6160
echo "INFO: Starting contiv netplugin"
6261
/contiv/bin/netplugin $@
6362
echo "ERROR: Contiv netplugin has exited with $?"

version/CURRENT_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0-beta
1+
latest

0 commit comments

Comments
 (0)