From 45241337eea02829b689ded078a4f4a1892ffffb Mon Sep 17 00:00:00 2001 From: Pablo Fontanilla Date: Tue, 17 Mar 2026 13:44:20 +0100 Subject: [PATCH] NO-JIRA: increase precondition cluster health timeout to 10m Pacemaker stop sequences on TNF nodes take 4-8 minutes, making the 5-minute precondition timeout insufficient for disruptive test lanes. Bump to 10 minutes to avoid premature test skips. Co-Authored-By: Claude Opus 4.6 --- test/extended/two_node/utils/common.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/extended/two_node/utils/common.go b/test/extended/two_node/utils/common.go index f22cc90c0209..5c80694b0ed8 100644 --- a/test/extended/two_node/utils/common.go +++ b/test/extended/two_node/utils/common.go @@ -45,8 +45,8 @@ const ( clusterIsHealthyTimeout = 15 * time.Minute // Precondition timeouts for SkipIfClusterIsNotHealthy. - preconditionClusterHealthyTimeout = 5 * time.Minute // nodes + cluster operators - preconditionEtcdHealthyTimeout = 1 * time.Minute // etcd pods running, two voting members + preconditionClusterHealthyTimeout = 10 * time.Minute // nodes + cluster operators + preconditionEtcdHealthyTimeout = 1 * time.Minute // etcd pods running, two voting members // Max time for a single debug pod exec. debugContainerTimeout = 60 * time.Second