fix: increase memory for OOMKilled services
- hackmd: 64Mi -> 256Mi (Node.js app OOMKilled after 14min) - n8n: limit 512Mi -> 768Mi (DB timeouts at 88% mem usage) - speedtest: 128Mi -> 256Mi (OOMKilled during startup) - shlink: limit 512Mi -> 768Mi (OOMKilled after startup)
This commit is contained in:
parent
b219961bd8
commit
683f255c2e
3 changed files with 5 additions and 5 deletions
|
|
@ -122,10 +122,10 @@ resource "kubernetes_deployment" "hackmd" {
|
|||
resources {
|
||||
requests = {
|
||||
cpu = "15m"
|
||||
memory = "64Mi"
|
||||
memory = "256Mi"
|
||||
}
|
||||
limits = {
|
||||
memory = "64Mi"
|
||||
memory = "256Mi"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@ resource "kubernetes_deployment" "n8n" {
|
|||
memory = "512Mi"
|
||||
}
|
||||
limits = {
|
||||
memory = "512Mi"
|
||||
memory = "768Mi"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -122,10 +122,10 @@ resource "kubernetes_deployment" "speedtest" {
|
|||
resources {
|
||||
requests = {
|
||||
cpu = "25m"
|
||||
memory = "128Mi"
|
||||
memory = "256Mi"
|
||||
}
|
||||
limits = {
|
||||
memory = "128Mi"
|
||||
memory = "256Mi"
|
||||
}
|
||||
}
|
||||
volume_mount {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue