summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKubernetes Submit Queue <k8s-merge-robot@users.noreply.github.com>2017-08-21 21:05:43 -0700
committerGitHub <noreply@github.com>2017-08-21 21:05:43 -0700
commit313bcaf6054e675d931946af833e0623d73fbb8f (patch)
treeb65a3aea002ab266d3a39216b26ffc4584b3c309
parent6a7241be8139764966aebf81c7a157619780538c (diff)
parentb9a227bf353207c1548f6b3f028deed394b68e39 (diff)
Merge pull request #958 from sjenning/fix-typo
Automatic merge from submit-queue fix typos in cpu-manager proposal @ConnorDoyle @jeremyeder
-rw-r--r--contributors/design-proposals/cpu-manager.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/contributors/design-proposals/cpu-manager.md b/contributors/design-proposals/cpu-manager.md
index f54c52c5..e8ea0ce0 100644
--- a/contributors/design-proposals/cpu-manager.md
+++ b/contributors/design-proposals/cpu-manager.md
@@ -35,7 +35,7 @@ _Solution requirements:_
sure that the pod gets its cpu quota primarily from reserved core(s),
resulting in fewer context switches and higher cache affinity".
1. Support the case where in a given pod, one container is latency-critical
- and another is not (e.g. auxillary side-car containers responsible for
+ and another is not (e.g. auxiliary side-car containers responsible for
log forwarding, metrics collection and the like.)
1. Do not cap CPU quota for guaranteed containers that are granted
exclusive cores, since that would be antithetical to (1) above.
@@ -110,18 +110,18 @@ type State interface {
GetCPUSet(containerID string) (cpuset.CPUSet, bool)
GetDefaultCPUSet() cpuset.CPUSet
GetCPUSetOrDefault(containerID string) cpuset.CPUSet
- GetPresure() bool
+ GetPressure() bool
SetCPUSet(containerID string, cpuset CPUSet)
SetDefaultCPUSet(cpuset CPUSet)
Delete(containerID string)
- SetPresure(value bool)
+ SetPressure(value bool)
}
type Manager interface {
Start()
RegisterContainer(p *Pod, c *Container, containerID string) error
UnregisterContainer(containerID string) error
- IsUnderCPUPresure() bool
+ IsUnderCPUPressure() bool
State() state.Reader
}