Kubernetes Integration

Tried to delete the 'lightspin' namespace from my cluster, but it is stuck in a 'Terminating state'. How can I force the removal of the namespace?

Run from within your Kubernetes cluster

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/lightspin/finalize