We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97da797 commit 6b44d71Copy full SHA for 6b44d71
test/utils/wait.go
@@ -32,7 +32,7 @@ func WaitForPods(t *testing.T, ctx context.Context, client ctrlruntimeclient.Cli
32
33
t.Log("Waiting for pods to be available…")
34
35
- err := wait.PollUntilContextTimeout(ctx, 500*time.Millisecond, 3*time.Minute, false, func(ctx context.Context) (done bool, err error) {
+ err := wait.PollUntilContextTimeout(ctx, 500*time.Millisecond, 5*time.Minute, false, func(ctx context.Context) (done bool, err error) {
36
pods := corev1.PodList{}
37
if err := client.List(ctx, &pods, listOpts...); err != nil {
38
return false, err
0 commit comments