From 0267d93cf6e41cfa37b796e8553af94b12a80448 Mon Sep 17 00:00:00 2001 From: ArgoCD Setup Date: Fri, 23 Jan 2026 14:39:43 -0300 Subject: [PATCH] fix(aula-06): aumentar recursos do webhook para evitar CrashLoopBackOff MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit O n8n webhook precisa de mais memória para iniciar corretamente. Com 256Mi, a liveness probe mata o container antes dele subir. - Aumentar memory limit de 256Mi para 512Mi - Aumentar cpu limit de 250m para 500m - Aumentar requests proporcionalmente --- aula-06/custom-values.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aula-06/custom-values.yaml b/aula-06/custom-values.yaml index ce0553d..ac6c435 100644 --- a/aula-06/custom-values.yaml +++ b/aula-06/custom-values.yaml @@ -132,11 +132,11 @@ webhook: N8N_SECURE_COOKIE: "false" resources: requests: - cpu: 50m - memory: 128Mi - limits: - cpu: 250m + cpu: 100m memory: 256Mi + limits: + cpu: 500m + memory: 512Mi # n8n precisa de memória para iniciar autoscaling: enabled: true minReplicas: 1