using network plugins "cni": cni config unintialized; Skipping pod using network plugins "cni": cni config unintialized; Skipping pod kubernetes kubernetes

using network plugins "cni": cni config unintialized; Skipping pod


I'm guessing that you forgot to setup the pod network.

From the documentation:

It is necessary to do this before you try to deploy any applications to your cluster, and before kube-dns will start up. Note also that kubeadm only supports CNI based networks and therefore kubenet based networks will not work.

You can install a pod network add-on with the following command:

kubectl apply -f <add-on.yaml>

Example:

kubectl create -f https://git.io/weave-kube

To install Weave Net add-on.

After you have done this, you might need to recreate kube-dns pod.


The cni intialization should be completed during kubelet initialization. So try reboot kubelet service and make sure that cni configuration can be parsed correctly.