kubernetes service中的故障排查
- 查看某个资源的定义和用法
kubectl explain
- 查看Pod的状态
kubectl get pods
kubectl describe pods my-pod
- 监控Pod状态的变化
kubectl get pod -w
可以看到一个 namespace 中所有的 pod 的 phase 变化,请参考 Pod 的生命周期。
- 查看 Pod 的日志
kubectl logs my-pod
kubectl logs my-pod -c my-container
kubectl logs -f my-pod
kubectl logs -f my-pod -c my-container
-f 参数可以 follow 日志输出。
- 交互式 debug
kubectl exec my-pod -it /bin/bash
kubectl top pod POD_NAME --container
主题授权提示:请在后台主题设置-主题授权-激活主题的正版授权,授权购买:RiTheme官网
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。