Technical questionAccepted answer
Kubectl error: memcache.go:265] couldn’t get current server API group list: Get
pwoltschk
Aug 5
0 views1
Everything was running smoothly with my Kubernetes clusters until today: after performing an update on my Ubuntu system, I'm now unable to establish a connection from my working environment to the kubernetes clusters.
When executing the command kubectl get pods, I'm encountering the following error message:
E0805 09:59:45.750534 234576 memcache.go:265] couldn’t get current server API group list: Get "http://localhost:3334/api?timeout=32s": EOF
Here are the details of my cluster setup: Kubernetes 1.27, bare-metal, Host System is Ubuntu 20.04
1 answer
Accepted answer · original discussion
Meetu Gupta
PermalinkAug 7
Try
kubectl get nodes -v=10
and look for the errors.
2 question comments
Use comments to ask for clarification. Post a solution as an answer.
MeanwhileInHellPermalink
Sep 16
Check Docker is running.
service docker restart fixed this for me.