summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCuiHaozhi <cuihaozhi@chinacloud.com.cn>2017-11-22 01:57:36 -0500
committerCuiHaozhi <cuihaozhi@chinacloud.com.cn>2017-11-22 01:57:36 -0500
commit50c8b1bca43fa6e9ac5aa5b96a6df20094cfaa04 (patch)
tree0e3fb0acbc75b33eae271734828de9581acb71ed
parentdabcb655ea553251baeeafc9be53527e2b2646c7 (diff)
resource-qos: fix invalid links
Signed-off-by: CuiHaozhi <cuihaozhi@chinacloud.com.cn>
-rw-r--r--contributors/design-proposals/node/resource-qos.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/contributors/design-proposals/node/resource-qos.md b/contributors/design-proposals/node/resource-qos.md
index d2afdcbd..238a9dac 100644
--- a/contributors/design-proposals/node/resource-qos.md
+++ b/contributors/design-proposals/node/resource-qos.md
@@ -20,11 +20,11 @@ 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`](../design-proposals/node/node-allocatable.md) & `request <= limit <= Infinity`.
+For each resource, containers can specify a resource request and limit, `0 <= request <= `[`Node Allocatable`](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.
-How the request and limit are enforced depends on whether the resource is [compressible or incompressible](resources.md).
+How the request and limit are enforced depends on whether the resource is [compressible or incompressible](../scheduling/resources.md).
### Compressible Resource Guarantees
@@ -41,7 +41,7 @@ How the request and limit are enforced depends on whether the resource is [compr
### Admission/Scheduling Policy
-- Pods will be admitted by Kubelet & scheduled by the scheduler based on the sum of requests of its containers. The scheduler & kubelet will ensure that sum of requests of all containers is within the node's [allocatable](../proposals/node-allocatable.md) capacity (for both memory and CPU).
+- Pods will be admitted by Kubelet & scheduled by the scheduler based on the sum of requests of its containers. The scheduler & kubelet will ensure that sum of requests of all containers is within the node's [allocatable](node-allocatable.md) capacity (for both memory and CPU).
## QoS Classes