This message was deleted.
# general
a
This message was deleted.
a
Just a regular user myself but I found this online that does help with reporting the Pod usage on the Overview screen.
kubectl delete pod $(kubectl get pods | egrep 'Completed|Error|ContainerStatusUnknown' | awk '{print $1}')
You can edit the
egrep
to remove only what you want and you can add
--all-namespaces
to affect pods outside of your current namespace context