其他分享
首页 > 其他分享> > kubernetes故障-节点NotReady

kubernetes故障-节点NotReady

作者:互联网

k8s集群由于某些原因重置,并添加节点后,部分节点状态为NotReady

查看系统日志提示
"Unable to update cni config" err="no networks found in /etc/cni/net.d"
"Container runtime network not ready" networkReady="NetworkReady=false reason:NetworkPluginNotReady message:docker: network plugin is not ready: cni config uninitialized"

解决
查看状态为NotReady节点的/etc/cni/net.d/目录下为空

查看状态为Ready节点的/etc/cni/net.d/目录下存在10-calico.conflist、calico-kubeconfig

复制状态为Ready节点的/etc/cni/net.d/目录下的10-calico.conflist、calico-kubeconfig 到状态为NotReady节点的/etc/cni/net.d/目录下
重启状态为NotReady节点
再次查看节点状态,已正常

原因
可能是手动操作误删除了
记得好像正式环境的k8s正常运行后也出现过这个情况

标签:kubernetes,calico,NotReady,etc,net,节点,cni
来源: https://www.cnblogs.com/tangshow/p/16358936.html