Amit Naik
Amit Naik

Reputation: 1073

Kubernetes Ingress nginx installation

I am trying to install ingress-nginx in minikube on windows. I remember when I did this earlier by following below this link, it had a mandatory step to install deployables -

kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/mandatory.yaml

But I don't see this anymore valid. If you see installation guide it does not have any step before provider specific commands.

So can someone help to clarify if am missing anything? how would ingress-nginx-controller get created without executing above command which itself is missing in the page?

Upvotes: 0

Views: 303

Answers (1)

Arghya Sadhu
Arghya Sadhu

Reputation: 44549

Minikube already has nginx ingress packaged as an add-on part of Minikube installation. You just need to enable it via

minikube addons enable ingress

Upvotes: 1

Related Questions