From afbd8903a0aea79b5d15232282663523b7f0025f Mon Sep 17 00:00:00 2001 From: Joshua Sing Date: Tue, 18 Oct 2022 22:36:54 +1100 Subject: [PATCH] chore(examples): reduce memory limit to 16mb From testing, Kani only uses around 8mb of memory and 0.10% of cpu at the maximum. --- examples/kubernetes/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/kubernetes/deployment.yaml b/examples/kubernetes/deployment.yaml index b516c7c..8036b36 100644 --- a/examples/kubernetes/deployment.yaml +++ b/examples/kubernetes/deployment.yaml @@ -49,5 +49,5 @@ spec: scheme: HTTP resources: limits: - memory: "32Mi" - cpu: "1" \ No newline at end of file + memory: "16Mi" + cpu: "0.10"