fix(anisette): raise memory limit to 512Mi — 128Mi OOMKilled at startup
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:
Viktor Barzin 2026-06-14 19:54:13 +00:00
parent 96addf65b4
commit bc7b28244f

View file

@ -102,10 +102,14 @@ resource "kubernetes_deployment" "anisette" {
resources { resources {
requests = { requests = {
cpu = "10m" cpu = "10m"
memory = "128Mi" memory = "256Mi"
} }
limits = { 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 { readiness_probe {