@@ -65,7 +65,7 @@ func validateMultiNodeStart(ctx context.Context, t *testing.T, profile string) {
65
65
}
66
66
67
67
// Make sure minikube status shows 2 nodes
68
- rr , err = Run (t , exec .CommandContext (ctx , Target (), "-p" , profile , "status" ))
68
+ rr , err = Run (t , exec .CommandContext (ctx , Target (), "-p" , profile , "status" , "--alsologtostderr" ))
69
69
if err != nil {
70
70
t .Fatalf ("failed to run minikube status. args %q : %v" , rr .Command (), err )
71
71
}
@@ -89,7 +89,7 @@ func validateAddNodeToMultiNode(ctx context.Context, t *testing.T, profile strin
89
89
}
90
90
91
91
// Make sure minikube status shows 3 nodes
92
- rr , err = Run (t , exec .CommandContext (ctx , Target (), "-p" , profile , "status" ))
92
+ rr , err = Run (t , exec .CommandContext (ctx , Target (), "-p" , profile , "status" , "--alsologtostderr" ))
93
93
if err != nil {
94
94
t .Fatalf ("failed to run minikube status. args %q : %v" , rr .Command (), err )
95
95
}
@@ -121,7 +121,7 @@ func validateStopRunningNode(ctx context.Context, t *testing.T, profile string)
121
121
}
122
122
123
123
// Make sure minikube status shows 2 running nodes and 1 stopped one
124
- rr , err = Run (t , exec .CommandContext (ctx , Target (), "-p" , profile , "status" ))
124
+ rr , err = Run (t , exec .CommandContext (ctx , Target (), "-p" , profile , "status" , "--alsologtostderr" ))
125
125
if err != nil && rr .ExitCode != 7 {
126
126
t .Fatalf ("failed to run minikube status. args %q : %v" , rr .Command (), err )
127
127
}
@@ -177,7 +177,7 @@ func validateDeleteNodeFromMultiNode(ctx context.Context, t *testing.T, profile
177
177
}
178
178
179
179
// Make sure status is back down to 2 hosts
180
- rr , err = Run (t , exec .CommandContext (ctx , Target (), "-p" , profile , "status" ))
180
+ rr , err = Run (t , exec .CommandContext (ctx , Target (), "-p" , profile , "status" , "--alsologtostderr" ))
181
181
if err != nil {
182
182
t .Fatalf ("failed to run minikube status. args %q : %v" , rr .Command (), err )
183
183
}
0 commit comments