解决k8s namespace terminating无法删除的问题

Posted lidezhen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决k8s namespace terminating无法删除的问题相关的知识,希望对你有一定的参考价值。

 

删除报错
warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.
Error from server (Conflict): Operation cannot be fulfilled on namespaces "etcd": The system is ensuring all content is removed from this namespace. Upon completion, this namespace will automatically be purged by the system

技术图片

 

查看namespace,状态为terminating

技术图片

 

 

 解决方式:

1.在master节点上启动proxy

kubectl proxy --port=8009

2.执行删除命令

ns=etcd

curl -X PUT     --data-binary @<(kubectl get namespace $ns -o json | sed ‘s/"kubernetes"//g‘)     -H "Content-Type: application/json"     http://127.0.0.1:8009/api/v1/namespaces/$ns/finalize

技术图片

 

 删除成功,再查看namespace 

技术图片

 

以上是关于解决k8s namespace terminating无法删除的问题的主要内容,如果未能解决你的问题,请参考以下文章

k8s容器资源限制,资源监控

k8s 删除namespace

k8s 概念name && namespace

K8S中如何跨namespace 访问服务?为什么ping不通ClusterIP?

k8s中新建namespace和指定

K8S-删除Terminating状态的namespace