Skip to content

Commit e8d0e00

Browse files
authored
Merge pull request kubernetes#127440 from kannon92/fix-image-default-flake
Deflake "should use the image defaults if command and args are blank" test by increasing timeout
2 parents 24a74f8 + 5358be5 commit e8d0e00

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/e2e/common/node/containers.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ package node
1818

1919
import (
2020
"context"
21+
"time"
2122

2223
"github.com/onsi/gomega"
2324

@@ -50,7 +51,7 @@ var _ = SIGDescribe("Containers", func() {
5051

5152
// The agnhost's image default entrypoint / args are: "/agnhost pause"
5253
// which will print out "Paused".
53-
gomega.Eventually(ctx, pollLogs, 3, framework.Poll).Should(gomega.ContainSubstring("Paused"))
54+
gomega.Eventually(ctx, pollLogs, time.Minute, framework.Poll).Should(gomega.ContainSubstring("Paused"))
5455
})
5556

5657
/*

0 commit comments

Comments
 (0)