Kubernetes 无法连接到服务器

Kubernetes 无法连接到服务器

我有一个在 AWS 上运行了数月的 Kubernetes 集群。

我不知道为什么当我kubectl从我的部署管道或本地计算机向我的服务器运行命令时

Unable to connect to the server: EOF

我的所有服务似乎都运行良好

读操作在主服务器上

Kubernetes 版本:1.11.7 主版本:1.11.6

我可以 ssh 进入我的主机,但不知道可以运行什么命令来帮助我

答案1

如果您使用 minikube,请注意当 Minikube 启动后库布克是自动配置的。

minikube start
Starting local Kubernetes cluster...
Kubernetes is available at https://192.168.99.100:8443.
Kubectl is now configured to use the cluster.

您可以使用以下命令检查并验证集群和上下文:

$ kubectl config view

相关内容