Skip to content

Instantly share code, notes, and snippets.

@hguerrero
Created March 16, 2020 21:46
Show Gist options
  • Save hguerrero/a01334b19062327c9ab2f719f5a5ad78 to your computer and use it in GitHub Desktop.
Save hguerrero/a01334b19062327c9ab2f719f5a5ad78 to your computer and use it in GitHub Desktop.
Delete project stuck on terminating
(
NAMESPACE=your-rogue-namespace
kubectl proxy &
kubectl get namespace $NAMESPACE -o json |jq '.spec = {"finalizers":[]}' >temp.json
curl -k -H "Content-Type: application/json" -X PUT --data-binary @temp.json 127.0.0.1:8001/api/v1/namespaces/$NAMESPACE/finalize
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment