-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
code-generator: add NewFilteredSharedInformerFactory function #54660
code-generator: add NewFilteredSharedInformerFactory function #54660
Conversation
/sig api-machinery |
/retest |
This may be better to implement as a |
@munnerz If it's a function, that's not so bad, but I wouldn't want to see a new method added to the interface if thats what you mean. |
@chancez nope, I mean adding something like: func NewNamespacedSharedInformerFactory(client {{.clientSetInterface|raw}}, namespace string, defaultResync {{.timeDuration|raw}}) SharedInformerFactory { and leaving the existing |
Edit: I misunderstood That would work. That seems like it might interact weirdly with the lister though, which expects a namespace argument which could be different namespace from the one the informer is using. |
I've managed to resolve that by placing the non exported constructor method onto the typed interface. The namespace is plumbed through each group and version interface, along with the factory through each group and versions I've put an example of informers generated with this PR here for you to look at: https://github.com/munnerz/cert-manager/blob/namespaced-informers/third_party/informers/core/v1/configmap.go#L64 You can see here how the namespace is plumbed through to the typed informers: https://github.com/munnerz/cert-manager/blob/namespaced-informers/third_party/informers/factory.go#L121 |
@munnerz Yah, I realized it would work, but what about the |
Hmm, that's a good point. I don't see how we can work around this then with the current design of the SharedIndexInformer interface/Lister interface/version informer interface. If a user were to attempt to get or list objects in another namespace, it would just return not found. Perhaps this, combined with it being an additional constructor function (and so not-so invasive), means we could include this? |
/cc @ncdc |
This somehow contradicts the goal of shared informers as this scales with the number of namespaces. We could have a filter method on the existing shared informers which returns an informer filtered by namespace. |
I agree with @sttts - I don't see any good usecase for that. If you have anything specific on your mind I would like to see it. |
So my use-case for being able to specify a namespace comes from the need to run my application in an environment that constrains the controller to only run in a single namespace. This is a request I've had numerous times, and it usually comes from people running a multi-tenant kubernetes cluster. Another issue I have, that is similarly related, is that I want to be able to modify the I think this is probably something that more and more users are going to ask for as people start building out initializers. For now I will probably just fork the informer-gen and create my own informers for core API types, built against |
Let's take a look at what functions the shared informer factory performs:
All of the generated shared informer constructors take in a Having said all that, I don't think that what @munnerz is asking for is unreasonable, as I've seen multiple people asking for the ability to have a shared informer factory specific to a single namespace. I'd prefer to see it as a new constructor instead of a modification to the existing one ( |
My use case is the same. My controller is supposed to run with minimal permissions in it's own namespace (no access to non-namespaced resources) and this would greatly reduce the amount of boilerplate i have to write. Additionally, I've already ha.d issues where I forgot to add a new informer to my function that waits for caches to sync for all my informers. The autogenerated factories have methods that automatically handle this, and would help prevent mistakes like that. Also I think I'm okay with |
@@ -105,9 +106,10 @@ type sharedInformerFactory struct { | |||
} | |||
|
|||
// NewSharedInformerFactory constructs a new instance of sharedInformerFactory | |||
func NewSharedInformerFactory(client {{.clientSetInterface|raw}}, defaultResync {{.timeDuration|raw}}) SharedInformerFactory { | |||
func NewSharedInformerFactory(client {{.clientSetInterface|raw}}, namespace string, defaultResync {{.timeDuration|raw}}) SharedInformerFactory { |
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.
Without commenting on whether shared informers should offer this feature or not, I do think these options should be converted to a configuration struct (or use the builder pattern, but that seems unnecessarily complex for this). That way, additions won't break the function signature.
0818d3c
to
5150c5d
Compare
lgtm |
/lgtm |
/approve no-issue |
/retest |
1 similar comment
/retest |
Refactor to not change New*Informer constructors Separate namespace and ListOptions filter
75ff389
to
9b1a123
Compare
/lgtm |
@smarterclayton are you fine with this? |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, munnerz, sttts Associated issue: 9 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
Automatic merge from submit-queue (batch tested with PRs 55403, 54660, 55165). If you want to cherry-pick this change to another branch, please follow the instructions here. |
What this PR does / why we need it:
Adds a
namespace
option to the SharedInformerFactory constructor. This is useful when building controllers that may need to scope themselves to a namespace due to RBAC constraints.Workarounds for this involve losing type safety if a user wants to use it for core APIs as well as a SharedInformerFactory type interface, as we have to deal with plain SharedIndexInformers (example here: https://github.com/jetstack-experimental/cert-manager/blob/master/pkg/util/kube/factory.go)
Which issue this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close that issue when PR gets merged): fixes #Fixes kubernetes/code-generator#9
Special notes for your reviewer:
This will require updating all uses of SharedInformerFactory throughout the codebase. I'm going to follow up with later commits in this PR with these changes, but wanted to get this here to get some feedback on the way it's implemented.
Release note:
/cc @sttts @nikhita @deads2k