lengthen pod deletion timeout to prevent flakes

This commit is contained in:
David Ashpole
2017-02-08 13:12:51 -08:00
parent 1be74e39fa
commit ab2ce9cd73
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ var _ = framework.KubeDescribe("Container Lifecycle Hook", func() {
var podClient *framework.PodClient
const (
podCheckInterval = 1 * time.Second
podWaitTimeout = 2 * time.Minute
podWaitTimeout = 3 * time.Minute
postStartWaitTimeout = 2 * time.Minute
preStopWaitTimeout = 30 * time.Second
)