-
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
🌱 Ensure finalizers are resilient on reconciliation #9471
🌱 Ensure finalizers are resilient on reconciliation #9471
Conversation
|
Welcome @adityabhatia! |
Hi @adityabhatia. 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/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.
Thanks for picking this up!
/ok-to-test
f0daa7d
to
886cdbd
Compare
/area e2e-testing |
/test |
@killianmuldoon: The
The following commands are available to trigger optional jobs:
Use
In response to this:
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-cluster-api-e2e-full-main |
219eb8f
to
6d916d2
Compare
/test pull-cluster-api-e2e-full-main |
89eefd1
to
d40e02b
Compare
/test pull-cluster-api-e2e-full-main |
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.
Let's remember to monitor these tests and merge them into the ordinary quickstart as a follow-up. That'll help reduce the overall number of tests we're running.
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.
Mostly nits and one question:
Could this be simplified by make it more similar to the OwnerGraph test? i.e. we don't have to compare the current state to the initial state, we only have to compare the current state to a map of types -> finalizers. WDYT?
I introduced the |
2f3e62a
to
0b911b0
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.
/approve
Thanks for working on this - really good to have this in place.
f56b644
to
7d805d1
Compare
Sorry didn't get to it today, will review again on Monday |
7d805d1
to
593ab3d
Compare
593ab3d
to
5126180
Compare
Thank you! /lgtm |
LGTM label has been added. Git tree hash: 992eb26547cd1258e632db6d78d0772794b0b708
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: killianmuldoon, 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: Cluster API objects contain finalizers which must be resilient in the event of deletion. The deletion of finalizers can happen due to a diverse events like by mistake or system attacks. In such an event the deleted finalizers should be added back to ClusterAPI objects on reconciliation.
Which issue(s) this PR fixes:
Fixes #9434
/area e2e-testing