赞
踩
#Kubernetes向进程发送一个SIGTERM信号并等待一定的秒数(默认为30),使其正常关闭。如果它没有及时关闭,则通过SIGKILL终止该进程。因此,为了确保你的进程总是正常关闭,进程需要正确处理SIGTERM信号。
kubectl delete pod pod_name
kubectl delete pod -l nio4444=true
#删除整个命名空间(pod将会伴随命名空间自动删除)
kubectl delete -ns namespace_name
# 删除命名空间中的所有pod,但保留命名空间
kubectl delete pod --all
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。