概述
mac 本地装的docker 自带的k8s,之前一直没问题,突然有一次使用k8s命令时报错:The connection to the server localhost:8080 was refused - did you specify the right host or port?
kubectl get node //这样就报错
命令中指定config文件就没问题:
kubectl --kubeconfig ./config get node //这样就ok
查询k8s config配置为空:
kubectl config view显示如下:
apiVersion: v1
clusters: []
contexts: []
current-context: ""
kind: Config
preferences: {}
users: []
解决方法:
1、unset KUBECONFIG //使用该命令解决,临时解决,每次打开新的终端都要使用一次
2、export KUBECONFIG=~/.kube/config //同上
后来发现 配置文件 .bashfile 文件里配置了KUBECONFIG的环境变量,把不用的删去即可,或者export KUBECONFIG=~/.kube/config写入,保存.bashfile
解决。。。。
最后
以上就是多情母鸡为你收集整理的mac 本地k8s命令报错:The connection to the server localhost:8080 was refused - did you specify the right ho的全部内容,希望文章能够帮你解决mac 本地k8s命令报错:The connection to the server localhost:8080 was refused - did you specify the right ho所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复