Skip to content

Commit 6016002

Browse files
bryan-coxclaude
andcommitted
test(e2e): OCPBUGS-98387: align Available condition timeout with waitTimeout
Increase the HostedCluster Available condition timeout from 30m to 45m to match the overall waitTimeout already used for version rollout. Azure VM-to-node registration regularly exceeds 30 minutes when 6 clusters are created in parallel, causing premature timeouts in the self-managed e2e presubmit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d7b1ccd commit 6016002

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • test/e2e/v2/cmd/create-guests

test/e2e/v2/cmd/create-guests/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ func run(ctx context.Context, cfg envConfig) error {
179179

180180
// Phase 3: Watch for Available condition on all clusters.
181181
log.Println("Phase 3: Waiting for all clusters to become Available")
182-
availableErrors := waitForClustersAvailable(ctx, mgmtClient, cfg.namespace, named, 30*time.Minute)
182+
availableErrors := waitForClustersAvailable(ctx, mgmtClient, cfg.namespace, named, 45*time.Minute)
183183
for _, ns := range named {
184184
if err := availableErrors[ns.Variant]; err != nil {
185185
log.Printf("ERROR: cluster %s (%s) did not become Available: %v", ns.name, ns.Variant, err)

0 commit comments

Comments
 (0)