[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:
parent
94dcf22db4
commit
bfa4a3ffdf
3 changed files with 9 additions and 9 deletions
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -110,8 +110,8 @@ resource "kubernetes_deployment" "clickhouse" {
|
|||
memory = "512Mi"
|
||||
}
|
||||
limits = {
|
||||
cpu = "2"
|
||||
memory = "4Gi"
|
||||
cpu = "1"
|
||||
memory = "2Gi"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue