From aecd5bb7ef285fa0082da2ade7d28fda36ba342d Mon Sep 17 00:00:00 2001
From: Priya Wadhwa <priyawadhwa@google.com>
Date: Fri, 15 May 2020 12:49:25 -0700
Subject: [PATCH] fix -A flag, remove flags

---
 test/integration/start_stop_delete_test.go | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/test/integration/start_stop_delete_test.go b/test/integration/start_stop_delete_test.go
index 2f389a0509..03116efb1d 100644
--- a/test/integration/start_stop_delete_test.go
+++ b/test/integration/start_stop_delete_test.go
@@ -45,12 +45,7 @@ func TestStartStop(t *testing.T) {
 			args    []string
 		}{
 			{"old-k8s-version", constants.OldestKubernetesVersion, []string{
-				// default is the network created by libvirt, if we change the name minikube won't boot
-				// because the given network doesn't exist
-				"--kvm-network=default",
-				"--kvm-qemu-uri=qemu:///system",
-				"--disable-driver-mounts",
-				"--keep-context=false",
+
 				"--container-runtime=docker",
 			}},
 			{"newest-cni", constants.NewestKubernetesVersion, []string{
@@ -175,7 +170,7 @@ func additionalLogs(ctx context.Context, t *testing.T, profile string) {
 	}
 	t.Log(rr.Output())
 
-	rr, err = Run(t, exec.CommandContext(ctx, Target(), []string{"kubectl", "-p", profile, "--", "get", "po", "-A"}...))
+	rr, err = Run(t, exec.CommandContext(ctx, Target(), []string{"kubectl", "-p", profile, "--", "get", "po", "--all-namespaces"}...))
 	if err != nil {
 		t.Logf("error: %q: %v", rr.Command(), err)
 	}