From 303b6287ff4a188cbc785c08dacb99c18fd1f6e4 Mon Sep 17 00:00:00 2001 From: Amanpreet Singh Date: Wed, 20 Jul 2016 18:21:56 +0530 Subject: [PATCH] Make a link in docs clickable - Github flavored markdown doesn't support links inside codeblocks --- docs/design/resource-qos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design/resource-qos.md b/docs/design/resource-qos.md index 24b966fd230..48b41b4875f 100644 --- a/docs/design/resource-qos.md +++ b/docs/design/resource-qos.md @@ -54,7 +54,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`](../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.