Remove default cni flags from integration tests

pull/3617/head
Anders F Björklund 2019-02-05 20:03:29 +01:00
parent 0071a940a7
commit 7ef2918100
1 changed files with 2 additions and 2 deletions

View File

@ -208,9 +208,9 @@ func (m *MinikubeRunner) Start() {
// TODO(tstromberg): Deprecate this in favor of making it possible for tests to define explicit flags.
switch r := m.Runtime; r {
case constants.ContainerdRuntime:
opts = "--container-runtime=containerd --network-plugin=cni --enable-default-cni --docker-opt containerd=/var/run/containerd/containerd.sock"
opts = "--container-runtime=containerd --docker-opt containerd=/var/run/containerd/containerd.sock"
case constants.CrioRuntime:
opts = "--container-runtime=crio --network-plugin=cni --enable-default-cni"
opts = "--container-runtime=crio"
}
m.RunCommand(fmt.Sprintf("start %s %s %s --alsologtostderr --v=5", m.StartArgs, m.Args, opts), true)