n8n: cut memory request 1Gi → 512Mi (+ image bump 1.80.0 → 1.80.5)
Right-sizing per krr report (2026-05-22). Image bump syncs main.tf with the live Keel-managed version to avoid an inadvertent downgrade on apply. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
17c1ef73be
commit
d76f4c4827
1 changed files with 3 additions and 3 deletions
|
|
@ -228,7 +228,7 @@ resource "kubernetes_deployment" "n8n" {
|
|||
service_account_name = kubernetes_service_account.n8n.metadata[0].name
|
||||
container {
|
||||
name = "n8n"
|
||||
image = "docker.n8n.io/n8nio/n8n:1.80.0"
|
||||
image = "docker.n8n.io/n8nio/n8n:1.80.5"
|
||||
env {
|
||||
name = "N8N_PORT"
|
||||
value = "5678"
|
||||
|
|
@ -352,10 +352,10 @@ resource "kubernetes_deployment" "n8n" {
|
|||
resources {
|
||||
requests = {
|
||||
cpu = "25m"
|
||||
memory = "1Gi"
|
||||
memory = "512Mi"
|
||||
}
|
||||
limits = {
|
||||
memory = "1Gi"
|
||||
memory = "512Mi"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue