summaryrefslogtreecommitdiff
path: root/contributors
diff options
context:
space:
mode:
authork8s-ci-robot <k8s-ci-robot@users.noreply.github.com>2018-01-28 10:16:30 -0800
committerGitHub <noreply@github.com>2018-01-28 10:16:30 -0800
commit8da738d6172cba89f8b45f792b7fc3ae6470dfad (patch)
tree7cf7fff39a2bb04c545e0da90ee58dd11692c0c1 /contributors
parent6add3fb427c8fb4ad1fe654f93d219cc6bb7404a (diff)
parent1a5b74c000a0f564ddc19b3fa3a641d0027a9f5d (diff)
Merge pull request #1690 from ayushpateria/patch-2
Update scheduler.md
Diffstat (limited to 'contributors')
-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.