# Удаление подов в статусе Error

```bash
kubectl get pods --field-selector 'status.phase=Failed' -o name | xargs kubectl delete
```