Reputation: 145
I have followed the steps of the docs (https://kubernetes.io/docs/tasks/access-application-cluster/ingress-minikube/#create-an-ingress) to set up an ingress on minikube, but when It comes to verifying if the IP address is set, executing the command kubectl get service web
Is not retrieving the same results as the docs. Hence I can't continue with the docs example.
My output:
So my question is regarding why I am getting localhost
instead of the IP number, and also under the CLASS
column I'm getting nginx
instead of <none>
any clue to follow would be great, thanks!
Upvotes: 0
Views: 61
Reputation: 243
localhost for the address looks valid.
You can get your minikube cluster ip with below and proceed.
minikube ip
Upvotes: 2