报错 Error from server (InternalError): an error on the server (““) has prevented the request from suc
现象执行任何k8s命令都出现此报错[root@master helm]# kubectl get podError from server (InternalError): an error on the server ("") has prevented the request from succeeding=原因联系apiserver需要访问:https://master:6443当前命令是直
·
现象
执行任何k8s命令都出现此报错
[root@master helm]# kubectl get pod
Error from server (InternalError): an error on the server ("") has prevented the request from succeeding
=
原因
联系apiserver需要访问:https://master:6443
当前命令是直接在控制平面执行,因此需要保证对master
的解析无问题
# 由于在此之前本机配置了 http代理
export http_proxy='http://10.0.0.1:8889'
export https_proxy='http://10.0.0.1:8889'
# 且
[root@master helm]# hostname
master
因此对master
的解析即为本机,会被代理到http://10.0.0.1:8889
于是无法正常访问到 apiserver
=
解决
方法一:取消代理
unset http_proxy
unset https_proxy
方法二:不代理本机
export no_proxy='master,localhost,127.0.0.1,localaddress,.localdomain.com'
注:若修改后仍未恢复,可尝试重启节点的kubelet
服务
wan
更多推荐
已为社区贡献3条内容
所有评论(0)