Merge pull request #127440 from kannon92/fix-image-default-flake

Deflake "should use the image defaults if command and args are blank" test by increasing timeout
This commit is contained in:
Kubernetes Prow Robot 2024-09-18 18:34:51 +01:00 committed by GitHub
commit e8d0e006be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,6 +18,7 @@ package node
import (
"context"
"time"
"github.com/onsi/gomega"
@ -50,7 +51,7 @@ var _ = SIGDescribe("Containers", func() {
// The agnhost's image default entrypoint / args are: "/agnhost pause"
// which will print out "Paused".
gomega.Eventually(ctx, pollLogs, 3, framework.Poll).Should(gomega.ContainSubstring("Paused"))
gomega.Eventually(ctx, pollLogs, time.Minute, framework.Poll).Should(gomega.ContainSubstring("Paused"))
})
/*