Double timeouts for envtests (#355)

This commit is contained in:
Malte Poll 2022-08-09 14:48:41 +02:00 committed by GitHub
parent 8f5f84deb5
commit 264e4beac3
4 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ var _ = Describe("AutoscalingStrategy controller", func() {
ClusterAutoscalerDeploymentNamespace = "kube-system" ClusterAutoscalerDeploymentNamespace = "kube-system"
AutoscalingStrategyName = "test-strategy" AutoscalingStrategyName = "test-strategy"
timeout = time.Second * 10 timeout = time.Second * 20
duration = time.Second * 2 duration = time.Second * 2
interval = time.Millisecond * 250 interval = time.Millisecond * 250
) )

View File

@ -28,7 +28,7 @@ var _ = Describe("NodeImage controller", func() {
secondImage = "image-2" secondImage = "image-2"
scalingGroupID = "scaling-group" scalingGroupID = "scaling-group"
timeout = time.Second * 10 timeout = time.Second * 20
duration = time.Second * 2 duration = time.Second * 2
interval = time.Millisecond * 250 interval = time.Millisecond * 250
) )

View File

@ -23,7 +23,7 @@ var _ = Describe("PendingNode controller", func() {
const ( const (
pendingNodeName = "pending-node" pendingNodeName = "pending-node"
timeout = time.Second * 10 timeout = time.Second * 20
duration = time.Second * 2 duration = time.Second * 2
interval = time.Millisecond * 250 interval = time.Millisecond * 250
) )

View File

@ -21,7 +21,7 @@ var _ = Describe("ScalingGroup controller", func() {
nodeImageName = "node-image" nodeImageName = "node-image"
scalingGroupName = "test-group" scalingGroupName = "test-group"
timeout = time.Second * 10 timeout = time.Second * 20
duration = time.Second * 2 duration = time.Second * 2
interval = time.Millisecond * 250 interval = time.Millisecond * 250
) )