diff options
| author | tianfeiyu <tianfeiyu0@gmail.com> | 2020-01-25 19:08:22 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-25 19:08:22 +0800 |
| commit | 1bd240aabd330c5dd617caa19ded8b4cdfbaa0e3 (patch) | |
| tree | 58b5596e6d0d52f2dc894572d76a2fc769018658 | |
| parent | e17e9aa8b9d0bcee24e05223a943e417eecceaa1 (diff) | |
fix burstable/cpu.shares configured
| -rw-r--r-- | contributors/design-proposals/node/pod-resource-management.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contributors/design-proposals/node/pod-resource-management.md b/contributors/design-proposals/node/pod-resource-management.md index 9efa3e42..2c3348a6 100644 --- a/contributors/design-proposals/node/pod-resource-management.md +++ b/contributors/design-proposals/node/pod-resource-management.md @@ -273,7 +273,7 @@ The `Burstable` cgroup sandbox CPU share allocation is dynamic based on the set of pods currently scheduled to the node. ``` -ROOT/burstable/cpu.shares = max(sum(Burstable pods cpu requests, 2) +ROOT/burstable/cpu.shares = max(sum(Burstable pods cpu requests), 2) ``` The Burstable cgroup sandbox is updated dynamically in the exit |
