From 12e16e8158fb86013e8ee3e577f3b92f0fdbcfeb Mon Sep 17 00:00:00 2001 From: "Da K. Ma" Date: Sat, 16 Mar 2019 09:34:15 +0800 Subject: [PATCH] Added actions/plugins. Signed-off-by: Da K. Ma --- cmd/scheduler/main.go | 3 +- .../scheduler/actions/allocate/allocate.go | 3 +- .../actions/allocate/allocate_test.go | 310 ++++++++++++++++++ .../scheduler/actions/backfill/backfill.go | 0 .../pkg => pkg}/scheduler/actions/factory.go | 8 +- .../scheduler/actions/preempt/preempt.go | 3 +- .../preempt/preempt_test.go} | 18 +- .../scheduler/actions/reclaim/reclaim.go | 0 .../algorithm/fairshare/fairshare.go | 38 --- .../plugins/conformance/conformance.go | 0 .../pkg => pkg}/scheduler/plugins/drf/drf.go | 0 .../pkg => pkg}/scheduler/plugins/factory.go | 14 +- .../scheduler/plugins/gang/gang.go | 0 .../scheduler/plugins/nodeorder/nodeorder.go | 0 .../plugins/predicates/predicates.go | 0 .../scheduler/plugins/priority/priority.go | 1 + .../plugins/proportion/proportion.go | 0 .../scheduler/util/priority_queue.go | 0 .../pkg => pkg}/scheduler/util/sort.go | 0 19 files changed, 338 insertions(+), 60 deletions(-) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/actions/allocate/allocate.go (98%) create mode 100644 pkg/scheduler/actions/allocate/allocate_test.go rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/actions/backfill/backfill.go (100%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/actions/factory.go (74%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/actions/preempt/preempt.go (99%) rename pkg/scheduler/{algorithm/factory.go => actions/preempt/preempt_test.go} (63%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/actions/reclaim/reclaim.go (100%) delete mode 100644 pkg/scheduler/algorithm/fairshare/fairshare.go rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/plugins/conformance/conformance.go (100%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/plugins/drf/drf.go (100%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/plugins/factory.go (69%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/plugins/gang/gang.go (100%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/plugins/nodeorder/nodeorder.go (100%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/plugins/predicates/predicates.go (100%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/plugins/priority/priority.go (99%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/plugins/proportion/proportion.go (100%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/util/priority_queue.go (100%) rename {vendor/github.com/kubernetes-sigs/kube-batch/pkg => pkg}/scheduler/util/sort.go (100%) diff --git a/cmd/scheduler/main.go b/cmd/scheduler/main.go index f779c403f0..79624a2d4a 100644 --- a/cmd/scheduler/main.go +++ b/cmd/scheduler/main.go @@ -26,7 +26,8 @@ import ( "k8s.io/apimachinery/pkg/util/wait" "k8s.io/apiserver/pkg/util/flag" - _ "volcano.sh/volcano/pkg/scheduler/algorithm" + _ "volcano.sh/volcano/pkg/scheduler/actions" + _ "volcano.sh/volcano/pkg/scheduler/plugins" "github.com/kubernetes-sigs/kube-batch/cmd/kube-batch/app" "github.com/kubernetes-sigs/kube-batch/cmd/kube-batch/app/options" diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/allocate/allocate.go b/pkg/scheduler/actions/allocate/allocate.go similarity index 98% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/allocate/allocate.go rename to pkg/scheduler/actions/allocate/allocate.go index 753ad8bbb2..e6cb053469 100644 --- a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/allocate/allocate.go +++ b/pkg/scheduler/actions/allocate/allocate.go @@ -21,7 +21,8 @@ import ( "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/api" "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/framework" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/util" + + "volcano.sh/volcano/pkg/scheduler/util" ) type allocateAction struct { diff --git a/pkg/scheduler/actions/allocate/allocate_test.go b/pkg/scheduler/actions/allocate/allocate_test.go new file mode 100644 index 0000000000..a1b3304b64 --- /dev/null +++ b/pkg/scheduler/actions/allocate/allocate_test.go @@ -0,0 +1,310 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package allocate + +import ( + "fmt" + + "reflect" + "sync" + "testing" + "time" + + "k8s.io/api/core/v1" + "k8s.io/apimachinery/pkg/api/resource" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/types" + "k8s.io/client-go/tools/record" + + kbv1 "github.com/kubernetes-sigs/kube-batch/pkg/apis/scheduling/v1alpha1" + "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/api" + "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/cache" + "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/conf" + "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/framework" + + "volcano.sh/volcano/pkg/scheduler/plugins/drf" + "volcano.sh/volcano/pkg/scheduler/plugins/proportion" +) + +func buildResourceList(cpu string, memory string) v1.ResourceList { + return v1.ResourceList{ + v1.ResourceCPU: resource.MustParse(cpu), + v1.ResourceMemory: resource.MustParse(memory), + api.GPUResourceName: resource.MustParse("0"), + } +} + +func buildResourceListWithGPU(cpu string, memory string, GPU string) v1.ResourceList { + return v1.ResourceList{ + v1.ResourceCPU: resource.MustParse(cpu), + v1.ResourceMemory: resource.MustParse(memory), + api.GPUResourceName: resource.MustParse(GPU), + } +} + +func buildNode(name string, alloc v1.ResourceList, labels map[string]string) *v1.Node { + return &v1.Node{ + ObjectMeta: metav1.ObjectMeta{ + Name: name, + Labels: labels, + }, + Status: v1.NodeStatus{ + Capacity: alloc, + Allocatable: alloc, + }, + } +} + +func buildPod(ns, n, nn string, p v1.PodPhase, req v1.ResourceList, groupName string, labels map[string]string, selector map[string]string) *v1.Pod { + return &v1.Pod{ + ObjectMeta: metav1.ObjectMeta{ + UID: types.UID(fmt.Sprintf("%v-%v", ns, n)), + Name: n, + Namespace: ns, + Labels: labels, + Annotations: map[string]string{ + kbv1.GroupNameAnnotationKey: groupName, + }, + }, + Status: v1.PodStatus{ + Phase: p, + }, + Spec: v1.PodSpec{ + NodeName: nn, + NodeSelector: selector, + Containers: []v1.Container{ + { + Resources: v1.ResourceRequirements{ + Requests: req, + }, + }, + }, + }, + } +} + +type fakeBinder struct { + sync.Mutex + binds map[string]string + c chan string +} + +func (fb *fakeBinder) Bind(p *v1.Pod, hostname string) error { + fb.Lock() + defer fb.Unlock() + + key := fmt.Sprintf("%v/%v", p.Namespace, p.Name) + fb.binds[key] = hostname + + fb.c <- key + + return nil +} + +type fakeStatusUpdater struct { +} + +func (ftsu *fakeStatusUpdater) UpdatePodCondition(pod *v1.Pod, podCondition *v1.PodCondition) (*v1.Pod, error) { + // do nothing here + return nil, nil +} + +func (ftsu *fakeStatusUpdater) UpdatePodGroup(pg *kbv1.PodGroup) (*kbv1.PodGroup, error) { + // do nothing here + return nil, nil +} + +type fakeVolumeBinder struct { +} + +func (fvb *fakeVolumeBinder) AllocateVolumes(task *api.TaskInfo, hostname string) error { + return nil +} +func (fvb *fakeVolumeBinder) BindVolumes(task *api.TaskInfo) error { + return nil +} + +func TestAllocate(t *testing.T) { + framework.RegisterPluginBuilder("drf", drf.New) + framework.RegisterPluginBuilder("proportion", proportion.New) + defer framework.CleanupPluginBuilders() + + tests := []struct { + name string + podGroups []*kbv1.PodGroup + pods []*v1.Pod + nodes []*v1.Node + queues []*kbv1.Queue + expected map[string]string + }{ + { + name: "one Job with two Pods on one node", + podGroups: []*kbv1.PodGroup{ + { + ObjectMeta: metav1.ObjectMeta{ + Name: "pg1", + Namespace: "c1", + }, + Spec: kbv1.PodGroupSpec{ + Queue: "c1", + }, + }, + }, + pods: []*v1.Pod{ + buildPod("c1", "p1", "", v1.PodPending, buildResourceList("1", "1G"), "pg1", make(map[string]string), make(map[string]string)), + buildPod("c1", "p2", "", v1.PodPending, buildResourceList("1", "1G"), "pg1", make(map[string]string), make(map[string]string)), + }, + nodes: []*v1.Node{ + buildNode("n1", buildResourceList("2", "4Gi"), make(map[string]string)), + }, + queues: []*kbv1.Queue{ + { + ObjectMeta: metav1.ObjectMeta{ + Name: "c1", + }, + Spec: kbv1.QueueSpec{ + Weight: 1, + }, + }, + }, + expected: map[string]string{ + "c1/p1": "n1", + "c1/p2": "n1", + }, + }, + { + name: "two Jobs on one node", + podGroups: []*kbv1.PodGroup{ + { + ObjectMeta: metav1.ObjectMeta{ + Name: "pg1", + Namespace: "c1", + }, + Spec: kbv1.PodGroupSpec{ + Queue: "c1", + }, + }, + { + ObjectMeta: metav1.ObjectMeta{ + Name: "pg2", + Namespace: "c2", + }, + Spec: kbv1.PodGroupSpec{ + Queue: "c2", + }, + }, + }, + + pods: []*v1.Pod{ + // pending pod with owner1, under c1 + buildPod("c1", "p1", "", v1.PodPending, buildResourceList("1", "1G"), "pg1", make(map[string]string), make(map[string]string)), + // pending pod with owner1, under c1 + buildPod("c1", "p2", "", v1.PodPending, buildResourceList("1", "1G"), "pg1", make(map[string]string), make(map[string]string)), + // pending pod with owner2, under c2 + buildPod("c2", "p1", "", v1.PodPending, buildResourceList("1", "1G"), "pg2", make(map[string]string), make(map[string]string)), + // pending pod with owner, under c2 + buildPod("c2", "p2", "", v1.PodPending, buildResourceList("1", "1G"), "pg2", make(map[string]string), make(map[string]string)), + }, + nodes: []*v1.Node{ + buildNode("n1", buildResourceList("2", "4G"), make(map[string]string)), + }, + queues: []*kbv1.Queue{ + { + ObjectMeta: metav1.ObjectMeta{ + Name: "c1", + }, + Spec: kbv1.QueueSpec{ + Weight: 1, + }, + }, + { + ObjectMeta: metav1.ObjectMeta{ + Name: "c2", + }, + Spec: kbv1.QueueSpec{ + Weight: 1, + }, + }, + }, + expected: map[string]string{ + "c2/p1": "n1", + "c1/p1": "n1", + }, + }, + } + + allocate := New() + + for i, test := range tests { + binder := &fakeBinder{ + binds: map[string]string{}, + c: make(chan string), + } + schedulerCache := &cache.SchedulerCache{ + Nodes: make(map[string]*api.NodeInfo), + Jobs: make(map[api.JobID]*api.JobInfo), + Queues: make(map[api.QueueID]*api.QueueInfo), + Binder: binder, + StatusUpdater: &fakeStatusUpdater{}, + VolumeBinder: &fakeVolumeBinder{}, + + Recorder: record.NewFakeRecorder(100), + } + for _, node := range test.nodes { + schedulerCache.AddNode(node) + } + for _, pod := range test.pods { + schedulerCache.AddPod(pod) + } + + for _, ss := range test.podGroups { + schedulerCache.AddPodGroup(ss) + } + + for _, q := range test.queues { + schedulerCache.AddQueue(q) + } + + ssn := framework.OpenSession(schedulerCache, []conf.Tier{ + { + Plugins: []conf.PluginOption{ + { + Name: "drf", + }, + { + Name: "proportion", + }, + }, + }, + }) + defer framework.CloseSession(ssn) + + allocate.Execute(ssn) + + for i := 0; i < len(test.expected); i++ { + select { + case <-binder.c: + case <-time.After(3 * time.Second): + t.Errorf("Failed to get binding request.") + } + } + + if !reflect.DeepEqual(test.expected, binder.binds) { + t.Errorf("case %d (%s): expected: %v, got %v ", i, test.name, test.expected, binder.binds) + } + } +} diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/backfill/backfill.go b/pkg/scheduler/actions/backfill/backfill.go similarity index 100% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/backfill/backfill.go rename to pkg/scheduler/actions/backfill/backfill.go diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/factory.go b/pkg/scheduler/actions/factory.go similarity index 74% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/factory.go rename to pkg/scheduler/actions/factory.go index 827533b226..cbc8439fdf 100644 --- a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/factory.go +++ b/pkg/scheduler/actions/factory.go @@ -19,10 +19,10 @@ package actions import ( "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/framework" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/allocate" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/backfill" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/preempt" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/reclaim" + "volcano.sh/volcano/pkg/scheduler/actions/allocate" + "volcano.sh/volcano/pkg/scheduler/actions/backfill" + "volcano.sh/volcano/pkg/scheduler/actions/preempt" + "volcano.sh/volcano/pkg/scheduler/actions/reclaim" ) func init() { diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/preempt/preempt.go b/pkg/scheduler/actions/preempt/preempt.go similarity index 99% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/preempt/preempt.go rename to pkg/scheduler/actions/preempt/preempt.go index 9b21325490..7289d92a03 100644 --- a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/preempt/preempt.go +++ b/pkg/scheduler/actions/preempt/preempt.go @@ -24,7 +24,8 @@ import ( "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/api" "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/framework" "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/metrics" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/util" + + "volcano.sh/volcano/pkg/scheduler/util" ) type preemptAction struct { diff --git a/pkg/scheduler/algorithm/factory.go b/pkg/scheduler/actions/preempt/preempt_test.go similarity index 63% rename from pkg/scheduler/algorithm/factory.go rename to pkg/scheduler/actions/preempt/preempt_test.go index b68b108524..f6b677ac94 100644 --- a/pkg/scheduler/algorithm/factory.go +++ b/pkg/scheduler/actions/preempt/preempt_test.go @@ -1,5 +1,5 @@ /* -Copyright 2018 The Vulcan Authors. +Copyright 2018 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -14,17 +14,19 @@ See the License for the specific language governing permissions and limitations under the License. */ -package algorithm +package preempt import ( + "testing" + "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/framework" - // Import default actions/plugins. - _ "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions" - _ "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins" - "volcano.sh/volcano/pkg/scheduler/algorithm/fairshare" + "volcano.sh/volcano/pkg/scheduler/plugins/drf" ) -func init() { - framework.RegisterPluginBuilder("fairshare", fairshare.New) +func TestPreempt(t *testing.T) { + framework.RegisterPluginBuilder("drf", drf.New) + defer framework.CleanupPluginBuilders() + + // TODO (k82cn): Add UT cases here. } diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/reclaim/reclaim.go b/pkg/scheduler/actions/reclaim/reclaim.go similarity index 100% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/actions/reclaim/reclaim.go rename to pkg/scheduler/actions/reclaim/reclaim.go diff --git a/pkg/scheduler/algorithm/fairshare/fairshare.go b/pkg/scheduler/algorithm/fairshare/fairshare.go deleted file mode 100644 index f9a566b4d8..0000000000 --- a/pkg/scheduler/algorithm/fairshare/fairshare.go +++ /dev/null @@ -1,38 +0,0 @@ -/* -Copyright 2018 The Volcano Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package fairshare - -import "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/framework" - -type fairsharePlugin struct { -} - -func New() framework.Plugin { - return &fairsharePlugin{} -} - -func (dp *fairsharePlugin) Name() string { - return "fairshare" -} - -func (dp *fairsharePlugin) OnSessionOpen(ssn *framework.Session) { - -} - -func (dp *fairsharePlugin) OnSessionClose(ssn *framework.Session) { - -} diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/conformance/conformance.go b/pkg/scheduler/plugins/conformance/conformance.go similarity index 100% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/conformance/conformance.go rename to pkg/scheduler/plugins/conformance/conformance.go diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/drf/drf.go b/pkg/scheduler/plugins/drf/drf.go similarity index 100% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/drf/drf.go rename to pkg/scheduler/plugins/drf/drf.go diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/factory.go b/pkg/scheduler/plugins/factory.go similarity index 69% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/factory.go rename to pkg/scheduler/plugins/factory.go index 331b9db09f..193a42e034 100644 --- a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/factory.go +++ b/pkg/scheduler/plugins/factory.go @@ -19,13 +19,13 @@ package plugins import ( "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/framework" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/conformance" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/drf" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/gang" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/nodeorder" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/predicates" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/priority" - "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/proportion" + "volcano.sh/volcano/pkg/scheduler/plugins/conformance" + "volcano.sh/volcano/pkg/scheduler/plugins/drf" + "volcano.sh/volcano/pkg/scheduler/plugins/gang" + "volcano.sh/volcano/pkg/scheduler/plugins/nodeorder" + "volcano.sh/volcano/pkg/scheduler/plugins/predicates" + "volcano.sh/volcano/pkg/scheduler/plugins/priority" + "volcano.sh/volcano/pkg/scheduler/plugins/proportion" ) func init() { diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/gang/gang.go b/pkg/scheduler/plugins/gang/gang.go similarity index 100% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/gang/gang.go rename to pkg/scheduler/plugins/gang/gang.go diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/nodeorder/nodeorder.go b/pkg/scheduler/plugins/nodeorder/nodeorder.go similarity index 100% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/nodeorder/nodeorder.go rename to pkg/scheduler/plugins/nodeorder/nodeorder.go diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/predicates/predicates.go b/pkg/scheduler/plugins/predicates/predicates.go similarity index 100% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/predicates/predicates.go rename to pkg/scheduler/plugins/predicates/predicates.go diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/priority/priority.go b/pkg/scheduler/plugins/priority/priority.go similarity index 99% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/priority/priority.go rename to pkg/scheduler/plugins/priority/priority.go index edb4ac4756..c1a422d9dd 100644 --- a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/priority/priority.go +++ b/pkg/scheduler/plugins/priority/priority.go @@ -18,6 +18,7 @@ package priority import ( "github.com/golang/glog" + "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/api" "github.com/kubernetes-sigs/kube-batch/pkg/scheduler/framework" ) diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/proportion/proportion.go b/pkg/scheduler/plugins/proportion/proportion.go similarity index 100% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/plugins/proportion/proportion.go rename to pkg/scheduler/plugins/proportion/proportion.go diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/util/priority_queue.go b/pkg/scheduler/util/priority_queue.go similarity index 100% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/util/priority_queue.go rename to pkg/scheduler/util/priority_queue.go diff --git a/vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/util/sort.go b/pkg/scheduler/util/sort.go similarity index 100% rename from vendor/github.com/kubernetes-sigs/kube-batch/pkg/scheduler/util/sort.go rename to pkg/scheduler/util/sort.go