Miha Jakovac

Logo

.NET & DevOps Engineer | Cloud Specialist | Team Enabler

My name is Miha and I've been tinkering with computers for some time now. I remember getting Pentium 100 in the late '90s and that's how it all started.

Specialities:

14 October 2020

Delete evicted pods from Kubernetes

by Miha J.

In the previous nugget I covered listing evicted pods in Kubernetes. Like with all CRUD kubectl operations you can also delete those by replacing get with delete.

kubectl delete pods --all-namespaces --field-selector 'status.phase==Failed'
tags: kubernetes