From 056a666b6b4ec7c5effbbc027b34c81c8f50518d Mon Sep 17 00:00:00 2001 From: Alex Castilio dos Santos Date: Tue, 4 Feb 2025 17:46:49 +0000 Subject: [PATCH] fix(test): adjust timeout for step LabelNodes Signed-off-by: Alex Castilio dos Santos --- test/e2e/framework/kubernetes/label-nodes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/kubernetes/label-nodes.go b/test/e2e/framework/kubernetes/label-nodes.go index 2d2d2bfc58..e02b5607cc 100644 --- a/test/e2e/framework/kubernetes/label-nodes.go +++ b/test/e2e/framework/kubernetes/label-nodes.go @@ -41,7 +41,7 @@ func (l *LabelNodes) Run() error { return fmt.Errorf("error creating Kubernetes client: %w", err) } - ctx, cancel := context.WithTimeout(context.Background(), defaultTimeoutSeconds*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 10*time.Minute) defer cancel() var nodes *corev1.NodeList