Skip to content

Instantly share code, notes, and snippets.

@dchaumond
Created March 31, 2020 09:22
Show Gist options
  • Save dchaumond/bbebc4371fee8a458d7e3b5edfbf3679 to your computer and use it in GitHub Desktop.
Save dchaumond/bbebc4371fee8a458d7e3b5edfbf3679 to your computer and use it in GitHub Desktop.
Unlock namespaces stucked in Terminating mode, remove finalizers
#!/usr/bin/env bash
namespace=$1
kubectl get ns $namespace -o json | jq '.spec = {"finalizers":[]}' | kubectl replace --raw /api/v1/namespaces/$namespace/finalize -f -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment