fix(anisette): raise memory limit to 512Mi — 128Mi OOMKilled at startup
Some checks failed
ci/woodpecker/push/default Pipeline failed
Some checks failed
ci/woodpecker/push/default Pipeline failed
The pod CrashLooped with OOMKilled (exit 137): anisette downloads and initializes Apple's CoreADI provisioning library on startup, spiking past the 128Mi limit before it can bind :6969 (empty logs, liveness 'connection refused'). Bump request 256Mi / limit 512Mi; steady state is much lower. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
96addf65b4
commit
bc7b28244f
1 changed files with 6 additions and 2 deletions
|
|
@ -102,10 +102,14 @@ resource "kubernetes_deployment" "anisette" {
|
|||
resources {
|
||||
requests = {
|
||||
cpu = "10m"
|
||||
memory = "128Mi"
|
||||
memory = "256Mi"
|
||||
}
|
||||
limits = {
|
||||
memory = "128Mi"
|
||||
# anisette downloads + initializes Apple's CoreADI provisioning
|
||||
# library at startup, which spikes past 128Mi → OOMKilled (exit
|
||||
# 137) before it can bind :6969. 512Mi gives headroom; steady
|
||||
# state is much lower.
|
||||
memory = "512Mi"
|
||||
}
|
||||
}
|
||||
readiness_probe {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue