Skip to content

Commit

Permalink
wait longer for node termination (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzneal authored Nov 16, 2024
1 parent c85243f commit f0473a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubetest2/internal/deployers/eksapi/static_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func (s *StaticClusterManager) TearDownBusyboxAndNodes() error {

return waitForNodeCondition(s.k8sClient, func(nodes []corev1.Node) bool {
return len(nodes) == 0
}, 10*time.Minute, "Waiting for nodes to be removed")
}, 30*time.Minute, "Waiting for nodes to be removed")
}

func waitForNodeCondition(clientset *kubernetes.Clientset, condition NodeCondition, timeout time.Duration, description string) error {
Expand Down

0 comments on commit f0473a8

Please sign in to comment.