-
Notifications
You must be signed in to change notification settings - Fork 5
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 NetworkProtection
controller
#462
Conversation
The `NetworkProtection` controller ensures that a finalizer is present on the `Network` resource as long as it is being referenced/used by resources like `NetworkInterface`s or `AliasPrefix`es.
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.
Please double-check with the kubernetes pv-protection controller how caching might affect the removal of the finalizer - do they ever do a live check (w/o cache) agains the kube-apiserver?
Thanks @adracus for the review! Regarding the non cached access: from looking at the pv protection controller there is only one |
752fc73
to
5a101e2
Compare
5a101e2
to
94e9d36
Compare
Proposed Changes
The
NetworkProtection
controller ensures that a finalizer is present on theNetwork
resource as long as it is being referenced/used by resources likeNetworkInterface
s orAliasPrefix
es.Fixes #444