From 8088b57dd1e07e6012a048472950ac71d19c5519 Mon Sep 17 00:00:00 2001 From: Raghu Date: Fri, 11 Jul 2025 22:17:44 +0530 Subject: [PATCH] docs(aws): add helm repo command to the tutorial (#5618) * added helm repo add command to the aws tutorial * Update docs/tutorials/aws.md Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com> --------- Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com> --- docs/tutorials/aws.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/tutorials/aws.md b/docs/tutorials/aws.md index 141ed7d1c..6585aa9e3 100644 --- a/docs/tutorials/aws.md +++ b/docs/tutorials/aws.md @@ -473,6 +473,8 @@ env: Finally, install the ExternalDNS chart with Helm using the configuration specified in your values.yaml file: ```shell +helm repo add --force-update external-dns https://kubernetes-sigs.github.io/external-dns/ + helm upgrade --install external-dns external-dns/external-dns --values values.yaml ```