From 6bda38886c1bea4f09f7582cbad7d42363b7fdf5 Mon Sep 17 00:00:00 2001 From: Pulak Kanti Bhowmick Date: Thu, 20 Oct 2022 22:52:17 +0600 Subject: [PATCH 1/2] Update ingress-nginx chart url Signed-off-by: Pulak Kanti Bhowmick --- docs/tutorials/azure-private-dns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/azure-private-dns.md b/docs/tutorials/azure-private-dns.md index c77012e91..5ce8acfae 100644 --- a/docs/tutorials/azure-private-dns.md +++ b/docs/tutorials/azure-private-dns.md @@ -19,7 +19,7 @@ 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 \ From c57d22e5db244f9c9767cc6006f15bf55ab1822d Mon Sep 17 00:00:00 2001 From: Pulak Kanti Bhowmick Date: Thu, 20 Oct 2022 22:57:09 +0600 Subject: [PATCH 2/2] 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 ```