From add3441154f2b9f7d2fe33fd8afb4610ee6ebe55 Mon Sep 17 00:00:00 2001 From: "Jason Kim (Jun Chul Kim)" Date: Tue, 16 Nov 2021 11:12:07 +0900 Subject: [PATCH] Update manage-resources-containers.md Warn people about mistaking "M" suffix for "m" when setting resource limits #30499 --- .../concepts/configuration/manage-resources-containers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/concepts/configuration/manage-resources-containers.md b/content/en/docs/concepts/configuration/manage-resources-containers.md index e21173bfd3..0e1516d2aa 100644 --- a/content/en/docs/concepts/configuration/manage-resources-containers.md +++ b/content/en/docs/concepts/configuration/manage-resources-containers.md @@ -116,11 +116,11 @@ CPU is always requested as an absolute quantity, never as a relative quantity; Limits and requests for `memory` are measured in bytes. You can express memory as a plain integer or as a fixed-point number using one of these suffixes: -E, P, T, G, M, k. You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, +E, P, T, G, M, k, m (millis). You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, Mi, Ki. For example, the following represent roughly the same value: ```shell -128974848, 129e6, 129M, 123Mi +128974848, 129e6, 129M, 128974848000m, 123Mi ``` Here's an example.