Kubernetes:拨打tcp 127.0.0.1:8080:connect:连接被拒绝

edqdpe6u  于 2023-05-16  发布在  Kubernetes
关注(0)|答案(3)|浏览(474)

我已经使用kops启动了kubernetes集群。它正在工作查找,我开始面临以下问题:

kubectl get pods
The connection to the server localhost:8080 was refused - did you specify the right host or port?

我该怎么解决这个问题?看起来kubernetes-apiserver没有运行,我如何让它工作?

kubectl run nginx --image=nginx:1.10.0
error: failed to discover supported resources: Get http://localhost:8080/apis/apps/v1beta1?timeout=32s: dial tcp 127.0.0.1:8080: connect: connection refused

请建议

8e2ybdfx

8e2ybdfx1#

Kubernetes使用$KUBECONFIG文件连接到集群。可能是在配置kops集群时,它没有正确写入文件。我不能确定,因为你没有提供足够的信息。
假设这就是问题所在,并且您只有一个集群,可以这样解决:

# Find your cluster name
kops get clusters
# set the clustername as a var
clustername=<clustername>
# export the KUBECONFIG variable, which kubectl uses to find the kubeconfig file
export KUBECONFIG=~/.kube/${clustername}
# download the kubeconfig file locally using kops
kops export kubecfg --name ${clustername} --config=~$KUBECONFIG

您可以找到有关KUBECONFIG文件here的详细信息

xam8gpfp

xam8gpfp2#

你必须在使用kubectl之前启动minikube我有同样的问题,但我的是因为minikube没有运行

3mpgtkmj

3mpgtkmj3#

您可以在kubectl命令之前使用此命令
gcloud容器集群get-credentials --zone= us-central 1

相关问题