Kubernetes 常用命令
作者:
寺院的研究僧 | 来源:发表于
2018-04-26 00:03 被阅读51次
查询组件状态
kubectl get cs
查询名字空间
kubectl get ns
查询节点
kubectl get nodes -o wide
查看kubedns状态
kubectl get pod -n kube-system -o wide| grep dns
查看kubedns日志
kubectl get pod -n kube-system | grep dns | awk '{print "kubectl -n kube-system logs "$1" kubedns"}' |bash
kubectl get pod -n kube-system | grep dns | awk '{print "kubectl -n kube-system logs "$1" dnsmasq"}' |bash
kubectl get pod -n kube-system | grep dns | awk '{print "kubectl -n kube-system logs "$1" sidecar"}' |bash
本文标题:Kubernetes 常用命令
本文链接:https://www.haomeiwen.com/subject/wbmulftx.html
网友评论