Open
Description
I seem to see this this call:
cm := &corev1.ConfigMap{}
err := r.Get(ctx, types.NamespacedName{Name: "sink-filters", Namespace: "kubearchive"}, cm)
Translating into this request under the covers:
https://10.96.0.1:443/api/v1/configmaps?limit=500&resourceVersion=0
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?