kube-ops-view
kube-ops-view copied to clipboard
All Error Pods are not displayed
When a node has multiple Pods in "Error" status, they do not all appear in the node view :
# 35 pods on the node
kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=ip-10-10-103-28.eu-central-1.compute.internal | wc -l
35
# 6 "error" pods
kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=ip-10-10-103-28.eu-central-1.compute.internal | grep Error | wc -l
6
but only 26 pods in the view :

Is there a way to display (maybe with an option) all the pods located in the node please ?
It would be useful because when a node is almost full (close the maximum pod number allocatable to a node, 110 for instance), the alert KubeletTooManyPods is raised but it does not appear like so in the dashboard.
Thanks