Merge pull request #3099 from pkbhowmick/fix-helm

Update ingress-nginx installation guide for azure private dns
This commit is contained in:
Kubernetes Prow Robot 2022-11-10 05:18:55 -08:00 committed by GitHub
commit 66ec9912ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,11 +19,12 @@ Therefore, please see the subsequent prerequisites.
Helm is used to deploy the ingress controller.
We employ the popular chart [stable/nginx-ingress](https://github.com/helm/charts/tree/HEAD/stable/nginx-ingress).
We employ the popular chart [ingress-nginx](https://github.com/kubernetes/ingress-nginx/tree/main/charts/ingress-nginx).
```
$ helm install stable/nginx-ingress \
--name nginx-ingress \
$ helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
$ helm repo update
$ helm install [RELEASE_NAME] ingress-nginx/ingress-nginx
--set controller.publishService.enabled=true
```