GoogleCloudPlatform / metacontroller

Lightweight Kubernetes controllers as a service
https://metacontroller.app/
Apache License 2.0
792 stars 111 forks source link

Support ListOption in informer #172

Open MartinForReal opened 5 years ago

MartinForReal commented 5 years ago

I found that informer doesn't accept ListOptions as parameter as informer in client-go does. I my scenario, We need to update the status of CRD resource when the resources created by crd are updated. So we need to set list option for informer to filter out unrelated resource updates and make controller more efficient.

Do you think it is a reasonable feature request?