Skip to content

Instantly share code, notes, and snippets.

@magickatt
Created September 19, 2022 14:27
Show Gist options
  • Save magickatt/f9d0d13ff162a342b4ac641f1848aaef to your computer and use it in GitHub Desktop.
Save magickatt/f9d0d13ff162a342b4ac641f1848aaef to your computer and use it in GitHub Desktop.
Delete a k8s namespace that is stuck in terminating state
#!/bin/bash
NAMESPACE=test
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
killall kubectl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment