ks8 a container name must be specified for pod报错处理
在现网的一个系统上通过kubectl logs pod名称
查看日志时报错a container name must be specified for pod
。出现该问题比较容易解决,一般出现该问题的都是多个container共用一个pod的情况,比如sidecar模式下,这时候查看日志的时候需要指定Pod外,还需要通过-c参数指定container。
1kubectl logs -f <pod-name> -n <namespace> -c <container_name>
2</container_name></namespace></pod-name>
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/kubectl-logs-pod/6692.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.