-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Call to get namespaced resources is calling the API to retrieve them all? #3122
Comments
Interesting. That's a different endpoint used for list. Are you listing the configmaps anywhere? This is the endpoing for GET: What version of CR are you running? |
My controller-runtime version:
|
Note also that I see the same behavior for all |
@ggallen do you see any queries that include |
@bigkevmcd, I'll take a look. Are you saying that I am watching |
I don't believe there are any watches. |
If you use the client from mgr.GetClient() you are using the cached client which per default internally creates an informer (including list+watch) after the first get or list call |
I seem to see this this call:
Translating into this request under the covers:
Even though I have specified a name and a namespace, it seems to be trying to get all (up to 500)
ConfigMaps
. Is this expected behavior or is my call somehow wrong?The text was updated successfully, but these errors were encountered: