-
Notifications
You must be signed in to change notification settings - Fork 51
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: skip reconciliation when label selector does not match #431
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #431 +/- ##
==========================================
- Coverage 85.06% 78.55% -6.52%
==========================================
Files 19 31 +12
Lines 1346 2490 +1144
==========================================
+ Hits 1145 1956 +811
- Misses 125 445 +320
- Partials 76 89 +13 ☔ View full report in Codecov by Sentry. |
I'm not sure I'm fully understanding the scenario described in the description. Are you talking about this watch? It looks like that watch+handler adds items to the workqueue the owner of the secret (which is the CR), but does not check that the owner matches the label selector. If I'm understanding correctly, another way to implement this would be to have a custom handler that:
This would ensure the request never even makes it into the workqueue and would avoid unnecessary reconcile calls (which can mess with controller-runtime metrics and logging in a way that might be undesirable). We had a similar thing in Rukpak (except based on a "provisionerClassName" match rather than a label selector): https://github.com/operator-framework/rukpak/blob/5ffcfff615566f3a1a482a5f6649cd3e07f2427f/pkg/util/util.go#L52-L108 |
@joelanford your idea sounds much more elegant. In an attempt to try and distribute the workload I asked @kurlov and he kindly agreed to take a look at implementing this in a week or so. |
PR needs rebase. 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-sigs/prow repository. |
@joelanford I have opened a separate PR #443. |
Issue
foo=bar
.foo=bar
processes the CR as expectedfoo=another
, also reconcilesfoo=bar
CR. This is not expected.Root cause
There is controller.Watch set for
Secret
kind. This watch has event handler. The Event handler only filters events byGroupVersionKind
of the CR so label selector is ignoredFix
Check for the matching label selector before performing reconcile. Skip reconcile if label is not matching