K8s遇到问题解决思路
Posted zc1741845455
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了K8s遇到问题解决思路相关的知识,希望对你有一定的参考价值。
问题排查一 从describe去查找相应的deploy/pod/rs/svc
[[email protected] ~]# kubectl describe po/nginx-f95d765f9-8b6bp
[[email protected] ~]# kubectl describe deploy/nginx
[[email protected] ~]# kubectl describe svc
问题排查二 从pod的logs日志排查
[[email protected] ~]# kubectl logs nginx-f95d765f9-cfm6d
问题排查三 进入pod查看应用排查
[[email protected] ~]# kubectl exec -it nginx-f95d765f9-cfm6d bash
[email protected]:/# ps -ef
以上是关于K8s遇到问题解决思路的主要内容,如果未能解决你的问题,请参考以下文章