From 70beced08fe9ab402175ed9c54591d99853a8ed8 Mon Sep 17 00:00:00 2001 From: ArgoCD Setup Date: Fri, 23 Jan 2026 20:40:22 -0300 Subject: [PATCH] fix(aula-09): escapar colchetes no comando helm upgrade para zsh --- aula-09/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aula-09/README.md b/aula-09/README.md index 898d400..0fed81a 100644 --- a/aula-09/README.md +++ b/aula-09/README.md @@ -177,10 +177,10 @@ source .env helm upgrade n8n community-charts/n8n \ -n n8n \ -f custom-values.yaml \ - --set ingress.hosts[0].host=${N8N_HOST} \ - --set ingress.hosts[0].paths[0].path=/ \ - --set ingress.hosts[0].paths[0].pathType=Prefix \ - --set webhook.url=https://${N8N_HOST} \ + --set "ingress.hosts[0].host=${N8N_HOST}" \ + --set "ingress.hosts[0].paths[0].path=/" \ + --set "ingress.hosts[0].paths[0].pathType=Prefix" \ + --set "webhook.url=https://${N8N_HOST}" \ --wait \ --timeout 10m ```