【k8s部署 】k8s构建Flannel网络插件失败The connection to the server raw.githubusercontent.com was refused问题解决

大家好,我是好学的小师弟,最近在学习搭建k8s集群,所采用的方法是基于kubeadm搭建的,在构建Flannel网络的时候,报错了

kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
#报错内容
The connection to the server raw.githubusercontent.com was refused - did you specify the right host or port?

分析原因:因为神秘力量,域名解析不了,所以访问不了。

解决方法:不用域名登录,直接用ip登录,或者去/etc/hosts里设置下域名解析

步骤:

1、通过第三方网站查询到raw.githubusercontent.com所对应的ip是多少

      【查询网站】站长之家

 2、在/etc/hosts里填写如下内容,ip最好用网站上查询到的最新的

vim /etc/hosts

185.199.109.133  raw.githubusercontent.com

3、再次执行安装语句

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

4、成功安装

 5、kubectl get nodes    #查看状态是否启动

 6、下载安装完成后,这个域名就可以删除了


新人创作不易,觉得不错的看官,点个赞吧,么么哒!!!

转载注明出处!

                                                                 

猜你喜欢

转载自blog.csdn.net/weixin_43784564/article/details/124721760