deployed hello app and a load-balancer service
you can see the output of
kk get all -o wide
//kk short for kubectlalso see output of
kk get nodes
kk describe service hello-service
kk describe deployment
you can also see output of
kk get endpoints
hello-service <none>
- finally you can see the output of
curl localhost:8080
curl: (52) Empty reply from server
I think the reason for Empty reply from server
is because the endpoints is <none>
. Any idea why the endpoints is empty? and how I can fix this?