Skip to content

Instantly share code, notes, and snippets.

@caiocampoos
Last active February 28, 2024 17:59
Show Gist options
  • Save caiocampoos/317f33f2a09c97695ba30b93cee8d8f2 to your computer and use it in GitHub Desktop.
Save caiocampoos/317f33f2a09c97695ba30b93cee8d8f2 to your computer and use it in GitHub Desktop.
rogue-namespace.sh
(
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