Skip to content

Instantly share code, notes, and snippets.

@moisei
Last active January 15, 2021 20:42
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 moisei/0ac15a113a42116152e27d6e00e5438b to your computer and use it in GitHub Desktop.
Save moisei/0ac15a113a42116152e27d6e00e5438b to your computer and use it in GitHub Desktop.
Kubernetes delete terminating pod
https://kubernetes.io/docs/tasks/run-application/force-delete-stateful-set-pod
kubectl patch pod <pod> -p '{"metadata":{"finalizers":null}}'
kubectl delete pods <pod> --grace-period=0 --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment