We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
as an orange-cf-bosh-cli user, in order to force the deletion of a namespace I need a k9s plugin to do so
# git clone paas templates repo ~/bosh/template/admin/delete-k8s-ns.sh
https://github.com/xcoulon/kubectl-terminate
Limitations:
The text was updated successfully, but these errors were encountered:
Should be done with command like:
NAME="<namespace to use>" kubectl get ns $NAME -o json | tr -d '\n' | sed -e 's/\"finalizers\": \[[^]]\+\]/\"finalizers\": []/' | kubectl replace --raw /api/v1/namespaces/$NAME/finalize -f -
But finally this issue is a little bit dangerous for ops users who may delete namespace by error. Closed the issue.
Sorry, something went wrong.
No branches or pull requests
Expected
as an orange-cf-bosh-cli user,
in order to force the deletion of a namespace
I need a k9s plugin to do so
Workaround
Other tested alternatives
https://github.com/xcoulon/kubectl-terminate
Limitations:
The text was updated successfully, but these errors were encountered: