Skip to content

Commit e7723e1

Browse files
author
Wei Tie
committed
Disable kube-dns
Signed-off-by: Wei Tie <[email protected]>
1 parent 009eee9 commit e7723e1

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

install/k8s/cluster/k8smaster_centos.sh

+4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ if [ ! -z "$CONTIV_TEST" ]; then
88
chmod 0644 /etc/kubernetes/admin.conf
99
cd /opt/gopath/src/github.com/contiv/netplugin/install/k8s/contiv/
1010
./contiv-compose add-systest ./base.yaml > /shared/contiv.yaml
11+
# remove kube-dns
12+
# TODO: enable kube-dns
13+
kubectl delete deployment -n kube-system kube-dns
1114
else
1215
cp /opt/gopath/src/github.com/contiv/netplugin/install/k8s/contiv/base.yaml /shared/contiv.yaml
1316
fi
17+
1418
kubectl apply -f /shared/contiv.yaml

install/k8s/contiv/contiv-compose

+1-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,7 @@ class ContivComposer(object):
3030
'CONTIV_NETMASTER_ETCD_ENDPOINTS')
3131
]
3232
# make the container idle
33-
container['command'] = ["/bin/sh", "-c"]
34-
container['args'] = [
35-
'cp /contiv/bin/contivk8s /opt/cni/bin/contivk8s && tail -f /dev/null'
36-
]
33+
container['command'] = ["tail", "-f", "/dev/null"]
3734
# add binary mount points to run tests
3835
container['volumeMounts'].append({
3936
'mountPath': '/contiv/bin',

test/systemtests/kubeadm_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,9 @@ func (k *kubePod) startNetplugin(args string) error {
494494
}
495495

496496
logrus.Infof("Starting netplugin on %s", k.node.Name())
497+
copyContivK8SCmd := `cp /contiv/bin/contivk8s /opt/cni/bin/contivk8s`
498+
k.exec(podName, copyContivK8SCmd, "kube-system")
499+
497500
startNetpluginCmd := (k.node.suite.basicInfo.BinPath + `/netplugin --vlan-if=` +
498501
k.node.suite.hostInfo.HostDataInterfaces + k.commonArgs() + args + ` > ` + netpluginLogLocation + ` 2>&1`)
499502

0 commit comments

Comments
 (0)