本文介绍了删除名称空间停留在“终止"状态.状态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想删除在kubernetes中创建的名称空间.我执行的命令:
I want to delete a namespace created in kubernetes.Command i executed:
kubectl删除名称空间devops-ui
但是该过程花费的时间太长(〜20分钟)并且无法计数.
But the process is taking too long (~20mins) and counting.
在检查minikube仪表板时,仍然有一个没有删除的pod处于终止状态.
On checking the minikube dashboard a pod is still there which is not getting deleted, it is in terminating state.
有解决方案吗?
推荐答案
请首先使用以下命令删除吊舱
Please delete the pods first using below command
kubectl delete pod pod_name_here --grace-period=0 --force --namespace devops-ui
现在删除名称空间
kubectl delete namespaces devops-ui
这篇关于删除名称空间停留在“终止"状态.状态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!