码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-06-24 23:20:00      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:get   iat   system   nali   无法   img   方式   info   warning   

 

删除报错
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无法删除的问题

标签:get   iat   system   nali   无法   img   方式   info   warning   

原文地址:https://www.cnblogs.com/lidezhen/p/13190559.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!