-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Stop watches on controller stop #2983
Comments
This should be possible by calling RemoveInformer. It is your responsibility to make sure this is actually unused though.
No, this is not correct. The controller owns the source but it does not own the watch, because the watch is shared among possibly many sources. It also looks like we don't properly stop the source, but it seems what you want is the watch to be stopped (which implicitly stops all sources that use the watch) and not only the source, so fixing that wouldn't actually solve your issue. /retitle Stop watches on controller stop |
Thanks for the fast response and the pointer to RemoveInformer. I was able to start and stop watching a third-party resource with this now. (For people having a similar requirement, the code is here). Unfortunately, this only seems to work cleanly once. To be able to react correctly to arbitrary sequences of "third-party CRD is installed", "third-party CRD is deleted", "third-party CRD is installed", etc. there would need to be a way to revert the |
Re-Adding the informer is no problem, but the issue is that the source references the now-removed informer. You will have to re-construct the controller, starting the one you previously stopped will not work. |
Thanks a lot for the guidance, that works nicely! 👍 For other people with a similar use case, the updated code is here and a small test script is here. Just for the record, this approach requires to use the @alvaroaleman FYI I'm fine with closing this issue, since my actual use case is solved. But I assume you would like to keep it open for tracking the more general issue (stopping watches when the controller is stopped)? |
When creating a controller with
controller.Start(ctx);
and later stopping it by cancelling the provided context, watches defined on the controller will continue to trigger their event handler. Since the watch is owned by the controller, I would expect all watches defined on the controller to be terminated once the controller is terminated.A reproduction repository is here: https://github.com/dash0hq/controller-runtime-reproducer/tree/main
This can be reproduced with this test script contained in the repository, which makes sure to continuously create events that will trigger the watch (if it is active).
This produces the following output:
As you can see, the event handler receives updates after the controller has been stopped.
In case you are curious about the wider context: My actual use case for this is stopping/removing a watch dynamically. I want to handle create/update events for third party resource types (monitoring.coreos.com.PrometheusRule for example). I do not know in advance whether the third party CRD is deployed or not. Thus I have a reconciler watching
apiextensionsv1.CustomResourceDefinition
with a filter predicate. If the CRD in question is created, I start a new controller/reconciler watching that resource type. If the CRD is deleted later, I really would like to stop or remove the watch. Otherwise an error message is emitted to the logs every couple of seconds:"Unhandled Error" err="pkg/mod/k8s.io/[email protected]/tools/cache/reflector.go:243: Failed to watch monitoring.coreos.com/v1, Kind=PrometheusRule: the server could not find the requested resource" logger="UnhandledError"
. This apparently happens within controller-runtime.So far I have not found any way to stop or remove a watch.
These previous issues seem to be related, but it does not seem that any of them ever resulted in something that allows stopping watches.
The text was updated successfully, but these errors were encountered: