-
Notifications
You must be signed in to change notification settings - Fork 40.9k
scheduler_perf: Set version emulation only when QueueingHints is disabled #132555
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
scheduler_perf: Set version emulation only when QueueingHints is disabled #132555
Conversation
This issue is currently awaiting triage. If a SIG or subproject determines this is a relevant issue, they will accept it by applying the The 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-sigs/prow repository. |
/test pull-kubernetes-scheduler-perf |
Looks good /approve |
/assign @sanposhiho |
…bled Signed-off-by: utam0k <[email protected]>
0cd90db
to
f437aa4
Compare
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
LGTM label has been added. Git tree hash: cb5f2b789d5721a4f3dac098f744c93b0a262e76
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: macsko, sanposhiho, utam0k 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 |
I don't think it's a big thing /release-note-none |
@sanposhiho: you can only set the release note label to release-note-none if the release-note block in the PR body text is empty or "none". In response to this:
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-sigs/prow repository. |
@utam0k can you remove the release note |
Done 🙆♀️ |
@utam0k |
What type of PR is this?
/kind bug
/sig scheduling
What this PR does / why we need it:
Currently, scheduler_perf tests unconditionally emulate v1.33, preventing tests from using features introduced in v1.34 and later.
This PR modifies the version emulation logic to only emulate v1.33 when QueueingHints is explicitly disabled in test configuration.
SchedulerQueueingHints: false
→ v1.33 emulation (unchanged)SchedulerQueueingHints: true
→ No emulation (can use v1.34+ features)Which issue(s) this PR is related to:
Fixes #132482
Special notes for your reviewer:
Does this PR introduce a user-facing change?
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: