在创建pod时,进入pod失败 kubectl exec -it nginx-deployment-d55b94fd-xcrtg sh error检查问题,一直找不到答案,通过logs发现,同样不能实现在这里插入图片描述查其原因,是kubelet的配置问题,这里修改node节点的kubelet.json配置,在node中分别修改 vi /opt/kubernetes/cfg/kubelet.config------------------在文件末尾添加,认证确认authentication:
#查看k8s的所有node节点 kubectl get node #查看ns的pod kubectl get pod --all-namespaces -o wide kubectl get pod -n kube-system # 显示 Node 的详细信息 kubectl describe node pnode-5 # 显示 Pod 的详细信息, 特别是查看 pod 无法创建的时候的日志 kubectl describe pod <pod-name> -n <ns-name>
# 查看所有 pod 列表, -n 后跟 namespace, 查看指定的命名空间 kubectl get pod kubectl get pod -n kube # 查看 RC 和 service 列表, -o wide 查看详细信息 kubectl get rc,svc kubectl get pod,svc -o wide kubectl get pod <pod-name> -o yaml # 显示 Node 的详细信息 kubectl describe node 192.168.0.
https://jimmysong.io/posts/kubectl-cheatsheet/ Kubectl Cheatsheet kubectl命令技巧大全Posted on November 3, 2017 东坝郊野公园 Aug 27,2016 Fri Nov 3, 2017 2400 Words|Read in about 5 Min Tags: kubernetes Kubectl 自动补全 Kubectl 上下文和配置 创建对象 显示和查找资源 更新资源 修补资源 编辑资源 Scale
######kubectl管理工具###### [root@k8s-master dashboard]# kubectl get pod NAME READY STATUS RESTARTS AGE nginx-64f497f8fd-jnhgm / Running 22h nginx-64f497f8fd-n5pst / Running 22h nginx-64f497f8fd-rzldm / Running 22h [root@k8s-master dashboard]# kubectl ex