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
a538045d
Commit
a538045d
authored
Jul 14, 2016
by
Wojciech Tyczynski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup and prepare for optimizing PodAffinity priority function.
parent
f27a8034
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
100 additions
and
87 deletions
+100
-87
predicates.go
plugin/pkg/scheduler/algorithm/predicates/predicates.go
+5
-4
interpod_affinity.go
...n/pkg/scheduler/algorithm/priorities/interpod_affinity.go
+0
-0
non_zero.go
plugin/pkg/scheduler/algorithm/priorities/util/non_zero.go
+0
-83
topologies.go
plugin/pkg/scheduler/algorithm/priorities/util/topologies.go
+95
-0
No files found.
plugin/pkg/scheduler/algorithm/predicates/predicates.go
View file @
a538045d
...
...
@@ -853,10 +853,11 @@ func (checker *PodAffinityChecker) InterPodAffinityMatches(pod *api.Pod, meta in
// AnyPodMatchesPodAffinityTerm checks if any of given pods can match the specific podAffinityTerm.
func
(
checker
*
PodAffinityChecker
)
AnyPodMatchesPodAffinityTerm
(
pod
*
api
.
Pod
,
allPods
[]
*
api
.
Pod
,
node
*
api
.
Node
,
podAffinityTerm
api
.
PodAffinityTerm
)
(
bool
,
error
)
{
for
_
,
ep
:=
range
allPods
{
match
,
err
:=
checker
.
failureDomains
.
CheckIfPodMatchPodAffinityTerm
(
ep
,
pod
,
podAffinityTerm
,
func
(
ep
*
api
.
Pod
)
(
*
api
.
Node
,
error
)
{
return
checker
.
info
.
GetNodeInfo
(
ep
.
Spec
.
NodeName
)
},
func
(
pod
*
api
.
Pod
)
(
*
api
.
Node
,
error
)
{
return
node
,
nil
},
)
epNode
,
err
:=
checker
.
info
.
GetNodeInfo
(
ep
.
Spec
.
NodeName
)
if
err
!=
nil
{
return
false
,
err
}
match
,
err
:=
checker
.
failureDomains
.
CheckIfPodMatchPodAffinityTerm
(
ep
,
epNode
,
node
,
pod
,
podAffinityTerm
)
if
err
!=
nil
||
match
{
return
match
,
err
}
...
...
plugin/pkg/scheduler/algorithm/priorities/interpod_affinity.go
View file @
a538045d
This diff is collapsed.
Click to expand it.
plugin/pkg/scheduler/algorithm/priorities/util/non_zero.go
View file @
a538045d
...
...
@@ -18,9 +18,6 @@ package util
import
(
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/unversioned"
"k8s.io/kubernetes/pkg/labels"
"k8s.io/kubernetes/pkg/util/sets"
)
// For each of these resources, a pod that doesn't request the resource explicitly
...
...
@@ -53,83 +50,3 @@ func GetNonzeroRequests(requests *api.ResourceList) (int64, int64) {
}
return
outMilliCPU
,
outMemory
}
// FilterPodsByNameSpaces filters the pods based the given list of namespaces,
// empty set of namespaces means all namespaces.
func
FilterPodsByNameSpaces
(
names
sets
.
String
,
pods
[]
*
api
.
Pod
)
[]
*
api
.
Pod
{
if
len
(
pods
)
==
0
||
len
(
names
)
==
0
{
return
pods
}
result
:=
[]
*
api
.
Pod
{}
for
_
,
pod
:=
range
pods
{
if
names
.
Has
(
pod
.
Namespace
)
{
result
=
append
(
result
,
pod
)
}
}
return
result
}
// GetNamespacesFromPodAffinityTerm returns a set of names
// according to the namespaces indicated in podAffinityTerm.
// if the NameSpaces is nil considers the given pod's namespace
// if the Namespaces is empty list then considers all the namespaces
func
GetNamespacesFromPodAffinityTerm
(
pod
*
api
.
Pod
,
podAffinityTerm
api
.
PodAffinityTerm
)
sets
.
String
{
names
:=
sets
.
String
{}
if
podAffinityTerm
.
Namespaces
==
nil
{
names
.
Insert
(
pod
.
Namespace
)
}
else
if
len
(
podAffinityTerm
.
Namespaces
)
!=
0
{
names
.
Insert
(
podAffinityTerm
.
Namespaces
...
)
}
return
names
}
// NodesHaveSameTopologyKeyInternal checks if nodeA and nodeB have same label value with given topologyKey as label key.
func
NodesHaveSameTopologyKeyInternal
(
nodeA
,
nodeB
*
api
.
Node
,
topologyKey
string
)
bool
{
return
nodeA
.
Labels
!=
nil
&&
nodeB
.
Labels
!=
nil
&&
len
(
nodeA
.
Labels
[
topologyKey
])
>
0
&&
nodeA
.
Labels
[
topologyKey
]
==
nodeB
.
Labels
[
topologyKey
]
}
type
Topologies
struct
{
DefaultKeys
[]
string
}
// NodesHaveSameTopologyKey checks if nodeA and nodeB have same label value with given topologyKey as label key.
// If the topologyKey is nil/empty, check if the two nodes have any of the default topologyKeys, and have same corresponding label value.
func
(
tps
*
Topologies
)
NodesHaveSameTopologyKey
(
nodeA
*
api
.
Node
,
nodeB
*
api
.
Node
,
topologyKey
string
)
bool
{
if
len
(
topologyKey
)
==
0
{
// assumes this is allowed only for PreferredDuringScheduling pod anti-affinity (ensured by api/validation)
for
_
,
defaultKey
:=
range
tps
.
DefaultKeys
{
if
NodesHaveSameTopologyKeyInternal
(
nodeA
,
nodeB
,
defaultKey
)
{
return
true
}
}
return
false
}
else
{
return
NodesHaveSameTopologyKeyInternal
(
nodeA
,
nodeB
,
topologyKey
)
}
}
type
getNodeFunc
func
(
*
api
.
Pod
)
(
*
api
.
Node
,
error
)
// CheckIfPodMatchPodAffinityTerm checks if podB's affinity request is compatible with podA
func
(
tps
*
Topologies
)
CheckIfPodMatchPodAffinityTerm
(
podA
*
api
.
Pod
,
podB
*
api
.
Pod
,
podBAffinityTerm
api
.
PodAffinityTerm
,
getNodeA
,
getNodeB
getNodeFunc
)
(
bool
,
error
)
{
names
:=
GetNamespacesFromPodAffinityTerm
(
podB
,
podBAffinityTerm
)
if
len
(
names
)
!=
0
&&
!
names
.
Has
(
podA
.
Namespace
)
{
return
false
,
nil
}
labelSelector
,
err
:=
unversioned
.
LabelSelectorAsSelector
(
podBAffinityTerm
.
LabelSelector
)
if
err
!=
nil
||
!
labelSelector
.
Matches
(
labels
.
Set
(
podA
.
Labels
))
{
return
false
,
err
}
podANode
,
err
:=
getNodeA
(
podA
)
if
err
!=
nil
{
return
false
,
err
}
podBNode
,
err
:=
getNodeB
(
podB
)
if
err
!=
nil
{
return
false
,
err
}
return
tps
.
NodesHaveSameTopologyKey
(
podANode
,
podBNode
,
podBAffinityTerm
.
TopologyKey
),
nil
}
plugin/pkg/scheduler/algorithm/priorities/util/topologies.go
0 → 100644
View file @
a538045d
/*
Copyright 2016 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
util
import
(
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/unversioned"
"k8s.io/kubernetes/pkg/labels"
"k8s.io/kubernetes/pkg/util/sets"
)
// FilterPodsByNameSpaces filters the pods based the given list of namespaces,
// empty set of namespaces means all namespaces.
func
FilterPodsByNameSpaces
(
names
sets
.
String
,
pods
[]
*
api
.
Pod
)
[]
*
api
.
Pod
{
if
len
(
pods
)
==
0
||
len
(
names
)
==
0
{
return
pods
}
result
:=
[]
*
api
.
Pod
{}
for
_
,
pod
:=
range
pods
{
if
names
.
Has
(
pod
.
Namespace
)
{
result
=
append
(
result
,
pod
)
}
}
return
result
}
// GetNamespacesFromPodAffinityTerm returns a set of names
// according to the namespaces indicated in podAffinityTerm.
// if the NameSpaces is nil considers the given pod's namespace
// if the Namespaces is empty list then considers all the namespaces
func
GetNamespacesFromPodAffinityTerm
(
pod
*
api
.
Pod
,
podAffinityTerm
api
.
PodAffinityTerm
)
sets
.
String
{
names
:=
sets
.
String
{}
if
podAffinityTerm
.
Namespaces
==
nil
{
names
.
Insert
(
pod
.
Namespace
)
}
else
if
len
(
podAffinityTerm
.
Namespaces
)
!=
0
{
names
.
Insert
(
podAffinityTerm
.
Namespaces
...
)
}
return
names
}
// nodesHaveSameTopologyKeyInternal checks if nodeA and nodeB have same label value with given topologyKey as label key.
func
nodesHaveSameTopologyKeyInternal
(
nodeA
,
nodeB
*
api
.
Node
,
topologyKey
string
)
bool
{
return
nodeA
.
Labels
!=
nil
&&
nodeB
.
Labels
!=
nil
&&
len
(
nodeA
.
Labels
[
topologyKey
])
>
0
&&
nodeA
.
Labels
[
topologyKey
]
==
nodeB
.
Labels
[
topologyKey
]
}
type
Topologies
struct
{
DefaultKeys
[]
string
}
// NodesHaveSameTopologyKey checks if nodeA and nodeB have same label value with given topologyKey as label key.
// If the topologyKey is nil/empty, check if the two nodes have any of the default topologyKeys, and have same corresponding label value.
func
(
tps
*
Topologies
)
NodesHaveSameTopologyKey
(
nodeA
,
nodeB
*
api
.
Node
,
topologyKey
string
)
bool
{
if
len
(
topologyKey
)
==
0
{
// assumes this is allowed only for PreferredDuringScheduling pod anti-affinity (ensured by api/validation)
for
_
,
defaultKey
:=
range
tps
.
DefaultKeys
{
if
nodesHaveSameTopologyKeyInternal
(
nodeA
,
nodeB
,
defaultKey
)
{
return
true
}
}
return
false
}
else
{
return
nodesHaveSameTopologyKeyInternal
(
nodeA
,
nodeB
,
topologyKey
)
}
}
// CheckIfPodMatchPodAffinityTerm checks if podB's affinity request is compatible with podA
// TODO: Get rid this method. We should avoid computing Namespaces and selectors multiple times
// and check them on higher levels and then use NodesHaveSameTopologyKey method.
func
(
tps
*
Topologies
)
CheckIfPodMatchPodAffinityTerm
(
podA
*
api
.
Pod
,
nodeA
,
nodeB
*
api
.
Node
,
podB
*
api
.
Pod
,
podBAffinityTerm
api
.
PodAffinityTerm
)
(
bool
,
error
)
{
names
:=
GetNamespacesFromPodAffinityTerm
(
podB
,
podBAffinityTerm
)
if
len
(
names
)
!=
0
&&
!
names
.
Has
(
podA
.
Namespace
)
{
return
false
,
nil
}
labelSelector
,
err
:=
unversioned
.
LabelSelectorAsSelector
(
podBAffinityTerm
.
LabelSelector
)
if
err
!=
nil
||
!
labelSelector
.
Matches
(
labels
.
Set
(
podA
.
Labels
))
{
return
false
,
err
}
return
tps
.
NodesHaveSameTopologyKey
(
nodeA
,
nodeB
,
podBAffinityTerm
.
TopologyKey
),
nil
}
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