Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/e2e/framework/pod/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ import (

const (
// defaultPodDeletionTimeout is the default timeout for deleting pod.
defaultPodDeletionTimeout = 3 * time.Minute
defaultPodDeletionTimeout = 10 * time.Minute

// podListTimeout is how long to wait for the pod to be listable.
podListTimeout = time.Minute
podListTimeout = 5 * time.Minute

podRespondingTimeout = 15 * time.Minute

// How long pods have to become scheduled onto nodes
podScheduledBeforeTimeout = podListTimeout + (20 * time.Second)

// podStartTimeout is how long to wait for the pod to be started.
podStartTimeout = 5 * time.Minute
podStartTimeout = 10 * time.Minute

// singleCallTimeout is how long to try single API calls (like 'get' or 'list'). Used to prevent
// transient failures from failing tests.
Expand Down