51工具盒子

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

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

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

重置后重新加入k8s集群报cni plugin not initialized解决方法[root@k8s-master1 ~]# kubectl describe node k8s-master4 -n kube-system | grep -A 20 "Conditions"

报错信息:

container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:Network plugin returns error: cni plugin not initialized

解决方法:

1)重启节点的containerd服务

[root@k8s-master4 ~]# systemctl restart containerd.service

2)查看集群状态

[root@k8s-master1 ~]# kubectl get nodes -o wide

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

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