-
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
Enable list option modification when create list watch #57508
Enable list option modification when create list watch #57508
Conversation
/assign @ncdc |
/ok-to-test |
/joke |
@chechiachang: Why do bees hum? Because they don't know the words. In response to this:
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/test-infra repository. |
@chechiachang This is very helpful for me!! |
@kairen Glad to help:) |
@ncdc Could you take another look at this PR? Thanks. |
} | ||
|
||
// NewListWatchFromClientWithSelectors creates a new ListWatch from the specified client, resource, namespace, field selector, and label selector. | ||
func NewListWatchFromClientWithSelectors(c Getter, resource string, namespace string, fieldSelector fields.Selector, labelSelector labels.Selector) *ListWatch { |
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.
How about a decorator like WithSelectors(NewListWatchFromClient(...))
? All these ListOptions
modifications are orthogonal to the actual ListWatch
construction. ListOptions
have even more fields. We don't want to add yet another constructor after this one. Decorators are more natural.
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.
Sounds much better. Let me rewrite this function. @sttts thanks
c940778
to
d171b3f
Compare
d171b3f
to
8d9d993
Compare
8d9d993
to
4f45d0c
Compare
@sttts Could you take another look at this PR? Any comment will be very appreciated. |
// NewListWatchFromClientWithSelectors creates a new ListWatch from the specified client, resource, namespace, and option modifier. | ||
// Option modifier is a function takes a ListOptions and modifies the consumed ListOptions. Provide customized modifier function | ||
// to apply modification to ListOptions with a field selector, a label selector, or any other desired options. | ||
func NewListWatchFromClientWithModifier(c Getter, resource string, namespace string, optionsModifier func(options *metav1.ListOptions)) *ListWatch { |
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.
To be inline with the naming of filtered informers (NewFilteredSharedInformerFactory
), let's call it NewFilteredListWatchFromClient
.
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.
otherwise lgtm
4f45d0c
to
5fa2263
Compare
5fa2263
to
2780b8f
Compare
/lgtm |
/approve no-issue |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: chechiachang, ncdc, spiffxp, sttts Associated issue requirement bypassed by: sttts 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 |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
lgtm. Thank you! |
The `NewFilteredListWatchFromClient` function introduced in client-go v7.0.0 allows us to filter based on custom fields/labels, therefore we don't need our custom implementation of this functionality. The function was introduced [here](kubernetes/kubernetes#57508) Signed-off-by: Lorenzo Manacorda <[email protected]>
The `NewFilteredListWatchFromClient` function introduced in client-go v7.0.0 allows us to filter based on custom fields/labels, therefore we don't need our custom implementation of this functionality. The function was introduced [here](kubernetes/kubernetes#57508) Signed-off-by: Lorenzo Manacorda <[email protected]>
The `NewFilteredListWatchFromClient` function introduced in client-go v7.0.0 allows us to filter based on custom fields/labels, therefore we don't need our custom implementation of this functionality. The function was introduced [here](kubernetes/kubernetes#57508) Signed-off-by: Lorenzo Manacorda <[email protected]>
The `NewFilteredListWatchFromClient` function introduced in client-go v7.0.0 allows us to filter based on custom fields/labels, therefore we don't need our custom implementation of this functionality. The function was introduced [here](kubernetes/kubernetes#57508) Signed-off-by: Lorenzo Manacorda <[email protected]>
The `NewFilteredListWatchFromClient` function introduced in client-go v7.0.0 allows us to filter based on custom fields/labels, therefore we don't need our custom implementation of this functionality. The function was introduced [here](kubernetes/kubernetes#57508) Signed-off-by: Lorenzo Manacorda <[email protected]>
The `NewFilteredListWatchFromClient` function introduced in client-go v7.0.0 allows us to filter based on custom fields/labels, therefore we don't need our custom implementation of this functionality. The function was introduced [here](kubernetes/kubernetes#57508) Signed-off-by: Lorenzo Manacorda <[email protected]>
The `NewFilteredListWatchFromClient` function introduced in client-go v7.0.0 allows us to filter based on custom fields/labels, therefore we don't need our custom implementation of this functionality. The function was introduced [here](kubernetes/kubernetes#57508) Signed-off-by: Lorenzo Manacorda <[email protected]>
The `NewFilteredListWatchFromClient` function introduced in client-go v7.0.0 allows us to filter based on custom fields/labels, therefore we don't need our custom implementation of this functionality. The function was introduced [here](kubernetes/kubernetes#57508) Signed-off-by: Lorenzo Manacorda <[email protected]>
The `NewFilteredListWatchFromClient` function introduced in client-go v7.0.0 allows us to filter based on custom fields/labels, therefore we don't need our custom implementation of this functionality. The function was introduced [here](kubernetes/kubernetes#57508) Signed-off-by: Lorenzo Manacorda <[email protected]>
The `NewFilteredListWatchFromClient` function introduced in client-go v7.0.0 allows us to filter based on custom fields/labels, therefore we don't need our custom implementation of this functionality. The function was introduced [here](kubernetes/kubernetes#57508) Signed-off-by: Lorenzo Manacorda <[email protected]>
What this PR does / why we need it:
metav1.ListOptions support both field selector and label selector, but the current NewListWatchFromClient in client-go only support field selector.
It would be helpful to use label selector in client-go.
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #
Special notes for your reviewer:
Release note: