summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAyush Pateria <cs15btech11007@iith.ac.in>2018-01-26 01:51:05 +0530
committerGitHub <noreply@github.com>2018-01-26 01:51:05 +0530
commit1a5b74c000a0f564ddc19b3fa3a641d0027a9f5d (patch)
tree76c7b675ba0dff6c4dcbcbf7e68077a24b6db711
parent509a04d573dcaed714ff14c865fe115bf9524993 (diff)
Update scheduler.md
Fix kube-scheduler location.
-rw-r--r--contributors/devel/scheduler.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/contributors/devel/scheduler.md b/contributors/devel/scheduler.md
index 07a885e8..f4f671fc 100644
--- a/contributors/devel/scheduler.md
+++ b/contributors/devel/scheduler.md
@@ -7,7 +7,7 @@ and for each Pod, it posts a binding indicating where the Pod should be schedule
## Exploring the code
We are dividng scheduler into three layers from high level:
-- [cmd/kube-scheduler/scheduler.go](http://releases.k8s.io/HEAD/plugin/cmd/kube-scheduler/scheduler.go):
+- [cmd/kube-scheduler/scheduler.go](http://releases.k8s.io/HEAD/cmd/kube-scheduler/scheduler.go):
This is the main() entry that does initialization before calling the scheduler framework.
- [pkg/scheduler/scheduler.go](http://releases.k8s.io/HEAD/pkg/scheduler/scheduler.go):
This is the scheduler framework that handles stuff (e.g. binding) beyond the scheduling algorithm.