Kubernetes强制删除Terminating的ns

本文主要介绍了在使用k8s的过程中Terminating的ns无法删除,如何强制删除Terminating的ns。

kubectl get ns 查看处于Terminating的ns

1
2
[root@VM_1_4_centos ~]# kubectl get ns | grep testns
testns Terminating 21d

将处于Terminating的ns的描述文件保存下来

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[root@VM_1_4_centos ~]# kubectl get ns testns -o json > tmp.json
[root@VM_1_4_centos ~]# cat tmp.json
{
"apiVersion": "v1",
"kind": "Namespace",
"metadata": {
"creationTimestamp": "2020-10-13T14:28:07Z",
"name": "testns",
"resourceVersion": "13782744400",
"selfLink": "/api/v1/namespaces/testns",
"uid": "9ff63d71-a4a1-43bc-89e3-78bf29788844"
},
"spec": {
"finalizers": [
"kubernetes"
]
},
"status": {
"phase": "Terminating"
}
}

本地启动kube proxy

1
kubectl proxy --port=8081

新开窗口执行删除操作

1
curl -k -H "Content-Type: application/json" -X PUT --data-binary @tmp.json http://127.0.0.1:8081/api/v1/namespaces/testns/finalize

Kubernetes强制删除Terminating的ns
https://www.niewx.cn/2020/10/14/2020-10-15-Force-delete-Terminating-ns/
作者
VashonNie
发布于
2020年10月14日
许可协议