[ci skip] onlyoffice: disable VPA to prevent CPU resource override

Goldilocks VPA in Initial mode was overriding the explicit 2 CPU limit
down to 700m, throttling the document server. Set vpa-update-mode=off.
This commit is contained in:
Viktor Barzin 2026-03-01 17:55:06 +00:00
parent 4558688baf
commit 12552b8ea4

View file

@ -11,7 +11,8 @@ resource "kubernetes_namespace" "onlyoffice" {
name = "onlyoffice"
labels = {
"istio-injection" : "disabled"
tier = local.tiers.edge
tier = local.tiers.edge
"goldilocks.fairwinds.com/vpa-update-mode" = "off"
}
}
}