-
Notifications
You must be signed in to change notification settings - Fork 219
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
test: implement nodeclaim.spec.terminationGracePeriod CEL tests #1427
test: implement nodeclaim.spec.terminationGracePeriod CEL tests #1427
Conversation
Hi @wmgroot. 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. |
888568b
to
c07a42a
Compare
c07a42a
to
7ea842c
Compare
7ea842c
to
98c503c
Compare
98c503c
to
7784e76
Compare
Pull Request Test Coverage Report for Build 9983338945Details
💛 - Coveralls |
e89df0e
to
c09227b
Compare
@@ -267,6 +267,7 @@ spec: | |||
|
|||
The feature can also be used to allow maximum time limits for long-running jobs which can delay node termination with preStop hooks. | |||
If left undefined, the controller will wait indefinitely for pods to be drained. | |||
pattern: ^([0-9]+(\\.[0-9]+)?(s|m|h))+$ |
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.
why do we need the middle bit?
pattern: ^([0-9]+(\\.[0-9]+)?(s|m|h))+$ | |
pattern: ^([0-9]+(s|m|h))+$ |
Signed-off-by: wmgroot <[email protected]>
c09227b
to
6086cc5
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
Thanks for the commit!
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: njtran, wmgroot 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 |
Description
Implements CEL tests for the new
terminationGracePeriod
field on NodeClaim.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.