-
Notifications
You must be signed in to change notification settings - Fork 40k
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 typos in KeyUsage constant names #82511
Conversation
Hi @abursavich. Thanks for your PR. I'm waiting for a kubernetes 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. |
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.
/ok-to-test
Thanks for the catch
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. |
changes in kubeadm or i think the correct approach is to introduce these changes in a new |
@abursavich |
If the change would break encoding (rpc, storage, etc.), then I don't think there would be a question — v1beta2 would be required. But this change only breaks the Go package API and, rightly or wrongly, there does seem to be plenty of precedents for that.
I dropped the question in the slack channel and will wait for a response... Thanks! |
We do not guarantee source compatibility between releases. This came up on the sig-arch mailing list too. Source incompatible changes like this are allowed without new packages. |
I didn't try to grok all 85k lines of log output, but it seems like those test failures were unrelated and around copying test artifacts after the fact. /retest |
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
Thanks, Please update the release note with the original and replacement constants.
/remove-kind api-change |
Done, thanks. |
/lgtm |
/assign @smarterclayton |
Gentle nudge... small change waiting 2 weeks for approval. |
i can only approve the kubeadm change. the rest is on the api-approvers. |
/assign @liggitt |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: abursavich, liggitt, neolit123 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 |
/retest Review the full test history for this PR. Silence the bot with an |
What type of PR is this?
/kind api-change
/kind cleanup
What this PR does / why we need it:
This fixes typos in KeyUsage constant names.
I am generating code from the API packages and this tickled an edge case where I'm trying to generate nicer enum names.
Which issue(s) this PR fixes:
N/A
Special notes for your reviewer:
As possible precedence for changing constant names, one of these typos was introduced by a PR attempting to fix typos: #59464
Does this PR introduce a user-facing change?:
I'm not 100% sure what constitutes a "user-facing" change... This could break users of the Go
k8s.io/api/certificates/v1beta1
package.