Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#341 from matrus2/kwok
Browse files Browse the repository at this point in the history
Increase timeout for kwok test to make it stable
  • Loading branch information
k8s-ci-robot authored Oct 20, 2023
2 parents 673da72 + 00825c1 commit ce9327f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/kwok/kwok_with_config/kwok_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func TestKwokCluster(t *testing.T) {
}
pod := pods.Items[0]
// wait for the pod to be ready
err = wait.For(conditions.New(cfg.Client().Resources()).PodConditionMatch(&pod, corev1.PodReady, corev1.ConditionTrue), wait.WithTimeout(time.Minute*1))
err = wait.For(conditions.New(cfg.Client().Resources()).PodConditionMatch(&pod, corev1.PodReady, corev1.ConditionTrue), wait.WithTimeout(time.Minute*3))
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit ce9327f

Please sign in to comment.