lower memory limits closer to actual usage
openclaw: 1536Mi -> 768Mi, affine: 256Mi -> 128Mi, rybbit: 512Mi -> 384Mi. Also patched via kubectl: aiostreams, cloudflared, crowdsec, uptime-kuma, vaultwarden, pgadmin, phpmyadmin, goflow2, sealed-secrets, ebook2audiobook.
This commit is contained in:
parent
843ba0ae8f
commit
eb0301b02b
2 changed files with 6 additions and 6 deletions
|
|
@ -141,10 +141,10 @@ resource "kubernetes_deployment" "affine" {
|
|||
resources {
|
||||
requests = {
|
||||
cpu = "50m"
|
||||
memory = "256Mi"
|
||||
memory = "128Mi"
|
||||
}
|
||||
limits = {
|
||||
memory = "256Mi"
|
||||
memory = "128Mi"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -178,11 +178,11 @@ resource "kubernetes_deployment" "affine" {
|
|||
|
||||
resources {
|
||||
requests = {
|
||||
memory = "256Mi"
|
||||
memory = "128Mi"
|
||||
cpu = "50m"
|
||||
}
|
||||
limits = {
|
||||
memory = "256Mi"
|
||||
memory = "128Mi"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -599,11 +599,11 @@ resource "kubernetes_deployment" "openclaw" {
|
|||
}
|
||||
resources {
|
||||
limits = {
|
||||
memory = "1536Mi"
|
||||
memory = "768Mi"
|
||||
}
|
||||
requests = {
|
||||
cpu = "100m"
|
||||
memory = "1536Mi"
|
||||
memory = "768Mi"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue