1

I have a Kubernetes cluster running for months on AWS.

I do not know why when I am running a kubectl command to my server from my deploy pipeline or my local computer I have

Unable to connect to the server: EOF

All my services seems to work well

The read operations are on the master

Kubernetes version: 1.11.7 Master version: 1.11.6

I can ssh into my master but no idea of command I can run to help

Malgorzata
  • 358
  • 1
  • 5
Ajouve
  • 121
  • 1
  • 7

1 Answers1

0

If you use minikube take notice that when Minikube is started after than kubectl is configured automatically.

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

You can check and validate the cluster and context with command below:

$ kubectl config view
Malgorzata
  • 358
  • 1
  • 5