Rancher集群出现有几个pod在Rancher ui上无法删除,一直是Removing状态。可以尝试从k8s的kubectl命令行进行删除。
pod是ternamtied的,这类直接使用强制删除命令,首先使用kubectl get nodes
获取所有节点,kubectl get namespace
获取所有命名空间。使用参数 -o wide
显示所有信息列。
强制删除资源命令如下
kubectl delete pod podname --force --grace-period=0 (pod是一种资源,还有其它资源也可以如类似命令)
Comments | NOTHING