-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Make HugePages const name consistent. #54748
Conversation
@@ -989,7 +989,7 @@ type StorageMedium string | |||
const ( | |||
StorageMediumDefault StorageMedium = "" // use whatever the default is for the node | |||
StorageMediumMemory StorageMedium = "Memory" // use memory (tmpfs) | |||
StorageMediumHugepages StorageMedium = "HugePages" // use hugepages | |||
StorageMediumHugePages StorageMedium = "HugePages" // use hugepages |
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.
Simply a rename, StorageMediumHugepages-> StorageMediumHugePages, right?
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.
exactly :)
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.
Doesn't it break API compatibility? Do we guarantee any in k8s.i/api
?
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 don't think it breaks API compatibility. It just change the const name. It doesn't change the actual name.
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.
Const name is API. Changing its name breaks builds to anyone who imported k8s.i/api
and used api.StorageMediumHugepages
in his go code. Question is if we support k8s.i/api
stability.
@kubernetes/sig-api-machinery-pr-reviews
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.
We don't. In major updates we have a number of changes usually which breaks compilation of 3rdparty code.
/retest |
/lgtm |
/assign @thockin For approval. |
/approve no-issue |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sttts, thockin, xiangpengzhao Associated issue requirement bypassed by: thockin The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
Removing the sig/api-machinery label: SIG API Machinery doesn't own the contents of the API. /sig node |
Automatic merge from submit-queue (batch tested with PRs 54761, 54748, 53991, 54485, 46951). If you want to cherry-pick this change to another branch, please follow the instructions here. |
What this PR does / why we need it:
Make HugePages const name in v1 be consistent with the name in api.
kubernetes/pkg/api/types.go
Line 686 in f9e6142
Which issue this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close that issue when PR gets merged): fixes #Special notes for your reviewer:
Release note: