Skip to content

Commit

Permalink
WIP test only if ipv4 connectivity works between pods
Browse files Browse the repository at this point in the history
Signed-off-by: Natanael Copa <[email protected]>
  • Loading branch information
ncopa committed Apr 18, 2024
1 parent 9c0e3ca commit d6e2085
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inttest/dualstack/dualstack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func (s *DualstackSuite) SetupSuite() {
}, metav1.CreateOptions{})
s.Require().NoError(err)
s.NoError(common.WaitForPod(s.Context(), kc, "nginx-worker1", "default"), "nginx-worker1 pod did not start")

/*

Check failure on line 149 in inttest/dualstack/dualstack_test.go

View workflow job for this annotation

GitHub Actions / Lint

File is not `gofmt`-ed with `-s` (gofmt)
// test ipv6 address
err = wait.PollImmediateWithContext(s.Context(), 100*time.Millisecond, time.Minute, func(ctx context.Context) (done bool, err error) {
s.Require().Equal(len(targetPod.Status.PodIPs), 2)
Expand All @@ -163,7 +163,7 @@ func (s *DualstackSuite) SetupSuite() {
return strings.Contains(out, "Welcome to nginx"), nil
})
s.Require().NoError(err)

*/
// test ipv4 address
err = wait.PollImmediateWithContext(s.Context(), 100*time.Millisecond, time.Minute, func(ctx context.Context) (done bool, err error) {
s.Require().Equal(len(targetPod.Status.PodIPs), 2)
Expand Down

0 comments on commit d6e2085

Please sign in to comment.