Skip to content

Commit 5982e18

Browse files
authored
Merge pull request #8941 from sbueringer/pr-increase-apply-timeout
🌱 test/e2e: increase apply timeout to 1m
2 parents 916b187 + e6526e1 commit 5982e18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/e2e/scale.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ func getClusterCreateFn(clusterProxy framework.ClusterProxy, namespace string) c
502502
log.Logf("Applying the cluster template yaml of cluster %s", klog.KRef(namespace, clusterName))
503503
Eventually(func() error {
504504
return clusterProxy.Apply(ctx, clusterTemplateYAML)
505-
}, 10*time.Second).Should(Succeed(), "Failed to apply the cluster template of cluster %s", klog.KRef(namespace, clusterName))
505+
}, 1*time.Minute).Should(Succeed(), "Failed to apply the cluster template of cluster %s", klog.KRef(namespace, clusterName))
506506
}
507507
}
508508

test/framework/clusterctl/clusterctl_helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ func ApplyCustomClusterTemplateAndWait(ctx context.Context, input ApplyCustomClu
373373
log.Logf("Applying the cluster template yaml of cluster %s", klog.KRef(input.Namespace, input.ClusterName))
374374
Eventually(func() error {
375375
return input.ClusterProxy.Apply(ctx, input.CustomTemplateYAML, input.Args...)
376-
}, 10*time.Second).Should(Succeed(), "Failed to apply the cluster template")
376+
}, 1*time.Minute).Should(Succeed(), "Failed to apply the cluster template")
377377

378378
// Once we applied the cluster template we can run PreWaitForCluster.
379379
// Note: This can e.g. be used to verify the BeforeClusterCreate lifecycle hook is executed

0 commit comments

Comments
 (0)