-
Notifications
You must be signed in to change notification settings - Fork 42.1k
Add Feature:ExecProbeTimeout tag to exec readiness/liveness probe tests #106743
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 Feature:ExecProbeTimeout tag to exec readiness/liveness probe tests #106743
Conversation
|
@azylinski: 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 DetailsInstructions 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. |
|
Welcome @azylinski! |
|
Hi @azylinski. 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. DetailsInstructions 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. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: azylinski The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
/lgtm |
|
/ok-to-test |
| Description: A Pod is created with liveness probe with a Exec action on the Pod. If the liveness probe call does not return within the timeout specified, liveness probe MUST restart the Pod. | ||
| */ | ||
| ginkgo.It("should be restarted with an exec liveness probe with timeout [MinimumKubeletVersion:1.20] [NodeConformance]", func() { | ||
| ginkgo.It("should be restarted with an exec liveness probe with timeout [MinimumKubeletVersion:1.20] [NodeConformance] [Feature:ExecProbeTimeout]", func() { |
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 want to lose coverage of this functionality in OSS Nodeconformance test grid. Adding Feature will exclude this test. I sent a proposal to address it: kubernetes/enhancements#3042
Also, this is a known issue that e2eskipper.SkipUnlessFeatureGateEnabled is not working as expected all the time.
I don't think we can take this PR as is. Perhaps looking into why skipper is not working as expected would be a better course of actions.
/hold
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.
According to: https://kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/
The ExecProbeTimeout feature is enabled in GA since 1.20.
Also, in the same doc:
"
A General Availability (GA) feature is also referred to as a stable feature. It means:
- The feature is always enabled; you cannot disable it.
"
In other words, the e2eskipper.SkipUnlessFeatureGateEnabled skip would never apply - and the test would always run.
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.
Saying that - adding [Feature:ExecProbeTimeout] tag is not correct anymore, since the feature is in GA already.
Sergey, do you have any suggestions, how to follow-up with this issues?
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.
If the feature is always enabled, you can close this PR
Adding missing Feature tag would make it easier to skip in testgrid's correctness tests
/kind cleanup
/kind failing-test
/sig node
/cc @jkaniuk