[ci skip] reduce resource limits per VPA recommendations

dashy: 4Gi→512Mi mem, 2→500m cpu (actual: 206Mi)
affine: 4Gi→512Mi mem, 2→1 cpu (actual: 186Mi)
rybbit clickhouse: 4Gi→2Gi mem, 2→1 cpu (actual: 618Mi)
This commit is contained in:
Viktor Barzin 2026-03-06 20:23:21 +00:00
parent 94dcf22db4
commit bfa4a3ffdf
No known key found for this signature in database
GPG key ID: 0EB088298288D958
3 changed files with 9 additions and 9 deletions

View file

@ -159,12 +159,12 @@ resource "kubernetes_deployment" "affine" {
resources {
requests = {
memory = "512Mi"
cpu = "100m"
memory = "256Mi"
cpu = "50m"
}
limits = {
memory = "4Gi"
cpu = "2"
memory = "512Mi"
cpu = "1"
}
}

View file

@ -68,11 +68,11 @@ resource "kubernetes_deployment" "dashy" {
resources {
requests = {
cpu = "50m"
memory = "512Mi"
memory = "128Mi"
}
limits = {
cpu = "2"
memory = "4Gi"
cpu = "500m"
memory = "512Mi"
}
}
port {

View file

@ -110,8 +110,8 @@ resource "kubernetes_deployment" "clickhouse" {
memory = "512Mi"
}
limits = {
cpu = "2"
memory = "4Gi"
cpu = "1"
memory = "2Gi"
}
}
}