-
Notifications
You must be signed in to change notification settings - Fork 14.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tutorial “Using a Service to Expose Your App” doesn't mention minikube limitation(s) for Services #41438
Comments
It relates to this page: https://kubernetes.io/docs/tutorials/kubernetes-basics/expose/expose-intro/ Where someone might be using |
/retitle Tutorial “Using a Service to Expose Your App” doesn't mention minikube limitation(s) for Services |
/triage accepted |
Hi @lbse , I think it is mentioned here to How to access the pods using NodePort -
You can get NodeIP by running - |
You can access pod from inside the node -
|
Hi @sftim , i think it would be better if we post the output of the commands in the code format like -
o/p -> NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE SELECTOR
kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 33d <none> it could help beginners to match their output with the given. |
It would seem that the command |
So, What's Update on this Issue?? |
#40645 is now closed. |
Looks like a fix has been delivered. Closing this issue in acknowledgment of the contributor's comment indicating the implementation of the fix. /close |
@dipesh-rawat: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
As a learner, took me some time to learn that with minikube the service isn't directly accessible without a service tunnel.
The curl call would return connection refused and I couldn't understand why. What I needed was:
$ minikube service kubernetes-bootcamp --url
The documentation is at https://minikube.sigs.k8s.io/docs/handbook/accessing/#getting-the-nodeport-using-the-service-command.
This applies to those learning and using minikube.
The text was updated successfully, but these errors were encountered: