Skip to content

Commit 667d338

Browse files
committed
Adjust wording based on review comment
1 parent 3f5ab3f commit 667d338

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

content/en/docs/concepts/configuration/manage-resources-containers.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,10 @@ resource requests/limits of that type for each Container in the Pod.
9999
Limits and requests for CPU resources are measured in *cpu* units.
100100
One cpu, in Kubernetes, is equivalent to **1 vCPU/Core** for cloud providers and **1 hyperthread** on bare-metal Intel processors.
101101

102-
Fractional requests are allowed. A Container with
103-
`spec.containers[].resources.requests.cpu` of `0.5` asks for half as much
104-
CPU as one that asks for 1 CPU. The expression `0.1` is equivalent to the
102+
Fractional requests are allowed. When you define a container with
103+
`spec.containers[].resources.requests.cpu` set to `0.5`, you are requesting half
104+
as much CPU time compared to if you asked for `1.0` CPU.
105+
For CPU resource units, the expression `0.1` is equivalent to the
105106
expression `100m`, which can be read as "one hundred millicpu". Some people say
106107
"one hundred millicores", and this is understood to mean the same thing. A
107108
request with a decimal point, like `0.1`, is converted to `100m` by the API, and

0 commit comments

Comments
 (0)