fix(aula-09): escapar colchetes no comando helm upgrade para zsh

This commit is contained in:
ArgoCD Setup
2026-01-23 20:40:22 -03:00
parent a219dac7f6
commit 70beced08f

View File

@@ -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
```