From e457bdedd85b90e935cac290f6e269dc25b749a2 Mon Sep 17 00:00:00 2001 From: Thorarinn Sigurdsson Date: Fri, 15 Jan 2021 19:01:17 +0100 Subject: [PATCH] fix(enterprise): lower workflow resource minima The minimum resource request values for workflows were too high. We lower them to more sensible levels here. --- core/src/config/workflow.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/config/workflow.ts b/core/src/config/workflow.ts index eff0d4e630..4ab6b698da 100644 --- a/core/src/config/workflow.ts +++ b/core/src/config/workflow.ts @@ -81,12 +81,12 @@ export const workflowConfigSchema = () => cpu: joi .number() .default(defaultContainerLimits.cpu) - .min(1000) + .min(500) .description("The maximum amount of CPU the workflow pod can use, in millicpus (i.e. 1000 = 1 CPU)"), memory: joi .number() .default(defaultContainerLimits.memory) - .min(1024) + .min(256) .description("The maximum amount of RAM the workflow pod can use, in megabytes (i.e. 1024 = 1 GB)"), }) .default(defaultContainerLimits),