From 50c8b1bca43fa6e9ac5aa5b96a6df20094cfaa04 Mon Sep 17 00:00:00 2001 From: CuiHaozhi Date: Wed, 22 Nov 2017 01:57:36 -0500 Subject: [PATCH] resource-qos: fix invalid links Signed-off-by: CuiHaozhi --- contributors/design-proposals/node/resource-qos.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contributors/design-proposals/node/resource-qos.md b/contributors/design-proposals/node/resource-qos.md index d2afdcbdf..238a9daca 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