summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKubernetes Submit Queue <k8s-merge-robot@users.noreply.github.com>2017-11-06 04:51:26 -0800
committerGitHub <noreply@github.com>2017-11-06 04:51:26 -0800
commitb4c1b580b57b4ee3153ff3dfc9780ff4b7f13e96 (patch)
tree2b2ed24e1a3b2cb6a8474e30815505fd98f186d4
parentad4d3b5a81dc1f3edbf241de8ee79cd94b3a920b (diff)
parentd131b4ed819c7caaea0062a62e979f056106f7ce (diff)
Merge pull request #1342 from chenhonggc/invalid-link
Automatic merge from submit-queue. fix invalid link for initial-resources.md fixed some invalid link.
-rw-r--r--contributors/design-proposals/autoscaling/initial-resources.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/contributors/design-proposals/autoscaling/initial-resources.md b/contributors/design-proposals/autoscaling/initial-resources.md
index 432f6021..35f4aaa3 100644
--- a/contributors/design-proposals/autoscaling/initial-resources.md
+++ b/contributors/design-proposals/autoscaling/initial-resources.md
@@ -5,7 +5,7 @@ and set them before the container is run. This document describes design of the
## Motivation
-Since we want to make Kubernetes as simple as possible for its users we don't want to require setting [Resources](../design/resource-qos.md) for container by its owner.
+Since we want to make Kubernetes as simple as possible for its users we don't want to require setting [Resources](../node/resource-qos.md) for container by its owner.
On the other hand having Resources filled is critical for scheduling decisions.
Current solution to set up Resources to hardcoded value has obvious drawbacks.
We need to implement a component which will set initial Resources to a reasonable value.
@@ -18,7 +18,7 @@ For every container without Resources specified it will try to predict amount of
So that a pod without specified resources will be treated as
.
-InitialResources will set only [request](../design/resource-qos.md#requests-and-limits) (independently for each resource type: cpu, memory) field in the first version to avoid killing containers due to OOM (however the container still may be killed if exceeds requested resources).
+InitialResources will set only [request](../node/resource-qos.md#requests-and-limits) (independently for each resource type: cpu, memory) field in the first version to avoid killing containers due to OOM (however the container still may be killed if exceeds requested resources).
To make the component work with LimitRanger the estimated value will be capped by min and max possible values if defined.
It will prevent from situation when the pod is rejected due to too low or too high estimation.