K8S 查看 Pod 日志
Posted catoop
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了K8S 查看 Pod 日志相关的知识,希望对你有一定的参考价值。
如果容器已经崩溃停止,您可以仍然使用 kubectl logs --previous
获取该容器的日志,只不过需要添加参数 --previous
。 如果 Pod 中包含多个容器,而您想要看其中某一个容器的日志,那么请在命令的最后增加容器名字作为参数。
下文将 Pod 称作为 容器组
# 追踪名称空间 nsA 下容器组 pod1 的日志
kubectl logs -f pod1 -n nsA
# 追踪名称空间 nsA 下容器组 pod1 中容器 container1 的日志
kubectl logs -f pod1 -c container1 -n nsA
# 查看容器组 nginx 下所有容器的日志
kubectl logs nginx --all-containers=true
# 查看带有 app=nginx 标签的所有容器组所有容器的日志
kubectl logs -lapp=nginx --all-containers=true
# 查看容器组 nginx 最近20行日志
kubectl logs --tail=20 nginx
# 查看容器组 nginx 过去1个小时的日志
kubectl logs --since=1h nginx
(END)
以上是关于K8S 查看 Pod 日志的主要内容,如果未能解决你的问题,请参考以下文章