Kubernetes failed to setup network for pod after executed kubeadm reset

后端 未结 6 1176
故里飘歌
故里飘歌 2021-02-03 12:41

I initialized Kubernetes with kubeadm init, and after I used kubeadm reset to reset it I found --pod-network-cidr was wrong. After correct

6条回答
  •  悲哀的现实
    2021-02-03 13:24

    I had a similar issue and the fix in that case was to apply the flannel pod network to the cluster:

    wget https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
    kubectl apply -f kube-flannel.yml
    

提交回复
热议问题