fix typo
This commit is contained in:
parent
cb54588b42
commit
e0cf34381e
|
@ -326,7 +326,7 @@ for overflow and the node should continue to function. If the node has been sche
|
||||||
situation.
|
situation.
|
||||||
|
|
||||||
A recommended alternative is to enforce KubeReserved once Kubelet supports it (Phase 2).
|
A recommended alternative is to enforce KubeReserved once Kubelet supports it (Phase 2).
|
||||||
In the [future](#future-work) we may set a parent cgroup for kubernetes components, with limits set
|
In the future we may set a parent cgroup for kubernetes components, with limits set
|
||||||
according to `KubeReserved`.
|
according to `KubeReserved`.
|
||||||
|
|
||||||
### 3rd party schedulers
|
### 3rd party schedulers
|
||||||
|
|
|
@ -20,7 +20,7 @@ Borg increased utilization by about 20% when it started allowing use of such non
|
||||||
|
|
||||||
## Requests and Limits
|
## Requests and Limits
|
||||||
|
|
||||||
For each resource, containers can specify a resource request and limit, `0 <= request <= `[`Node Allocatable`](../proposals/node-allocatable.md) & `request <= limit <= Infinity`.
|
For each resource, containers can specify a resource request and limit, `0 <= request <= `[`Node Allocatable`](../design-proposals/node-allocatable.md) & `request <= limit <= Infinity`.
|
||||||
If a pod is successfully scheduled, the container is guaranteed the amount of resources requested.
|
If a pod is successfully scheduled, the container is guaranteed the amount of resources requested.
|
||||||
Scheduling is based on `requests` and not `limits`.
|
Scheduling is based on `requests` and not `limits`.
|
||||||
The pods and its containers will not be allowed to exceed the specified limit.
|
The pods and its containers will not be allowed to exceed the specified limit.
|
||||||
|
|
|
@ -302,8 +302,8 @@ where a `<CPU-info>` or `<memory-info>` structure looks like this:
|
||||||
```yaml
|
```yaml
|
||||||
{
|
{
|
||||||
mean: <value> # arithmetic mean
|
mean: <value> # arithmetic mean
|
||||||
max: <value> # minimum value
|
max: <value> # maximum value
|
||||||
min: <value> # maximum value
|
min: <value> # minimum value
|
||||||
count: <value> # number of data points
|
count: <value> # number of data points
|
||||||
percentiles: [ # map from %iles to values
|
percentiles: [ # map from %iles to values
|
||||||
"10": <10th-percentile-value>,
|
"10": <10th-percentile-value>,
|
||||||
|
|
Loading…
Reference in New Issue