Skip to content

Commit

Permalink
skip IngressIP on hyperv
Browse files Browse the repository at this point in the history
  • Loading branch information
11janci committed Jul 16, 2020
1 parent d58c6cd commit eb79da3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/integration/fn_tunnel_cmd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ func validateServiceStable(ctx context.Context, t *testing.T, profile string) {
}

t.Run("IngressIP", func(t *testing.T) {
if HyperVDriver() && runtime.GOOS == "windows" {
t.Skip("The test WaitService/IngressIP is broken on hyperv https://github.com/kubernetes/minikube/issues/8381")
}
// Wait until the nginx-svc has a loadbalancer ingress IP
err = wait.PollImmediate(5*time.Second, Minutes(3), func() (bool, error) {
rr, err := Run(t, exec.CommandContext(ctx, "kubectl", "--context", profile, "get", "svc", "nginx-svc", "-o", "jsonpath={.status.loadBalancer.ingress[0].ip}"))
Expand Down

0 comments on commit eb79da3

Please sign in to comment.