summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortanshanshan <tan.shanshan@zte.com.cn>2017-03-01 17:29:55 +0800
committertanshanshan <tan.shanshan@zte.com.cn>2017-03-01 17:29:55 +0800
commitc8569fc46a7c6923f504f040fad5883795efd74d (patch)
tree3f7d8a24f09fd4fc108ffde74b43d8f9fdf2bc39
parentaa25c60958ef8b1c8212ce2cd747307128a8fae7 (diff)
fix invalid url
-rwxr-xr-xcontributors/devel/scheduler.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/contributors/devel/scheduler.md b/contributors/devel/scheduler.md
index 1e48d08e..67761acf 100755
--- a/contributors/devel/scheduler.md
+++ b/contributors/devel/scheduler.md
@@ -9,9 +9,9 @@ and for each Pod, it posts a binding indicating where the Pod should be schedule
We are dividng scheduler into three layers from high level:
- [plugin/cmd/kube-scheduler/scheduler.go](http://releases.k8s.io/HEAD/plugin/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):
+- [plugin/pkg/scheduler/scheduler.go](http://releases.k8s.io/HEAD/plugin/pkg/scheduler/scheduler.go):
This is the scheduler framework that handles stuff (e.g. binding) beyond the scheduling algorithm.
-- [pkg/scheduler/generic_scheduler.go](http://releases.k8s.io/HEAD/plugin/pkg/scheduler/core/generic_scheduler.go):
+- [plugin/pkg/scheduler/generic_scheduler.go](http://releases.k8s.io/HEAD/plugin/pkg/scheduler/core/generic_scheduler.go):
The scheduling algorithm that assigns nodes for pods.
## The scheduling algorithm