Skip to content

Commit

Permalink
fix(test): adjust timeout for step LabelNodes
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Castilio dos Santos <[email protected]>
  • Loading branch information
alexcastilio committed Feb 4, 2025
1 parent 2f1b9c0 commit 056a666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/framework/kubernetes/label-nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 056a666

Please sign in to comment.