scale down ollama-ui, netbox, tandoor to free cluster memory
Disabled after 2026-03-14 node2 OOM incident. Frees ~5GB memory limits.
This commit is contained in:
parent
2be858f616
commit
ef4cfc146a
3 changed files with 6 additions and 3 deletions
|
|
@ -52,7 +52,8 @@ resource "kubernetes_deployment" "netbox" {
|
|||
}
|
||||
}
|
||||
spec {
|
||||
replicas = 1
|
||||
# Disabled: reduce cluster memory pressure (2026-03-14 OOM incident)
|
||||
replicas = 0
|
||||
strategy {
|
||||
type = "Recreate"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -230,7 +230,8 @@ resource "kubernetes_deployment" "ollama-ui" {
|
|||
}
|
||||
}
|
||||
spec {
|
||||
replicas = 1
|
||||
# Disabled: reduce cluster memory pressure (2026-03-14 OOM incident)
|
||||
replicas = 0
|
||||
selector {
|
||||
match_labels = {
|
||||
app = "ollama-ui"
|
||||
|
|
|
|||
|
|
@ -54,7 +54,8 @@ resource "kubernetes_deployment" "tandoor" {
|
|||
}
|
||||
}
|
||||
spec {
|
||||
replicas = 1
|
||||
# Disabled: reduce cluster memory pressure (2026-03-14 OOM incident)
|
||||
replicas = 0
|
||||
strategy {
|
||||
type = "Recreate"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue