From c57d22e5db244f9c9767cc6006f15bf55ab1822d Mon Sep 17 00:00:00 2001 From: Pulak Kanti Bhowmick Date: Thu, 20 Oct 2022 22:57:09 +0600 Subject: [PATCH] Use helm 3 installation for ingress-nginx chart Signed-off-by: Pulak Kanti Bhowmick --- docs/tutorials/azure-private-dns.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/azure-private-dns.md b/docs/tutorials/azure-private-dns.md index 5ce8acfae..584f5a8ee 100644 --- a/docs/tutorials/azure-private-dns.md +++ b/docs/tutorials/azure-private-dns.md @@ -22,8 +22,9 @@ Helm is used to deploy the ingress controller. 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 ```