Skip to content

Instantly share code, notes, and snippets.

@unguiculus
Last active April 20, 2022 00:02
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save unguiculus/d915e911ba04f1f97ecea4f617a2eef5 to your computer and use it in GitHub Desktop.
Save unguiculus/d915e911ba04f1f97ecea4f617a2eef5 to your computer and use it in GitHub Desktop.
Kubernetes
#!/usr/bin/env bash
set -e
set -o pipefail
kubectl proxy &
proxy_pid="$!"
trap 'kill "$proxy_pid"' EXIT
for ns in $(kubectl get namespace --field-selector=status.phase=Terminating --output=jsonpath="{.items[*].metadata.name}"); do
echo "Removing finalizers from namespace '$ns'..."
curl -H "Content-Type: application/json" -X PUT "127.0.0.1:8001/api/v1/namespaces/$ns/finalize" -d @- \
< <(kubectl get namespace "$ns" --output=json | jq '.spec = { "finalizers": [] }')
echo
echo "Force-deleting namespace '$ns'..."
kubectl delete namespace "$ns" --force --grace-period=0 --ignore-not-found=true
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment