Skip to content

Commit a04b4ae

Browse files
author
Wei Tie
committed
Update vagrant and scripts that support setting k8s version
1 parent e7723e1 commit a04b4ae

File tree

7 files changed

+28
-23
lines changed

7 files changed

+28
-23
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
DEFAULT_DOCKER_VERSION := 1.12.6
99
V2PLUGIN_DOCKER_VERSION := 1.13.1
10-
DEFAULT_CONTIV_K8S_VERSION := v1.8.6
10+
CONTIV_K8S_VERSION := stable
1111
SHELL := /bin/bash
1212
# TODO: contivmodel should be removed once its code passes golint and misspell
1313
EXCLUDE_DIRS := bin docs Godeps scripts vagrant vendor install contivmodel
@@ -137,7 +137,7 @@ start:
137137
# kubernetes cluster bringup/cleanup targets
138138
k8s-cluster:
139139
vagrant plugin install vagrant-cachier
140-
cd vagrant/k8s/ && vagrant up
140+
cd vagrant/k8s/ && CONTIV_K8S_VERSION=$(CONTIV_K8S_VERSION) vagrant up
141141

142142
k8s-l3-cluster:
143143
CONTIV_L3=1 make k8s-cluster
@@ -152,7 +152,7 @@ k8s-l3-destroy:
152152
# kubernetes test targets
153153
k8s-test:
154154
CONTIV_TEST=1 make k8s-cluster
155-
cd vagrant/k8s/ && vagrant ssh k8master -c 'bash -lc "cd /opt/gopath/src/github.com/contiv/netplugin && make run-build"'
155+
cd vagrant/k8s/ && vagrant ssh k8master -c 'bash -lc "cd /opt/gopath/src/github.com/contiv/netplugin && make deps checks clean compile"'
156156
cd $(GOPATH)/src/github.com/contiv/netplugin/scripts/python && PYTHONIOENCODING=utf-8 ./createcfg.py -scheduler 'k8s' -binpath contiv/bin -install_mode 'kubeadm'
157157
CONTIV_K8S_USE_KUBEADM=1 CONTIV_NODES=3 go test -v -timeout 540m ./test/systemtests -check.v -check.abort -check.f $(K8S_SYSTEM_TESTS_TO_RUN)
158158
cd vagrant/k8s && vagrant destroy -f

install/k8s/cluster/bootstrap_centos.sh

+11-9
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if [ $EUID -ne 0 ]; then
55
exit 1
66
fi
77

8-
set -e
8+
set -ex
99

1010
swapoff -a
1111
setenforce 0
@@ -38,14 +38,16 @@ EOF
3838

3939
sysctl --system
4040

41-
yum remove -y docker \
42-
docker-common \
43-
container-selinux \
44-
docker-selinux \
45-
docker-engine \
46-
docker-engine-selinux
41+
yum remove -y docker docker-common container-selinux docker-selinux docker-engine docker-engine-selinux
42+
yum install -y docker
43+
systemctl enable docker && systemctl start docker
4744

48-
yum install -y docker kubelet kubeadm kubectl
45+
k8s_version="$1"
46+
if [ "$k8s_version" = "stable" ]; then
47+
yum install -y kubelet kubeadm kubectl
48+
else
49+
v="${k8s_version#v}"
50+
yum install -y "kubelet-$v" "kubeadm-$v" "kubectl-$v"
51+
fi
4952

50-
systemctl enable docker && systemctl start docker
5153
systemctl enable kubelet && systemctl start kubelet

install/k8s/cluster/k8smaster_centos.sh

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

6-
if [ ! -z "$CONTIV_TEST" ]; then
6+
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/

install/k8s/cluster/k8sworker_centos.sh

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

install/k8s/contiv/base.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ kind: ClusterRole
1919
apiVersion: rbac.authorization.k8s.io/v1beta1
2020
metadata:
2121
name: contiv-netplugin
22-
namespace: kube-system
2322
rules:
2423
- apiGroups:
2524
- ""
@@ -68,7 +67,6 @@ kind: ClusterRole
6867
apiVersion: rbac.authorization.k8s.io/v1beta1
6968
metadata:
7069
name: contiv-netmaster
71-
namespace: kube-system
7270
rules:
7371
- apiGroups:
7472
- ""
@@ -79,6 +77,7 @@ rules:
7977
- namespaces
8078
- networkpolicies
8179
verbs:
80+
- get
8281
- watch
8382
- list
8483
- update

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-
mkdir -p /opt/cni/bin
6160
cp /contiv/bin/contivk8s /opt/cni/bin/
6261
echo "INFO: Starting contiv netplugin"
6362
/contiv/bin/netplugin $@

vagrant/k8s/Vagrantfile

+8-4
Original file line numberDiff line numberDiff line change
@@ -205,13 +205,17 @@ Vagrant.configure(2) do |config|
205205
EOS
206206
end
207207

208-
c.vm.provision :shell, path: '../../install/k8s/cluster/bootstrap_centos.sh'
208+
if !ENV['CONTIV_K8S_VERSION'].nil? && !ENV['CONTIV_K8S_VERSION'].empty?
209+
k8s_version = ENV['CONTIV_K8S_VERSION']
210+
else
211+
k8s_version = 'stable'
212+
end
213+
214+
c.vm.provision :shell, path: '../../install/k8s/cluster/bootstrap_centos.sh', args: [k8s_version]
209215
if role == 'master'
210216
c.vm.network 'forwarded_port', guest: 9999, host: 9999
211217
# Install kubernetes on master
212-
# With the latest 1.4.4 kube*, kubeadm hangs frequently while waiting for the control plane to be available.
213-
# So using v1.4.1 as per https://github.com/kubernetes/kubernetes/issues/33729
214-
c.vm.provision :shell, path: '../../install/k8s/cluster/k8smaster_centos.sh', args: [token, member_info['contiv_control_ip'], ENV['CONTIV_K8S_VERSION'] || 'stable']
218+
c.vm.provision :shell, path: '../../install/k8s/cluster/k8smaster_centos.sh', args: [token, master_ip, master_port, k8s_version]
215219
else
216220
# Install kubernetes on nodes
217221
c.vm.provision :shell, path: '../../install/k8s/cluster/k8sworker_centos.sh', args: [token, "#{master_ip}:#{master_port}"]

0 commit comments

Comments
 (0)