From 42490c7e219594f3f61e62a8f27b9a4bac1f4b30 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Mon, 16 Dec 2024 13:47:56 -0800 Subject: [PATCH] Add limits and requests for Wobbly Now that Wobbly has been running for a while in idfdev, add limits and requests. --- applications/wobbly/values.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/applications/wobbly/values.yaml b/applications/wobbly/values.yaml index 3c7a37725c..38347f9711 100644 --- a/applications/wobbly/values.yaml +++ b/applications/wobbly/values.yaml @@ -79,7 +79,13 @@ podAnnotations: {} # -- Resource limits and requests for the wobbly deployment pod # @default -- See `values.yaml` -resources: {} +resources: + limits: + cpu: "500m" + memory: "250Mi" + requests: + cpu: "100m" + memory: "150Mi" # -- Tolerations for the wobbly deployment pod tolerations: []