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 {
|
spec {
|
||||||
replicas = 1
|
# Disabled: reduce cluster memory pressure (2026-03-14 OOM incident)
|
||||||
|
replicas = 0
|
||||||
strategy {
|
strategy {
|
||||||
type = "Recreate"
|
type = "Recreate"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -230,7 +230,8 @@ resource "kubernetes_deployment" "ollama-ui" {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
spec {
|
spec {
|
||||||
replicas = 1
|
# Disabled: reduce cluster memory pressure (2026-03-14 OOM incident)
|
||||||
|
replicas = 0
|
||||||
selector {
|
selector {
|
||||||
match_labels = {
|
match_labels = {
|
||||||
app = "ollama-ui"
|
app = "ollama-ui"
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,8 @@ resource "kubernetes_deployment" "tandoor" {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
spec {
|
spec {
|
||||||
replicas = 1
|
# Disabled: reduce cluster memory pressure (2026-03-14 OOM incident)
|
||||||
|
replicas = 0
|
||||||
strategy {
|
strategy {
|
||||||
type = "Recreate"
|
type = "Recreate"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue