我在使用kubeadm
..初始化主服务器时遇到了一些麻烦。
我正在尝试关注https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/。我安装了docker
,kubelet
和.kubeadm
kubectl
现在我执行了kubeadm init
,但它停在[init] This might take a minute or longer if the control plane images have to be pulled.
我调查journalctl
了一下,发现:Unable to update cni config: No networks found in /etc/cni/net.d
和 Failed to list *v1.Pod: Get https://10.159.43.30:6443/api/v1/pods?fieldSelector=spec.nodeName%3Deskubernv01&limit=500&resourceVersion=0: dial tcp 10.159.43.30:6443: getsockopt: connection refused
。
我试图设置 weave-netkubectl apply -f https://git.io/weave-kube
但它无法连接:The connection to the server localhost:8080 was refused - did you specify the right host or port?
。
我无法复制admin.conf
应该允许我连接的文件/etc/kubernates
,因为kubeadm init
失败了,所以这些不是正确的文件。
我觉得我在这里陷入了一个循环,我错过了一些东西。
我现在别无选择。有任何想法吗?