summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Grant <bgrant0607@users.noreply.github.com>2017-04-07 13:03:46 -0700
committerGitHub <noreply@github.com>2017-04-07 13:03:46 -0700
commitffaeca51c5bcfd20cd9432080371defa4eb47552 (patch)
tree8c6035ebc6dba5af8f4b9ef1d44cc7f5fc17b2cf
parent5c9d60d453565bfc667e2e0a11c1412d806c58da (diff)
Clarify ownership of pod execution policy
-rw-r--r--contributors/design-proposals/architecture.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/contributors/design-proposals/architecture.md b/contributors/design-proposals/architecture.md
index 02516daa..3dac164e 100644
--- a/contributors/design-proposals/architecture.md
+++ b/contributors/design-proposals/architecture.md
@@ -202,6 +202,10 @@ concerns, and migration from physical/virtual machines. The Pod primitive is key
[primary benefits](https://kubernetes.io/docs/whatisk8s/#why-containers) of deployment on modern
cloud platforms, such as Kubernetes.
+API admission control may reject pods or add additional scheduling constraints to them, but
+Kubelet is the final arbiter of what pods can and cannot run on a given node, not the schedulers
+or DaemonSets.
+
Kubelet also currently links in the [cAdvisor](https://github.com/google/cadvisor) resource monitoring
agent.