执行kubectl get nodes,报错提示The connection to the server localhost:8080 was refused - did you specify the right host or port? 问题分析: kubernetes master没有与本机绑定,集群初始化的时候没有绑定,此时设置在本机的环境变量即可解决问题。 解决方案: 解决方案一: # vim /etc/profile # 在最底部增...
为了方便观察,使用kubectl get node --watch来观测一段时间,发现k8s-node1节点不断的在Ready和NotReady状态之间切换(使用kubectl get node -o wide可以查看节点的ip信息). 进入到出现问题的节点,使用命令journalctl -f -u kubelet来查看kubelet的日志信息,把错误日志截出来一段搜索一下,发现问题和这个问题基本上是一...
#在 master1 操作 192.168.113.128 #修改配置文件kube-apiserver中的IP [root@master2 ~]# vim /opt/kubernetes/cfg/kube-apiserver --bind-address=192.168.113.128 \ #5行修改,master2主机地址 --advertise-address=192.168.113.128 \ #7行修改,master2主机地址 1. 2. 3. 4. 5. #启动各服务并设置开机自...
we can see that it already use the new IP address 192.168.1.140 then when I tried ''kubectl get nodes'', the result is: Unable to connect to the server: dial tcp 192.168.41.134:6443: i/o timeout 192.168.41.134 is the old IP address. It seems everything related to kubectl can not ...
kubectl get nodes -o jsonpath='{.items[*].status.addresses[?(@.type=="ExternalIP")].address}'# 列出属于某个特定 RC 的 Pods 的名称# 在转换对于 jsonpath 过于复杂的场合,"jq" 命令很有用;可以在 stedolan.github.io/jq/ 找到它。sel=${$(kubectl get rc my-rc --output=json | jq -j '...
jsonpath='{.items[*].metadata.labels.version}'#获取所有节点的 ExternalIP$kubectl get nodes -o jsonpath='{.items[*].status.addresses[?(@.type=="ExternalIP")].address}'#列出属于某个 PC 的 Pod 的名字#“jq”命令用于转换复杂的 jsonpath,参考 https://stedolan.github.io/jq/$sel=${...
type: InternalIP address: ajaisys-scm-ai-k8s-1-7a9fd2c5.novalocal type: Hostname allocatable: cpu: "8" memory: 16164796Ki pods: "110" capacity: cpu: "8" memory: 16267196Ki pods: "110" conditions: lastHeartbeatTime: 2018-01-26T02:28:55Z ...
# 获取所有节点的 ExternalIP$ kubectl get nodes -o jsonpath='{.items[*].status.addresses[?(@.type=="ExternalIP")].address}' # 列出属于某个 PC 的 Pod 的名字# “jq”命令用于转换复杂的 jsonpath,参考 https://stedolan.github.io/jq/$ sel...
当我纳管第三个节点的时候,云端显示成功纳管,但是kubectl top nodes的时候,会将之前存在的某个节点挤掉 这是我纳入edge02之后的情况,会将testing123挤掉 root@hecs-411543:~# kubectl get nodes NAME STATUS ROLES AGE VERSION edge02 Ready agent,edge 39h v1.19.3-kubeedge-v1.8.2 ...
kubectlget pod <pod-name>-o yaml 显示Node 的详细信息 kubectl describenode192.168.0.212#可以跟Node 或者IP或者主机名 显示Pod 的详细信息, 特别是查看 pod 无法创建的时候的日志 kubectl describe pod <pod-name> eg: kubectl describe pod redis-master-tqds9 ...