-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
🌱 Add missing comments with serialized prefix #11807
🌱 Add missing comments with serialized prefix #11807
Conversation
Hi @tsuzu. 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-sigs/prow repository. |
/assign @JoelSpeed |
@tsuzu Any reason why we want to keep this PR in draft, or can we un-draft? :) |
// timeout is the duration after which a node is considered unhealthy | ||
// if the condition has been in the given status. |
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.
Potentially this reads better?
// timeout is the duration after which a node is considered unhealthy | |
// if the condition has been in the given status. | |
// timeout is the duration that a node must be in a given status for, | |
// after which the node is considered unhealthy. | |
// For example, with a value of "1h", the node must match the status | |
// for at least 1 hour before being considered unhealthy. |
// +kubebuilder:validation:Type=string | ||
// +kubebuilder:validation:MinLength=1 | ||
Status corev1.ConditionStatus `json:"status"` | ||
|
||
// timeout is the duration after which a node is considered unhealthy |
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.
Perhaps include the suggestion I made on the v1beta1 type
// +kubebuilder:validation:Type=string | ||
// +kubebuilder:validation:MinLength=1 | ||
Status corev1.ConditionStatus `json:"status"` | ||
|
||
// timeout is the duration after which a node is considered unhealthy |
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.
Perhaps include the description suggestion I had on the v1beta1 type
Ah, sorry! I'd have liked to recheck the description and changes. |
f96935b
to
26906b5
Compare
/ok-to-test (probably needs |
26906b5
to
b5dbbeb
Compare
I usually forget it... Thank you! |
Apply suggestions from code review Co-authored-by: Joel Speed <[email protected]>
b5dbbeb
to
be7e672
Compare
Thx! /approve |
LGTM label has been added. Git tree hash: ed180bac94037ee52b84fcd75aca97e769f54f65
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sbueringer 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 |
What this PR does / why we need it:
but non-API resources are ignored. This is the list of ignored fields.
I'm not a native English speaker, so I appreciate it if you tell me know gramatical mistakes or awkwardness !
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):A part of #11238
The left task is only adding missing
spec
status
items
. updated task list #11238 (comment)