From f1a35fec4f3f5868d937eebdb6902780da1e3a48 Mon Sep 17 00:00:00 2001 From: Abhinav Sinha Date: Sun, 14 Jun 2026 03:30:09 +0530 Subject: [PATCH] fix: memory request validation in `resource-limits-task` Signed-off-by: Abhinav Sinha --- scenarios/scenarios.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scenarios/scenarios.json b/scenarios/scenarios.json index 05cf1e5..b86e02b 100644 --- a/scenarios/scenarios.json +++ b/scenarios/scenarios.json @@ -624,6 +624,12 @@ "command": "kubectl get pod limited-pod -o jsonpath='{.spec.containers[0].resources.limits.cpu}'", "expected_output": "200m", "match": "exact" + }, + { + "description": "Memory request is 64Mi", + "command": "kubectl get pod limited-pod -o jsonpath='{.spec.containers[0].resources.requests.memory}'", + "expected_output": "64Mi", + "match": "exact" } ] },