test: increase test cluster wait timeout 5->30 seconds

This commit is contained in:
Pavel Sviderski
2025-03-03 12:21:22 +10:00
parent 0760ba3b18
commit 3f4f263c05
+1 -1
View File
@@ -89,7 +89,7 @@ func (p *Provisioner) initCluster(ctx context.Context, machines []Machine) error
// Init a new cluster on the first machine.
initMachine := machines[0]
if err := p.WaitMachineReady(ctx, initMachine, 5*time.Second); err != nil {
if err := p.WaitMachineReady(ctx, initMachine, 30*time.Second); err != nil {
return fmt.Errorf("wait for machine %q to be ready: %w", initMachine.Name, err)
}