Skip to content

Commit 06a392c

Browse files
author
Wei Tie
committed
Add systest dev mode and misc review fixes
1. Add contiv-compose add-systest '--start' option to start containers from go path binary location 2. Make k8s builds build binary from local docker 3. Make k8s-dev starts netplugin from binary 4. Removed no longer required steps from contivNet.sh 5. Not sync bin directory if it's not a test mode Signed-off-by: Wei Tie <[email protected]>
1 parent 3e08b79 commit 06a392c

File tree

6 files changed

+61
-57
lines changed

6 files changed

+61
-57
lines changed

Makefile

+5-6
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ start:
136136
# ===================================================================
137137
# kubernetes cluster bringup/cleanup targets
138138
k8s-cluster:
139-
vagrant plugin install vagrant-cachier
139+
vagrant plugin install vagrant-cachier || echo "failed install vagrant-cachier"
140140
cd vagrant/k8s/ && CONTIV_K8S_VERSION=$(CONTIV_K8S_VERSION) vagrant up
141141

142142
k8s-l3-cluster:
@@ -150,13 +150,12 @@ k8s-l3-destroy:
150150

151151
# ===================================================================
152152
# kubernetes dev
153-
k8s-dev:
154-
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 deps checks clean compile"'
153+
k8s-dev: checks-with-docker compile-with-docker binaries-from-container
154+
CONTIV_TEST="dev" make k8s-cluster
156155

157156
# kubernetes test targets
158-
k8s-test:
159-
make k8s-dev
157+
k8s-test: checks-with-docker compile-with-docker binaries-from-container
158+
CONTIV_TEST="sys" make k8s-cluster
160159
cd $(GOPATH)/src/github.com/contiv/netplugin/scripts/python && PYTHONIOENCODING=utf-8 ./createcfg.py -scheduler 'k8s' -binpath contiv/bin -install_mode 'kubeadm'
161160
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)
162161
cd vagrant/k8s && vagrant destroy -f

install/k8s/cluster/bootstrap_centos.sh

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ EOF
4040

4141
sysctl --system
4242

43+
# the image comes with newer version of packages, remove them first
4344
yum remove -y docker docker-common container-selinux docker-selinux docker-engine docker-engine-selinux
4445
yum install -y docker
4546
systemctl enable docker && systemctl start docker
@@ -51,6 +52,8 @@ else
5152
v="${k8s_version#v}"
5253
extra_rpm=""
5354
if [[ "$v" = 1.8* ]]; then
55+
# repo contains more than one kubernetes-cni-0.5.1
56+
# will cause dependency error if not specified
5457
extra_rpm="kubernetes-cni-0.5.1-1"
5558
fi
5659
yum install -y "kubelet-$v" "kubeadm-$v" "kubectl-$v" "$extra_rpm"

install/k8s/cluster/k8smaster_centos.sh

+10-5
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,19 @@ if [ -n "$CONTIV_TEST" ]; then
55
cp /etc/kubernetes/admin.conf /shared/admin.conf
66
chmod 0644 /etc/kubernetes/admin.conf
77
cd /opt/gopath/src/github.com/contiv/netplugin/install/k8s/contiv/
8-
./contiv-compose add-systest --k8s-api https://$2:$3 ./contiv-base.yaml > /shared/contiv.yaml
9-
# remove kube-dns
10-
# TODO: enable kube-dns
11-
kubectl delete deployment -n kube-system kube-dns
8+
9+
if [ "$CONTIV_TEST" = "sys" ]; then
10+
./contiv-compose add-systest --k8s-api https://$2:$3 ./contiv-base.yaml > /shared/contiv.yaml
11+
# remove kube-dns
12+
# TODO: enable kube-dns
13+
kubectl delete deployment -n kube-system kube-dns
14+
elif [ "$CONTIV_TEST" = "dev" ]; then
15+
./contiv-compose add-systest --start --k8s-api https://$2:$3 ./contiv-base.yaml > /shared/contiv.yaml
16+
fi
1217
else
1318
# update to use released version
1419
cd /opt/gopath/src/github.com/contiv/netplugin/install/k8s/contiv/
15-
./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
20+
./contiv-compose use-release --k8s-api https://$2:$3 -v $(cat ../../../version/CURRENT_VERSION) ./contiv-base.yaml > /shared/contiv.yaml
1621
fi
1722

1823
kubectl apply -f /shared/contiv.yaml

install/k8s/contiv/contiv-compose

+35-26
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ class ContivComposer(object):
1515
def add_systest(self, resource, args):
1616
if self._is_resource(resource, 'ConfigMap', 'contiv-config',
1717
'kube-system'):
18-
# pop contiv_etcd (etcd or consul endpoints will be passed in during testing)
19-
resource['data'].pop('contiv_etcd')
18+
if args['start'] != True:
19+
# pop contiv_etcd unless need start contiv service
20+
# etcd or consul endpoints will be passed in during testing
21+
resource['data'].pop('contiv_etcd')
2022
if (self._is_resource(resource, 'DaemonSet', 'contiv-netplugin',
2123
'kube-system') or
2224
self._is_resource(resource, 'ReplicaSet', 'contiv-netmaster',
@@ -25,32 +27,37 @@ class ContivComposer(object):
2527
'containers']:
2628
if container['name'] in ('contiv-netplugin',
2729
'contiv-netmaster'):
28-
# pop etcd endpoints because test case will handle it
29-
container['env'] = [
30-
envar
31-
for envar in container['env']
32-
if envar[
33-
'name'] not in ('CONTIV_NETPLUGIN_ETCD_ENDPOINTS',
34-
'CONTIV_NETMASTER_ETCD_ENDPOINTS')
35-
]
36-
# make the container idle
37-
container['command'] = ["tail", "-f", "/dev/null"]
30+
if args['start'] != True:
31+
# pop etcd endpoints because test case will handle it
32+
container['env'] = [
33+
envar
34+
for envar in container['env']
35+
if envar[
36+
'name'] not in (
37+
'CONTIV_NETPLUGIN_ETCD_ENDPOINTS',
38+
'CONTIV_NETMASTER_ETCD_ENDPOINTS')
39+
]
40+
# make the container idle
41+
container['command'] = ["tail", "-f", "/dev/null"]
3842
# add binary mount points to run tests
3943
container['volumeMounts'].append({
4044
'mountPath': '/contiv/bin',
4145
'name': 'contiv-bin-dir',
42-
'readOnly': False
46+
'readOnly': True
4347
})
48+
4449
container['volumeMounts'].append({
4550
'mountPath': '/contiv/scripts/',
4651
'name': 'contiv-scripts-dir',
47-
'readOnly': False
48-
})
49-
container['volumeMounts'].append({
50-
'mountPath': '/var/log/contiv',
51-
'name': 'contiv-log-dir',
52-
'readOnly': False
52+
'readOnly': True
5353
})
54+
55+
if args['start'] != True:
56+
container['volumeMounts'].append({
57+
'mountPath': '/var/log/contiv',
58+
'name': 'contiv-log-dir',
59+
'readOnly': False
60+
})
5461
resource['spec']['template']['spec']['volumes'].append({
5562
'name': 'contiv-bin-dir',
5663
'hostPath': {'path': '/opt/gopath/bin'}
@@ -62,12 +69,12 @@ class ContivComposer(object):
6269
'/opt/gopath/src/github.com/contiv/netplugin/scripts/netContain/scripts/'
6370
}
6471
})
65-
# systest logging files
66-
resource['spec']['template']['spec']['volumes'].append({
67-
'name': 'contiv-log-dir',
68-
'hostPath': {'path': '/var/log/contiv'}
69-
})
70-
72+
if args['start'] != True:
73+
# systest logging files
74+
resource['spec']['template']['spec']['volumes'].append({
75+
'name': 'contiv-log-dir',
76+
'hostPath': {'path': '/var/log/contiv'}
77+
})
7178

7279
def add_prometheus(self, resource, args):
7380
if (self._is_resource(resource, 'DaemonSet', 'contiv-netplugin',
@@ -295,10 +302,12 @@ def create_cli_args():
295302
systest_parser = subclis.add_parser(
296303
'add-systest',
297304
description="Add system test required updates")
305+
systest_parser.add_argument('--start',
306+
action='store_true',
307+
help='start contiv service')
298308
_add_common_args(systest_parser)
299309
_add_image_args(systest_parser)
300310

301-
302311
# add prometheus
303312
prometheus_parser = subclis.add_parser(
304313
'add-prometheus',

scripts/netContain/scripts/contivNet.sh

+2-18
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,6 @@ echo "$@"
77
echo "INFO: Starting contiv net with ENV:"
88
/usr/bin/env | grep CONTIV_
99

10-
# These files indicate if the netmaster/netplugin process needs to be restarted
11-
touch /tmp/restart_netmaster
12-
touch /tmp/restart_netplugin
13-
14-
#This needs to be fixed, we cant rely on the value being supplied from
15-
# parameters, just explosion of parameters is not a great solution
16-
#export no_proxy="0.0.0.0, 172.28.11.253"
17-
#echo "172.28.11.253 netmaster" > /etc/hosts
18-
19-
#Needed for netplugin to connect with OVS, This needs to be
20-
#fixed as well. netplugin should have OVS locally.
21-
echo "0.0.0.0 localhost" >> /etc/hosts
22-
2310
if [ -z "$CONTIV_ROLE" ]; then
2411
echo "CRITICAL: ENV CONTIV_ROLE must be set"
2512
echo "CRITICAL: Unknown contiv role"
@@ -48,16 +35,13 @@ else
4835
fi
4936
echo "INFO: Running contiv in mode $CONTIV_MODE"
5037

51-
set -uo pipefail
52-
53-
mkdir -p /opt/contiv/
38+
set -ueo pipefail
5439

55-
set +e
5640
if [ "$CONTIV_ROLE" = "netmaster" ]; then
5741
echo "INFO: Starting contiv netmaster"
5842
/contiv/bin/netmaster $@
5943
elif [ "$CONTIV_ROLE" = "netplugin" ]; then
6044
echo "INFO: Starting contiv netplugin"
6145
/contiv/bin/netplugin $@
62-
echo "ERROR: Contiv netplugin has exited with $?"
6346
fi
47+
echo "ERROR: Contiv $CONTIV_ROLE has exited with $?"

vagrant/k8s/Vagrantfile

+6-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ provision_k8 = <<SCRIPT
5151
echo 'export GOPATH=#{gopath_folder}' > /etc/profile.d/envvar.sh
5252
echo 'export GOBIN=$GOPATH/bin' >> /etc/profile.d/envvar.sh
5353
echo 'export GOSRC=$GOPATH/src' >> /etc/profile.d/envvar.sh
54-
echo 'export PATH=$PATH:/usr/local/go/bin:$GOBIN' >> /etc/profile.d/envvar.sh
54+
echo 'export PATH=$GOBIN:$PATH:/usr/local/go/bin' >> /etc/profile.d/envvar.sh
5555
echo 'export KUBECONFIG=/etc/kubernetes/admin.conf' >> /etc/profile.d/envvar.sh
5656
echo "export http_proxy='$1'" >> /etc/profile.d/envvar.sh
5757
echo "export https_proxy='$1'" >> /etc/profile.d/envvar.sh
@@ -141,7 +141,11 @@ Vagrant.configure(2) do |config|
141141

142142
config.vm.synced_folder './export', '/shared'
143143
config.vm.synced_folder './../../../../../', '/opt/gopath/src'
144-
config.vm.synced_folder './../../bin', '/opt/gopath/bin'
144+
145+
if !ENV['CONTIV_TEST'].nil? && !ENV['CONTIV_TEST'].empty?
146+
# mount ./../../bin if it's a test
147+
config.vm.synced_folder './../../bin', '/opt/gopath/bin'
148+
end
145149

146150
if Vagrant.has_plugin?("vagrant-cachier")
147151
config.cache.scope = :box

0 commit comments

Comments
 (0)