Skip to content

Commit f46f27d

Browse files
committed
increase the timeout for scaling out
this change makes the timeout 15 minutes for the autoscaler test where we scale out to maximum size. on some platforms, it appears that 5 minutes is not enough time.
1 parent 44e6187 commit f46f27d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pkg/autoscaler/autoscaler.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ var _ = Describe("Autoscaler should", framework.LabelAutoscaler, framework.Label
856856
Eventually(func() (bool, error) {
857857
nodes, err := framework.GetReadyAndSchedulableNodes(client)
858858
return len(nodes) == caMaxNodesTotal, err
859-
}, framework.WaitOverMedium, pollingInterval).Should(BeTrue(), "Cluster failed to reach %d nodes", caMaxNodesTotal)
859+
}, framework.WaitLong, pollingInterval).Should(BeTrue(), "Cluster failed to reach %d nodes", caMaxNodesTotal)
860860

861861
// Wait for all nodes to become ready, we wait here to help ensure
862862
// that the cluster has reached a steady state and no more machines

0 commit comments

Comments
 (0)