Update scheduler.md

Fix kube-scheduler location.
This commit is contained in:
Ayush Pateria 2018-01-26 01:51:05 +05:30 committed by GitHub
parent 509a04d573
commit 1a5b74c000
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.