-
Notifications
You must be signed in to change notification settings - Fork 502
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tidb-scheduler: implement kube-scheduler extender preempt verb (#2510)
* Implement kube-scheduler extender preempt verb * fix preemption bug in types Co-authored-by: DanielZhangQD <[email protected]>
- Loading branch information
1 parent
e413d49
commit dd1fc1c
Showing
6 changed files
with
391 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2020 PingCAP, Inc. | ||
// | ||
// 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, | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package predicates | ||
|
||
import ( | ||
v1 "k8s.io/api/core/v1" | ||
) | ||
|
||
type FakePredicate struct { | ||
FakeName string | ||
Nodes []v1.Node | ||
Err error | ||
} | ||
|
||
var _ Predicate = &FakePredicate{} | ||
|
||
func NewFakePredicate(name string, nodes []v1.Node, err error) *FakePredicate { | ||
return &FakePredicate{} | ||
} | ||
|
||
func (f *FakePredicate) Name() string { | ||
return f.FakeName | ||
} | ||
|
||
func (f *FakePredicate) Filter(_ string, _ *v1.Pod, nodes []v1.Node) ([]v1.Node, error) { | ||
if f.Err != nil { | ||
return nil, f.Err | ||
} | ||
if f.Nodes != nil { | ||
return f.Nodes, nil | ||
} | ||
return nodes, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.