From 60cad841804f54e26db56cd40c75d574ef30a552 Mon Sep 17 00:00:00 2001 From: Liam Date: Tue, 24 Sep 2024 07:07:51 +0100 Subject: [PATCH] fix mem limit --- kubernetes/apps/production/searxng/deployment.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kubernetes/apps/production/searxng/deployment.yaml b/kubernetes/apps/production/searxng/deployment.yaml index c153468..2717afb 100644 --- a/kubernetes/apps/production/searxng/deployment.yaml +++ b/kubernetes/apps/production/searxng/deployment.yaml @@ -23,6 +23,9 @@ spec: - name: SEARXNG_BASE_URL value: "https://search.fascinated.cc" resources: - limits: + requests: memory: "256Mi" + cpu: "100m" + limits: + memory: "512Mi" cpu: "500m"