Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fpapon/kcheat


https://github.com/fpapon/kcheat

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

= Kubernetes Cheat Sheet

== Clean zombie pods

If you have a disk pressure on a node, you can try to clean up all zombie pods:

[source, bash]
----
kubectl get pods --all-namespaces | egrep -i 'Evicted|Terminated|ContainerStatusUn|Error' | awk '{print $2 " --namespace=" $1}' | xargs kubectl delete pod --force=true --wait=false --grace-period=0
----