-
Notifications
You must be signed in to change notification settings - Fork 40.1k
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 evented pleg mirror pod & use IsEventedPLEGInUse instead of FG status check #122778
base: master
Are you sure you want to change the base?
Conversation
Skipping CI for Draft Pull Request. |
/test pull-kubernetes-e2e-kind-alpha-beta-features |
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 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. |
/test pull-kubernetes-e2e-kind-alpha-beta-features |
/test pull-kubernetes-unit |
/test pull-kubernetes-e2e-kind-alpha-beta-features |
2 similar comments
/test pull-kubernetes-e2e-kind-alpha-beta-features |
/test pull-kubernetes-e2e-kind-alpha-beta-features |
/test pull-kubernetes-e2e-kind-alpha-beta-features |
1 similar comment
/test pull-kubernetes-e2e-kind-alpha-beta-features |
This comment was marked as duplicate.
This comment was marked as duplicate.
1 similar comment
This comment was marked as duplicate.
This comment was marked as duplicate.
6b4962c
to
8775606
Compare
/test pull-kubernetes-node-e2e-cri-proxy-serial |
8775606
to
8aa4d9c
Compare
/test pull-kubernetes-node-e2e-cri-proxy-serial |
002e29f
to
adb9a2d
Compare
/test pull-kubernetes-node-e2e-cri-proxy-serial |
adb9a2d
to
54c5b3c
Compare
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: pacoxu The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test pull-kubernetes-node-e2e-containerd-alpha-features /test pull-kubernetes-e2e-kind-beta-features |
…efore seeting it to PodInitializing
This fix makes the period to update the global cache timestamp for Evented PLEG shorter in order to unblock pod workers that get stuck in `cache.GetNewerThan()` as fast as Generic PLEG. Before updating the global timestamp, this fix calls Version() CRI API in order to confirm there is no problem with communicating with the runtime. By this, we can assume pods that have not been receiving events are in the latest status.
54c5b3c
to
c530f9c
Compare
/test pull-kubernetes-node-e2e-containerd-alpha-features /test pull-kubernetes-e2e-kind-beta-features /test pull-kubernetes-node-crio-cgrpv1-evented-pleg-e2e-kubetest2 |
This PR is based on #122763, and we use
IsEventedPLEGInUse()
instead ofutilfeature.DefaultFeatureGate.Enabled(features.EventedPLEG)
.Fixes #123087
Context can be found in #122763.