我是靠谱客的博主 重要春天,最近开发中收集的这篇文章主要介绍k8s V1.11.1报错:The connection to the server localhost:8080 was refused,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

问题描述:

# 安装flannel插件时报错
root@test:~# kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/v0.10.0/Documentation/kube-flannel.yml
unable to recognize "https://raw.githubusercontent.com/coreos/flannel/v0.10.0/Documentation/kube-flannel.yml": Get http://localhost:8080/api?timeout=32s: dial tcp 127.0.0.1:8080: connect: connection refused

在没有配置config文件时,kube-apiserver默认使用的是localhost,解决方法如下:
在主节点上普通用户执行如下操作:

mkdir -p $HOME/.kube
sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
sudo chown $(id -u):$(id -g) $HOME/.kube/config

或者以root用户运行,导入环境变量:

export KUBECONFIG=/etc/kubernetes/admin.conf

添加用来认证RBAC的配置文件,连接指定apiserver

最后

以上就是重要春天为你收集整理的k8s V1.11.1报错:The connection to the server localhost:8080 was refused的全部内容,希望文章能够帮你解决k8s V1.11.1报错:The connection to the server localhost:8080 was refused所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部