-
Notifications
You must be signed in to change notification settings - Fork 40.7k
DRA ResourceSlice mixins #131357
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
base: master
Are you sure you want to change the base?
DRA ResourceSlice mixins #131357
Conversation
Adding the "do-not-merge/release-note-label-needed" label because no release-note block was detected, please follow our release note process to remove it. 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. |
Please note that we're already in Test Freeze for the Fast forwards are scheduled to happen every 6 hours, whereas the most recent run was: Thu Apr 17 13:31:58 UTC 2025. |
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. |
999e261
to
f8bc05f
Compare
f8bc05f
to
4b0ebe3
Compare
pkg/features/kube_features.go
Outdated
@@ -1162,6 +1169,10 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate | |||
{Version: version.MustParse("1.33"), Default: true, PreRelease: featuregate.Beta}, | |||
}, | |||
|
|||
DRAResourceSliceMixins: { | |||
{Version: version.MustParse("1.33"), Default: false, PreRelease: featuregate.Alpha}, // TODO(mortent): Update to 1.34 before merge. |
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.
This should be 1.34
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.
(just saw TODO comment, you're on top of it!)
d50a8b3
to
be0bc55
Compare
db49121
to
63e51ae
Compare
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: mortent The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This PR may require API review. If so, when the changes are ready, complete the pre-review checklist and request an API review. Status of requested reviews is tracked in the API Review project. |
63e51ae
to
defdad6
Compare
defdad6
to
5c494bc
Compare
5c494bc
to
78b6b31
Compare
78b6b31
to
4267c23
Compare
@mortent: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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. I understand the commands that are listed here. |
/test pull-kubernetes-e2e-kind-ipv6 |
type CounterSet struct { | ||
Name UniqueString | ||
Counters map[string]Counter | ||
MixinRefs []UniqueString |
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.
I'm renaming the field here to prevent the code generation from trying to automatically convert this field. It seems like it thinks it can automatically convert between slice of string and slice of uniquestring, but the result doesn't work.
This is ready for review. /assign @johnbelamaric @pohly |
/remove-sig api-machinery |
PR needs rebase. 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. |
What type of PR is this?
/kind feature
/kind api-change
What this PR does / why we need it:
This implements kubernetes/enhancements#5238
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Scheduler perf tests are not in this PR since the tests are pinned at the 1.33 emulated version, ref #131973 (comment)
Does this PR introduce a user-facing change?
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: