Skip to content

Instantly share code, notes, and snippets.

@jorge07
Created September 25, 2022 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jorge07/ed51a034fa9189f08c8cc8c5120d0448 to your computer and use it in GitHub Desktop.
Save jorge07/ed51a034fa9189f08c8cc8c5120d0448 to your computer and use it in GitHub Desktop.
Kuberenetes delete all failed jobs
```sh
$ kubectl delete job $(kubectl get job -o=jsonpath='{.items[?(@.status.failed==1)].metadata.name}')
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment