Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
3a6d4c10
Unverified
Commit
3a6d4c10
authored
Dec 22, 2018
by
Kubernetes Prow Robot
Committed by
GitHub
Dec 22, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #72284 from bhavin192/scheduler-cleanup
[scheduler] Move predicate & priority registration to separate file
parents
190f6d87
ca46c1da
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
292 additions
and
9 deletions
+292
-9
BUILD
pkg/scheduler/algorithm/priorities/BUILD
+1
-0
priorities.go
pkg/scheduler/algorithm/priorities/priorities.go
+54
-0
BUILD
pkg/scheduler/algorithmprovider/defaults/BUILD
+6
-1
defaults.go
pkg/scheduler/algorithmprovider/defaults/defaults.go
+0
-0
defaults_test.go
pkg/scheduler/algorithmprovider/defaults/defaults_test.go
+10
-8
register_predicates.go
...heduler/algorithmprovider/defaults/register_predicates.go
+124
-0
register_priorities.go
...heduler/algorithmprovider/defaults/register_priorities.go
+97
-0
No files found.
pkg/scheduler/algorithm/priorities/BUILD
View file @
3a6d4c10
...
@@ -18,6 +18,7 @@ go_library(
...
@@ -18,6 +18,7 @@ go_library(
"node_affinity.go",
"node_affinity.go",
"node_label.go",
"node_label.go",
"node_prefer_avoid_pods.go",
"node_prefer_avoid_pods.go",
"priorities.go",
"reduce.go",
"reduce.go",
"requested_to_capacity_ratio.go",
"requested_to_capacity_ratio.go",
"resource_allocation.go",
"resource_allocation.go",
...
...
pkg/scheduler/algorithm/priorities/priorities.go
0 → 100644
View file @
3a6d4c10
/*
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.
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
priorities
const
(
// EqualPriority defines the name of prioritizer function that gives an equal weight of one to all nodes.
EqualPriority
=
"EqualPriority"
// MostRequestedPriority defines the name of prioritizer function that gives used nodes higher priority.
MostRequestedPriority
=
"MostRequestedPriority"
// RequestedToCapacityRatioPriority defines the name of RequestedToCapacityRatioPriority.
RequestedToCapacityRatioPriority
=
"RequestedToCapacityRatioPriority"
// SelectorSpreadPriority defines the name of prioritizer function that spreads pods by minimizing
// the number of pods (belonging to the same service or replication controller) on the same node.
SelectorSpreadPriority
=
"SelectorSpreadPriority"
// ServiceSpreadingPriority is largely replaced by "SelectorSpreadPriority".
ServiceSpreadingPriority
=
"ServiceSpreadingPriority"
// InterPodAffinityPriority defines the name of prioritizer function that decides which pods should or
// should not be placed in the same topological domain as some other pods.
InterPodAffinityPriority
=
"InterPodAffinityPriority"
// LeastRequestedPriority defines the name of prioritizer function that prioritize nodes by least
// requested utilization.
LeastRequestedPriority
=
"LeastRequestedPriority"
// BalancedResourceAllocation defines the name of prioritizer function that prioritizes nodes
// to help achieve balanced resource usage.
BalancedResourceAllocation
=
"BalancedResourceAllocation"
// NodePreferAvoidPodsPriority defines the name of prioritizer function that priorities nodes according to
// the node annotation "scheduler.alpha.kubernetes.io/preferAvoidPods".
NodePreferAvoidPodsPriority
=
"NodePreferAvoidPodsPriority"
// NodeAffinityPriority defines the name of prioritizer function that prioritizes nodes which have labels
// matching NodeAffinity.
NodeAffinityPriority
=
"NodeAffinityPriority"
// TaintTolerationPriority defines the name of prioritizer function that prioritizes nodes that marked
// with taint which pod can tolerate.
TaintTolerationPriority
=
"TaintTolerationPriority"
// ImageLocalityPriority defines the name of prioritizer function that prioritizes nodes that have images
// requested by the pod present.
ImageLocalityPriority
=
"ImageLocalityPriority"
// ResourceLimitsPriority defines the nodes of prioritizer function ResourceLimitsPriority.
ResourceLimitsPriority
=
"ResourceLimitsPriority"
)
pkg/scheduler/algorithmprovider/defaults/BUILD
View file @
3a6d4c10
...
@@ -8,7 +8,11 @@ load(
...
@@ -8,7 +8,11 @@ load(
go_library(
go_library(
name = "go_default_library",
name = "go_default_library",
srcs = ["defaults.go"],
srcs = [
"defaults.go",
"register_predicates.go",
"register_priorities.go",
],
importpath = "k8s.io/kubernetes/pkg/scheduler/algorithmprovider/defaults",
importpath = "k8s.io/kubernetes/pkg/scheduler/algorithmprovider/defaults",
deps = [
deps = [
"//pkg/features:go_default_library",
"//pkg/features:go_default_library",
...
@@ -29,6 +33,7 @@ go_test(
...
@@ -29,6 +33,7 @@ go_test(
embed = [":go_default_library"],
embed = [":go_default_library"],
deps = [
deps = [
"//pkg/scheduler/algorithm/predicates:go_default_library",
"//pkg/scheduler/algorithm/predicates:go_default_library",
"//pkg/scheduler/algorithm/priorities:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/util/sets:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/util/sets:go_default_library",
],
],
)
)
...
...
pkg/scheduler/algorithmprovider/defaults/defaults.go
View file @
3a6d4c10
This diff is collapsed.
Click to expand it.
pkg/scheduler/algorithmprovider/defaults/defaults_test.go
View file @
3a6d4c10
...
@@ -21,6 +21,7 @@ import (
...
@@ -21,6 +21,7 @@ import (
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/kubernetes/pkg/scheduler/algorithm/predicates"
"k8s.io/kubernetes/pkg/scheduler/algorithm/predicates"
"k8s.io/kubernetes/pkg/scheduler/algorithm/priorities"
)
)
func
TestCopyAndReplace
(
t
*
testing
.
T
)
{
func
TestCopyAndReplace
(
t
*
testing
.
T
)
{
...
@@ -53,14 +54,15 @@ func TestCopyAndReplace(t *testing.T) {
...
@@ -53,14 +54,15 @@ func TestCopyAndReplace(t *testing.T) {
func
TestDefaultPriorities
(
t
*
testing
.
T
)
{
func
TestDefaultPriorities
(
t
*
testing
.
T
)
{
result
:=
sets
.
NewString
(
result
:=
sets
.
NewString
(
"SelectorSpreadPriority"
,
priorities
.
SelectorSpreadPriority
,
"InterPodAffinityPriority"
,
priorities
.
InterPodAffinityPriority
,
"LeastRequestedPriority"
,
priorities
.
LeastRequestedPriority
,
"BalancedResourceAllocation"
,
priorities
.
BalancedResourceAllocation
,
"NodePreferAvoidPodsPriority"
,
priorities
.
NodePreferAvoidPodsPriority
,
"NodeAffinityPriority"
,
priorities
.
NodeAffinityPriority
,
"TaintTolerationPriority"
,
priorities
.
TaintTolerationPriority
,
"ImageLocalityPriority"
)
priorities
.
ImageLocalityPriority
,
)
if
expected
:=
defaultPriorities
();
!
result
.
Equal
(
expected
)
{
if
expected
:=
defaultPriorities
();
!
result
.
Equal
(
expected
)
{
t
.
Errorf
(
"expected %v got %v"
,
expected
,
result
)
t
.
Errorf
(
"expected %v got %v"
,
expected
,
result
)
}
}
...
...
pkg/scheduler/algorithmprovider/defaults/register_predicates.go
0 → 100644
View file @
3a6d4c10
/*
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.
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
defaults
import
(
"k8s.io/kubernetes/pkg/scheduler/algorithm/predicates"
"k8s.io/kubernetes/pkg/scheduler/factory"
)
func
init
()
{
// Register functions that extract metadata used by predicates computations.
factory
.
RegisterPredicateMetadataProducerFactory
(
func
(
args
factory
.
PluginFactoryArgs
)
predicates
.
PredicateMetadataProducer
{
return
predicates
.
NewPredicateMetadataFactory
(
args
.
PodLister
)
})
// IMPORTANT NOTES for predicate developers:
// Registers predicates and priorities that are not enabled by default, but user can pick when creating their
// own set of priorities/predicates.
// PodFitsPorts has been replaced by PodFitsHostPorts for better user understanding.
// For backwards compatibility with 1.0, PodFitsPorts is registered as well.
factory
.
RegisterFitPredicate
(
"PodFitsPorts"
,
predicates
.
PodFitsHostPorts
)
// Fit is defined based on the absence of port conflicts.
// This predicate is actually a default predicate, because it is invoked from
// predicates.GeneralPredicates()
factory
.
RegisterFitPredicate
(
predicates
.
PodFitsHostPortsPred
,
predicates
.
PodFitsHostPorts
)
// Fit is determined by resource availability.
// This predicate is actually a default predicate, because it is invoked from
// predicates.GeneralPredicates()
factory
.
RegisterFitPredicate
(
predicates
.
PodFitsResourcesPred
,
predicates
.
PodFitsResources
)
// Fit is determined by the presence of the Host parameter and a string match
// This predicate is actually a default predicate, because it is invoked from
// predicates.GeneralPredicates()
factory
.
RegisterFitPredicate
(
predicates
.
HostNamePred
,
predicates
.
PodFitsHost
)
// Fit is determined by node selector query.
factory
.
RegisterFitPredicate
(
predicates
.
MatchNodeSelectorPred
,
predicates
.
PodMatchNodeSelector
)
// Fit is determined by volume zone requirements.
factory
.
RegisterFitPredicateFactory
(
predicates
.
NoVolumeZoneConflictPred
,
func
(
args
factory
.
PluginFactoryArgs
)
predicates
.
FitPredicate
{
return
predicates
.
NewVolumeZonePredicate
(
args
.
PVInfo
,
args
.
PVCInfo
,
args
.
StorageClassInfo
)
},
)
// Fit is determined by whether or not there would be too many AWS EBS volumes attached to the node
factory
.
RegisterFitPredicateFactory
(
predicates
.
MaxEBSVolumeCountPred
,
func
(
args
factory
.
PluginFactoryArgs
)
predicates
.
FitPredicate
{
return
predicates
.
NewMaxPDVolumeCountPredicate
(
predicates
.
EBSVolumeFilterType
,
args
.
PVInfo
,
args
.
PVCInfo
)
},
)
// Fit is determined by whether or not there would be too many GCE PD volumes attached to the node
factory
.
RegisterFitPredicateFactory
(
predicates
.
MaxGCEPDVolumeCountPred
,
func
(
args
factory
.
PluginFactoryArgs
)
predicates
.
FitPredicate
{
return
predicates
.
NewMaxPDVolumeCountPredicate
(
predicates
.
GCEPDVolumeFilterType
,
args
.
PVInfo
,
args
.
PVCInfo
)
},
)
// Fit is determined by whether or not there would be too many Azure Disk volumes attached to the node
factory
.
RegisterFitPredicateFactory
(
predicates
.
MaxAzureDiskVolumeCountPred
,
func
(
args
factory
.
PluginFactoryArgs
)
predicates
.
FitPredicate
{
return
predicates
.
NewMaxPDVolumeCountPredicate
(
predicates
.
AzureDiskVolumeFilterType
,
args
.
PVInfo
,
args
.
PVCInfo
)
},
)
factory
.
RegisterFitPredicateFactory
(
predicates
.
MaxCSIVolumeCountPred
,
func
(
args
factory
.
PluginFactoryArgs
)
predicates
.
FitPredicate
{
return
predicates
.
NewCSIMaxVolumeLimitPredicate
(
args
.
PVInfo
,
args
.
PVCInfo
)
},
)
// Fit is determined by inter-pod affinity.
factory
.
RegisterFitPredicateFactory
(
predicates
.
MatchInterPodAffinityPred
,
func
(
args
factory
.
PluginFactoryArgs
)
predicates
.
FitPredicate
{
return
predicates
.
NewPodAffinityPredicate
(
args
.
NodeInfo
,
args
.
PodLister
)
},
)
// Fit is determined by non-conflicting disk volumes.
factory
.
RegisterFitPredicate
(
predicates
.
NoDiskConflictPred
,
predicates
.
NoDiskConflict
)
// GeneralPredicates are the predicates that are enforced by all Kubernetes components
// (e.g. kubelet and all schedulers)
factory
.
RegisterFitPredicate
(
predicates
.
GeneralPred
,
predicates
.
GeneralPredicates
)
// Fit is determined by node memory pressure condition.
factory
.
RegisterFitPredicate
(
predicates
.
CheckNodeMemoryPressurePred
,
predicates
.
CheckNodeMemoryPressurePredicate
)
// Fit is determined by node disk pressure condition.
factory
.
RegisterFitPredicate
(
predicates
.
CheckNodeDiskPressurePred
,
predicates
.
CheckNodeDiskPressurePredicate
)
// Fit is determined by node pid pressure condition.
factory
.
RegisterFitPredicate
(
predicates
.
CheckNodePIDPressurePred
,
predicates
.
CheckNodePIDPressurePredicate
)
// Fit is determined by node conditions: not ready, network unavailable or out of disk.
factory
.
RegisterMandatoryFitPredicate
(
predicates
.
CheckNodeConditionPred
,
predicates
.
CheckNodeConditionPredicate
)
// Fit is determined based on whether a pod can tolerate all of the node's taints
factory
.
RegisterFitPredicate
(
predicates
.
PodToleratesNodeTaintsPred
,
predicates
.
PodToleratesNodeTaints
)
// Fit is determined by volume topology requirements.
factory
.
RegisterFitPredicateFactory
(
predicates
.
CheckVolumeBindingPred
,
func
(
args
factory
.
PluginFactoryArgs
)
predicates
.
FitPredicate
{
return
predicates
.
NewVolumeBindingPredicate
(
args
.
VolumeBinder
)
},
)
}
pkg/scheduler/algorithmprovider/defaults/register_priorities.go
0 → 100644
View file @
3a6d4c10
/*
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.
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
defaults
import
(
"k8s.io/kubernetes/pkg/scheduler/algorithm"
"k8s.io/kubernetes/pkg/scheduler/algorithm/priorities"
"k8s.io/kubernetes/pkg/scheduler/core"
"k8s.io/kubernetes/pkg/scheduler/factory"
)
func
init
()
{
// Register functions that extract metadata used by priorities computations.
factory
.
RegisterPriorityMetadataProducerFactory
(
func
(
args
factory
.
PluginFactoryArgs
)
algorithm
.
PriorityMetadataProducer
{
return
priorities
.
NewPriorityMetadataFactory
(
args
.
ServiceLister
,
args
.
ControllerLister
,
args
.
ReplicaSetLister
,
args
.
StatefulSetLister
)
})
// ServiceSpreadingPriority is a priority config factory that spreads pods by minimizing
// the number of pods (belonging to the same service) on the same node.
// Register the factory so that it's available, but do not include it as part of the default priorities
// Largely replaced by "SelectorSpreadPriority", but registered for backward compatibility with 1.0
factory
.
RegisterPriorityConfigFactory
(
priorities
.
ServiceSpreadingPriority
,
factory
.
PriorityConfigFactory
{
MapReduceFunction
:
func
(
args
factory
.
PluginFactoryArgs
)
(
algorithm
.
PriorityMapFunction
,
algorithm
.
PriorityReduceFunction
)
{
return
priorities
.
NewSelectorSpreadPriority
(
args
.
ServiceLister
,
algorithm
.
EmptyControllerLister
{},
algorithm
.
EmptyReplicaSetLister
{},
algorithm
.
EmptyStatefulSetLister
{})
},
Weight
:
1
,
},
)
// EqualPriority is a prioritizer function that gives an equal weight of one to all nodes
// Register the priority function so that its available
// but do not include it as part of the default priorities
factory
.
RegisterPriorityFunction2
(
priorities
.
EqualPriority
,
core
.
EqualPriorityMap
,
nil
,
1
)
// Optional, cluster-autoscaler friendly priority function - give used nodes higher priority.
factory
.
RegisterPriorityFunction2
(
priorities
.
MostRequestedPriority
,
priorities
.
MostRequestedPriorityMap
,
nil
,
1
)
factory
.
RegisterPriorityFunction2
(
priorities
.
RequestedToCapacityRatioPriority
,
priorities
.
RequestedToCapacityRatioResourceAllocationPriorityDefault
()
.
PriorityMap
,
nil
,
1
)
// spreads pods by minimizing the number of pods (belonging to the same service or replication controller) on the same node.
factory
.
RegisterPriorityConfigFactory
(
priorities
.
SelectorSpreadPriority
,
factory
.
PriorityConfigFactory
{
MapReduceFunction
:
func
(
args
factory
.
PluginFactoryArgs
)
(
algorithm
.
PriorityMapFunction
,
algorithm
.
PriorityReduceFunction
)
{
return
priorities
.
NewSelectorSpreadPriority
(
args
.
ServiceLister
,
args
.
ControllerLister
,
args
.
ReplicaSetLister
,
args
.
StatefulSetLister
)
},
Weight
:
1
,
},
)
// pods should be placed in the same topological domain (e.g. same node, same rack, same zone, same power domain, etc.)
// as some other pods, or, conversely, should not be placed in the same topological domain as some other pods.
factory
.
RegisterPriorityConfigFactory
(
priorities
.
InterPodAffinityPriority
,
factory
.
PriorityConfigFactory
{
Function
:
func
(
args
factory
.
PluginFactoryArgs
)
algorithm
.
PriorityFunction
{
return
priorities
.
NewInterPodAffinityPriority
(
args
.
NodeInfo
,
args
.
NodeLister
,
args
.
PodLister
,
args
.
HardPodAffinitySymmetricWeight
)
},
Weight
:
1
,
},
)
// Prioritize nodes by least requested utilization.
factory
.
RegisterPriorityFunction2
(
priorities
.
LeastRequestedPriority
,
priorities
.
LeastRequestedPriorityMap
,
nil
,
1
)
// Prioritizes nodes to help achieve balanced resource usage
factory
.
RegisterPriorityFunction2
(
priorities
.
BalancedResourceAllocation
,
priorities
.
BalancedResourceAllocationMap
,
nil
,
1
)
// Set this weight large enough to override all other priority functions.
// TODO: Figure out a better way to do this, maybe at same time as fixing #24720.
factory
.
RegisterPriorityFunction2
(
priorities
.
NodePreferAvoidPodsPriority
,
priorities
.
CalculateNodePreferAvoidPodsPriorityMap
,
nil
,
10000
)
// Prioritizes nodes that have labels matching NodeAffinity
factory
.
RegisterPriorityFunction2
(
priorities
.
NodeAffinityPriority
,
priorities
.
CalculateNodeAffinityPriorityMap
,
priorities
.
CalculateNodeAffinityPriorityReduce
,
1
)
// Prioritizes nodes that marked with taint which pod can tolerate.
factory
.
RegisterPriorityFunction2
(
priorities
.
TaintTolerationPriority
,
priorities
.
ComputeTaintTolerationPriorityMap
,
priorities
.
ComputeTaintTolerationPriorityReduce
,
1
)
// ImageLocalityPriority prioritizes nodes that have images requested by the pod present.
factory
.
RegisterPriorityFunction2
(
priorities
.
ImageLocalityPriority
,
priorities
.
ImageLocalityPriorityMap
,
nil
,
1
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment