From 0587f176f365e368a7f976e4da23bc3272a2b252 Mon Sep 17 00:00:00 2001 From: ArgoCD Setup Date: Fri, 23 Jan 2026 20:18:05 -0300 Subject: [PATCH] fix(aula-09): corrigir comando de upgrade para usar repo Helm tradicional MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit URL OCI (oci://ghcr.io/...) requer autenticação e retorna erro 403. Alterado para usar o mesmo método do setup.sh (helm repo add). --- aula-09/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/aula-09/README.md b/aula-09/README.md index 878821e..31af73d 100644 --- a/aula-09/README.md +++ b/aula-09/README.md @@ -137,7 +137,12 @@ Acesse: https://n8n.kube.quest Para atualizar o n8n após modificar o values file (ex: nova versão da imagem): ```bash -helm upgrade n8n oci://ghcr.io/community-charts/helm/n8n \ +# Garantir que o repo está configurado +helm repo add community-charts https://community-charts.github.io/helm-charts 2>/dev/null || true +helm repo update + +# Fazer upgrade +helm upgrade n8n community-charts/n8n \ -n n8n \ -f custom-values.yaml \ --atomic \