From 41c7ba66ed8ad4e5c1899ffd97cfd254c424255c Mon Sep 17 00:00:00 2001 From: hc-github-team-nomad-core <82989552+hc-github-team-nomad-core@users.noreply.github.com> Date: Tue, 4 Feb 2025 20:13:03 +0000 Subject: [PATCH] backport of commit 824d3622267b1935f7950e82f6cf3d0538de7e24 (#25024) Co-authored-by: Robert C. Ewing <60013246+robert-c-ewing@users.noreply.github.com> --- website/content/docs/job-specification/resources.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/docs/job-specification/resources.mdx b/website/content/docs/job-specification/resources.mdx index 58c5d1ebb60..21c3c66259d 100644 --- a/website/content/docs/job-specification/resources.mdx +++ b/website/content/docs/job-specification/resources.mdx @@ -83,11 +83,11 @@ If `cores` and `cpu` are both defined in the same resource block, validation of ### Memory This example specifies the task requires 2 GB of RAM to operate. 2 GB is the -equivalent of 2000 MB: +equivalent of 2048 MB: ```hcl resources { - memory = 2000 + memory = 2048 } ```