-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Flaky test: Kueue when Creating a Job With Queueing [It] Should unsuspend a job and set nodeSelectors #1025
Conversation
✅ Deploy Preview for kubernetes-sigs-kueue canceled.
|
Hi @BinL233. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
as a follow up (or at some point) we may consider pulling all images before running e2e tests, as in k/k: https://github.com/kubernetes/kubernetes/blob/master/test/e2e/e2e.go#L249-L252
@@ -141,7 +141,7 @@ var _ = ginkgo.Describe("Kueue", func() { | |||
return workload.IsAdmitted(createdWorkload) && | |||
apimeta.IsStatusConditionTrue(createdWorkload.Status.Conditions, kueue.WorkloadFinished) | |||
|
|||
}, util.Timeout, util.Interval).Should(gomega.BeTrue()) | |||
}, util.LongTimeout, util.Interval).Should(gomega.BeTrue()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alculquicondor, BinL233 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
There is another flaky test: #1027 /retest |
It looks like it wasn't long enough https://prow.k8s.io/view/gs/kubernetes-jenkins/pr-logs/pull/kubernetes-sigs_kueue/1014/pull-kueue-test-e2e-main-1-24/1687045071767080960 |
At this point I think it is better to implement pre-pull. I will open an Issue |
What type of PR is this?
/kind bug
What this PR does / why we need it:
Create const LongTimeout for e2e test.
Pods in test sometimes takes long time because of the image pulling.
Which issue(s) this PR fixes:
Fixes #1021
Special notes for your reviewer:
Does this PR introduce a user-facing change?