You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In openshift version 4.15.0 based k8s cluster we are using k8s.io/client-go v0.28.6 in our application. When we call listing APIs for resources (like pods), the passed limit parameter of 100 is returning 814 rows. This is causing resources issues in our application. See the below our logs for reference/example
time="2025-03-18T10:31:08Z" level=info msg="Number of rows received from kube api-server is 814, remaining row count is 161, computed optimal row limit is 500, current list iteration is 1, max list iteration is 1000" resource=pods
What did you expect to happen?
The Openshift API Server should return less than or equal to number of rows requested in the API call.
How can we reproduce it (as minimally and precisely as possible)?
What happend?:
In openshift version 4.15.0 based k8s cluster we are using k8s.io/client-go v0.28.6 in our application. When we call listing APIs for resources (like pods), the passed limit parameter of 100 is returning 814 rows. This is causing resources issues in our application. See the below our logs for reference/example
time="2025-03-18T10:31:08Z" level=info msg="Number of rows received from kube api-server is 814, remaining row count is 161, computed optimal row limit is 500, current list iteration is 1, max list iteration is 1000" resource=pods
What did you expect to happen?
The Openshift API Server should return less than or equal to number of rows requested in the API call.
How can we reproduce it (as minimally and precisely as possible)?
options := metav1.ListOptions{Limit: 100}
pods, err := k8s.GetClient().CoreV1().Pods(metav1.NamespaceAll).List(ctx, options)
The text was updated successfully, but these errors were encountered: