From e0cf34381e0842addf590bc43e62d669c25164ed Mon Sep 17 00:00:00 2001 From: Haoran Wang Date: Fri, 24 Feb 2017 09:14:28 +0800 Subject: [PATCH] fix typo --- contributors/design-proposals/node-allocatable.md | 2 +- contributors/design-proposals/resource-qos.md | 2 +- contributors/design-proposals/resources.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contributors/design-proposals/node-allocatable.md b/contributors/design-proposals/node-allocatable.md index 3dec408a9..09efa7a94 100644 --- a/contributors/design-proposals/node-allocatable.md +++ b/contributors/design-proposals/node-allocatable.md @@ -326,7 +326,7 @@ for overflow and the node should continue to function. If the node has been sche situation. 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`. ### 3rd party schedulers diff --git a/contributors/design-proposals/resource-qos.md b/contributors/design-proposals/resource-qos.md index 7c84e7784..55962158b 100644 --- a/contributors/design-proposals/resource-qos.md +++ b/contributors/design-proposals/resource-qos.md @@ -20,7 +20,7 @@ Borg increased utilization by about 20% when it started allowing use of such non ## 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. Scheduling is based on `requests` and not `limits`. The pods and its containers will not be allowed to exceed the specified limit. diff --git a/contributors/design-proposals/resources.md b/contributors/design-proposals/resources.md index bb66885bd..6b01dbebc 100644 --- a/contributors/design-proposals/resources.md +++ b/contributors/design-proposals/resources.md @@ -302,8 +302,8 @@ where a `` or `` structure looks like this: ```yaml { mean: # arithmetic mean - max: # minimum value - min: # maximum value + max: # maximum value + min: # minimum value count: # number of data points percentiles: [ # map from %iles to values "10": <10th-percentile-value>,