summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZiqi Zhao <zhaoziqi@qiniu.com>2018-04-14 20:55:46 +0800
committerZiqi Zhao <zhaoziqi@qiniu.com>2018-04-14 20:55:46 +0800
commit369e86bb95f68933032072a7485ca5f49307978e (patch)
tree9b3fc3dedc40c02d4f94354e64e06019135302d5
parent53641448047f41c29f46d158b3a2f7d3b4c3aebb (diff)
Fix mistakes about the example of resource account for burstable pods and typo mistake
-rw-r--r--contributors/design-proposals/node/pod-resource-management.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/contributors/design-proposals/node/pod-resource-management.md b/contributors/design-proposals/node/pod-resource-management.md
index 91f07689..9efa3e42 100644
--- a/contributors/design-proposals/node/pod-resource-management.md
+++ b/contributors/design-proposals/node/pod-resource-management.md
@@ -228,7 +228,7 @@ of a compressible resource that was requested by a pod in a higher QoS tier.
The `kubelet` will support a flag `experimental-qos-reserved` that
takes a set of percentages per incompressible resource that controls how the
QoS cgroup sandbox attempts to reserve resources for its tier. It attempts
-to reserve requested resources to exclude pods from lower OoS classes from
+to reserve requested resources to exclude pods from lower QoS classes from
using resources requested by higher QoS classes. The flag will accept values
in a range from 0-100%, where a value of `0%` instructs the `kubelet` to attempt
no reservation, and a value of `100%` will instruct the `kubelet` to attempt to
@@ -564,10 +564,10 @@ Pod3 and Pod4 are both classified as Burstable and are hence nested under
the Burstable cgroup.
```
-/ROOT/burstable/cpu.shares = 30m
+/ROOT/burstable/cpu.shares = 130m
/ROOT/burstable/memory.limit_in_bytes = Allocatable - 5Gi
/ROOT/burstable/Pod3/cpu.quota = 150m
-/ROOT/burstable/Pod3/cpu.shares = 20m
+/ROOT/burstable/Pod3/cpu.shares = 120m
/ROOT/burstable/Pod3/memory.limit_in_bytes = 3Gi
/ROOT/burstable/Pod4/cpu.quota = 20m
/ROOT/burstable/Pod4/cpu.shares = 10m