Sam
Sam

Reputation: 1328

Setting up ingress controller in azure kubernetes

I followed the steps mentioned in https://kubernetes.github.io/ingress-nginx/deploy/#azure. While the service was created I do not any specific pods being created for nginx-ingress. Am I missing something here?

Note : I am running this on azure kubernetes service

Upvotes: 0

Views: 116

Answers (1)

4c74356b41
4c74356b41

Reputation: 72151

Yes, you are missing installing the nginx ingress.

The following Mandatory Command is required for all deployments.

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

you can also use helm for that: https://kubernetes.github.io/ingress-nginx/deploy/#using-helm

Upvotes: 1

Related Questions