欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

K8s 常用命令

程序员文章站 2022-03-12 12:19:49
...

查看default命名空间下的所有pod:

kubectl get po -o wide

查看xxx命名空间下的所有pod:

kubectl get po -n xxx -o wide

查看服务:

kubectl get svc -o wide

命令行强制删除pod:

kubectl delete pod podName --force --grace-period=0

根据配置文件删除pod:

kubectl delete -f eureka.yml

删除xxx命名空间下的pod:

kubectl delete pod podName -n xxx