Update Managing Resources to mention the measure of CPU time

This commit is contained in:
Alexey Kopytko 2021-08-05 03:38:40 +09:00
parent 93f57fd152
commit 9ca04a1014
No known key found for this signature in database
GPG Key ID: C2E9F3FB4871E4A8
1 changed files with 3 additions and 2 deletions

View File

@ -181,8 +181,9 @@ When using Docker:
flag in the `docker run` command.
- The `spec.containers[].resources.limits.cpu` is converted to its millicore value and
multiplied by 100. The resulting value is the total amount of CPU time that a container can use
every 100ms. A container cannot use more than its share of CPU time during this interval.
multiplied by 100. The resulting value is the total amount of CPU time in microseconds
that a container can use every 100ms. A container cannot use more than its share of
CPU time during this interval.
{{< note >}}
The default quota period is 100ms. The minimum resolution of CPU quota is 1ms.