CKA备战20-真题 集群故障排查
题目TaskA kubernetes worker node,name wk8s-node-0 is in state NotReady.Investigate why this is the case and perform any appropriate steps to bring the node to a Ready state,ensuring that any changes are
·
题目
Task
A kubernetes worker node,name wk8s-node-0 is in state NotReady.
Investigate why this is the case and perform any appropriate steps to bring the node to a Ready state,ensuring that any changes are made permanent.
翻译:
一个 kubernetes 工作节点,名称 wk8s-node-0 处于 NotReady 状态。
调查为什么会出现这种情况并执行任何适当的步骤使节点进入就绪状态,确保任何更改都是永久性的
答案
名为 wk8s-node-0 的节点处于 NotReady 状态,将其恢复成 Ready 状态,并且设置为开机自启
# 连接到 NotReady 节点
$ ssh wk8s-node-0
获取权限
$ sudo -i
# 查看服务是否运行正常
$ systemctl status kubelet
#如果服务非正常运行进行恢复
$ systemctl start kubelet
#设置开机自启
$ systemctl enable kubelet
如果是node未启动,要从node的kubelet状态开始查看。、
Kubernetes 集群所需的各种组件:
更多推荐
已为社区贡献4条内容
所有评论(0)