You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reflectors and Informers should stop their ongoing watches if SIGTERM has been received. This allows any event handlers to do the final iterations before k8s kills a controller.
fixes#151 and fixes#152 with tokio::signal and a futures::select call.
drops a lot of Reflector logic to defer to Informer.
Seems to work pretty well, but may need to deal with desyncs better.
Ran into the unordered resourceVersion issue on a really old namespace.
Need to double check if that can happen with old version.
fixes#151 and fixes#152 with tokio::signal and a futures::select call.
drops a lot of Reflector logic to defer to Informer.
Seems to work pretty well, but may need to deal with desyncs better.
Ran into the unordered resourceVersion issue on a really old namespace.
Need to double check if that can happen with old version.
Reflectors and Informers should stop their ongoing watches if SIGTERM has been received. This allows any event handlers to do the final iterations before k8s kills a controller.
Might have to be integrated with #151
The text was updated successfully, but these errors were encountered: