File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,11 @@ if [ ! -z "$CONTIV_TEST" ]; then
8
8
chmod 0644 /etc/kubernetes/admin.conf
9
9
cd /opt/gopath/src/github.com/contiv/netplugin/install/k8s/contiv/
10
10
./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
11
14
else
12
15
cp /opt/gopath/src/github.com/contiv/netplugin/install/k8s/contiv/base.yaml /shared/contiv.yaml
13
16
fi
17
+
14
18
kubectl apply -f /shared/contiv.yaml
Original file line number Diff line number Diff line change @@ -30,10 +30,7 @@ class ContivComposer(object):
30
30
'CONTIV_NETMASTER_ETCD_ENDPOINTS' )
31
31
]
32
32
# 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" ]
37
34
# add binary mount points to run tests
38
35
container ['volumeMounts' ].append ({
39
36
'mountPath' : '/contiv/bin' ,
Original file line number Diff line number Diff line change @@ -494,6 +494,9 @@ func (k *kubePod) startNetplugin(args string) error {
494
494
}
495
495
496
496
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
+
497
500
startNetpluginCmd := (k .node .suite .basicInfo .BinPath + `/netplugin --vlan-if=` +
498
501
k .node .suite .hostInfo .HostDataInterfaces + k .commonArgs () + args + ` > ` + netpluginLogLocation + ` 2>&1` )
499
502
You can’t perform that action at this time.
0 commit comments