51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

重置后重新加入k8s集群报cni plugin not initialized解决方法

[root@k8s-master4 ~]# journalctl -u kubelet.service -f

[root@k8s-master1 ~]# kubectl describe node k8s-master4 -n kube-system | grep -A 20 "Conditions"
文章源自小柒网-https://www.yangxingzhen.cn/9692.html

报错信息:
文章源自小柒网-https://www.yangxingzhen.cn/9692.html

container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:Network plugin returns error: cni plugin not initialized
文章源自小柒网-https://www.yangxingzhen.cn/9692.html

文章源自小柒网-https://www.yangxingzhen.cn/9692.html

解决方法:
文章源自小柒网-https://www.yangxingzhen.cn/9692.html

1)重启节点的containerd服务
文章源自小柒网-https://www.yangxingzhen.cn/9692.html

[root@k8s-master4 ~]# systemctl restart containerd.service
文章源自小柒网-https://www.yangxingzhen.cn/9692.html

2)查看集群状态
文章源自小柒网-https://www.yangxingzhen.cn/9692.html

[root@k8s-master1 ~]# kubectl get nodes -o wide
文章源自小柒网-https://www.yangxingzhen.cn/9692.html

文章源自小柒网-https://www.yangxingzhen.cn/9692.html

至此,Node节点状态已变成Ready。
Kubernetes

赞(0)
未经允许不得转载:工具盒子 » 重置后重新加入k8s集群报cni plugin not initialized解决方法