Difference between revisions of "Kubernetes Delete Namespace"
Jump to navigation
Jump to search
| Line 7: | Line 7: | ||
kubectl delete cephcluster.ceph.rook.io/rook-ceph -n rook-ceph | kubectl delete cephcluster.ceph.rook.io/rook-ceph -n rook-ceph | ||
``` | ``` | ||
| + | |||
| + | https://stackoverflow.com/questions/55853312/how-to-force-delete-a-kubernetes-namespace | ||
Revision as of 23:25, 26 June 2021
kubectl api-resources --verbs=list --namespaced -o name \
> | xargs -n 1 kubectl get --show-kind --ignore-not-found -n rook-ceph
kubectl -n rook-ceph patch cephclusters.ceph.rook.io rook-ceph --type merge -p '{"metadata":{"finalizers": [null]}}'
kubectl delete cephcluster.ceph.rook.io/rook-ceph -n rook-ceph
https://stackoverflow.com/questions/55853312/how-to-force-delete-a-kubernetes-namespace