k8s 常用命令
程序员文章站
2022-03-12 12:19:49
...
1.pod相关
查看某一命名空间下pod
kubectl get pod -n 命名空间
查看某一命名空间下pod并显示更丰富的信息
kubectl get pod -n 命名空间 -o wide
查看所有命名空间的pod
kubectl get pod --all-namespaces
查看所有命名空间下的pod并显示更丰富的信息
kubectl get pod --all-namespaces -o wide
查看某一pod相关创建信息
kubectl describe pod -n 命名空间 POD名称
查看某一pod日志
kubectl logs -f -n 命名空间 POD名称 --tail=日志显示行数
登录某一Pod
kubectl exec -it -n 命名空间 pod名称 sh
2.查看service
查看某一命名空间下pod
kubectl get svc -n 命名空间
其他命令参考"查看pod"
3.查看ingress
查看某一命名空间下ingress
kubectl get ingress -n 命名空间
其他命令参考"查看pod"