diff --git a/pkg/minikube/cluster/commands.go b/pkg/minikube/cluster/commands.go index 1a86b806bf7c09dc4cc221757a0785d32996ce16..e2fe2ff773c442765b205221585af05298138fd7 100644 --- a/pkg/minikube/cluster/commands.go +++ b/pkg/minikube/cluster/commands.go @@ -35,9 +35,6 @@ var localkubeSystemdTmpl = `[Unit] Description=Localkube Documentation=https://github.com/kubernetes/minikube/tree/master/pkg/localkube -Wants=network-online.target -After=network-online.target - [Service] Type=notify Restart=always diff --git a/test/integration/start_stop_delete_test.go b/test/integration/start_stop_delete_test.go index 116903ee06968ffb4f304a5b9267b7bd7b2b90cd..ceecc92ef44589eb17d6698d692cdc339aa87f18 100644 --- a/test/integration/start_stop_delete_test.go +++ b/test/integration/start_stop_delete_test.go @@ -46,6 +46,10 @@ func TestStartStop(t *testing.T) { t.Fatalf("IP command returned an invalid address: %s", ip) } + // TODO:r2d4 The KVM driver can't handle + // starting and stopping immediately + time.Sleep(30 * time.Second) + checkStop := func() error { runner.RunCommand("stop", true) return runner.CheckStatusNoFail("Stopped")