From 5896748e7b42c8f1b0cc2ceca4ba3dba2bed2618 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 4 Feb 2025 18:26:39 +0100 Subject: syz-cluster: set resource limits It will be important once we deploy to GKE. For now, let's set just some limits, we'll adjust them over time. --- syz-cluster/workflow/fuzz-step/workflow-template.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'syz-cluster/workflow/fuzz-step') diff --git a/syz-cluster/workflow/fuzz-step/workflow-template.yaml b/syz-cluster/workflow/fuzz-step/workflow-template.yaml index af1e02257..dbabd0202 100644 --- a/syz-cluster/workflow/fuzz-step/workflow-template.yaml +++ b/syz-cluster/workflow/fuzz-step/workflow-template.yaml @@ -33,15 +33,15 @@ spec: "--patched_build", "{{inputs.parameters.patched-build-id}}", "--time", "2h", "--workdir", "/workdir", - "--vv", "1", + "--vv", "1" ] resources: requests: - cpu: 16 - memory: 24G - limits: cpu: 24 - memory: 32G + memory: 64G + limits: + cpu: 32 + memory: 64G volumeMounts: - name: workdir mountPath: /workdir -- cgit mrf-deployment