Rocco
Rocco

Reputation: 145

Problem with Ingress when following documentation steps using the NGINX Ingress Controller

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:

enter image description here

The docs output: enter image description here

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

Answers (1)

sridhar
sridhar

Reputation: 243

localhost for the address looks valid.

You can get your minikube cluster ip with below and proceed.

minikube ip

Upvotes: 2

Related Questions