mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-19 18:02:01 +00:00
kube-scheduler: add taints filtering logic consistent with TaintToleration plugin for PodTopologySpread plugin
Signed-off-by: SataQiu <shidaqiu2018@gmail.com>
This commit is contained in:
parent
2b2be7fa6b
commit
bc9c494319
28
pkg/scheduler/framework/plugins/helper/taint.go
Normal file
28
pkg/scheduler/framework/plugins/helper/taint.go
Normal file
@ -0,0 +1,28 @@
|
||||
/*
|
||||
Copyright 2022 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 helper
|
||||
|
||||
import v1 "k8s.io/api/core/v1"
|
||||
|
||||
// DoNotScheduleTaintsFilterFunc returns the filter function that can
|
||||
// filter out the node taints that reject scheduling Pod on a Node.
|
||||
func DoNotScheduleTaintsFilterFunc() func(t *v1.Taint) bool {
|
||||
return func(t *v1.Taint) bool {
|
||||
// PodToleratesNodeTaints is only interested in NoSchedule and NoExecute taints.
|
||||
return t.Effect == v1.TaintEffectNoSchedule || t.Effect == v1.TaintEffectNoExecute
|
||||
}
|
||||
}
|
64
pkg/scheduler/framework/plugins/helper/taint_test.go
Normal file
64
pkg/scheduler/framework/plugins/helper/taint_test.go
Normal file
@ -0,0 +1,64 @@
|
||||
/*
|
||||
Copyright 2022 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 helper
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
v1 "k8s.io/api/core/v1"
|
||||
)
|
||||
|
||||
func TestDoNotScheduleTaintsFilterFunc(t *testing.T) {
|
||||
tests := []struct {
|
||||
name string
|
||||
taint *v1.Taint
|
||||
expected bool
|
||||
}{
|
||||
{
|
||||
name: "should include the taints with NoSchedule effect",
|
||||
taint: &v1.Taint{
|
||||
Effect: v1.TaintEffectNoSchedule,
|
||||
},
|
||||
expected: true,
|
||||
},
|
||||
{
|
||||
name: "should include the taints with NoExecute effect",
|
||||
taint: &v1.Taint{
|
||||
Effect: v1.TaintEffectNoExecute,
|
||||
},
|
||||
expected: true,
|
||||
},
|
||||
{
|
||||
name: "should not include the taints with PreferNoSchedule effect",
|
||||
taint: &v1.Taint{
|
||||
Effect: v1.TaintEffectPreferNoSchedule,
|
||||
},
|
||||
expected: false,
|
||||
},
|
||||
}
|
||||
|
||||
filterPredicate := DoNotScheduleTaintsFilterFunc()
|
||||
|
||||
for i := range tests {
|
||||
test := tests[i]
|
||||
t.Run(test.name, func(t *testing.T) {
|
||||
if got := filterPredicate(test.taint); got != test.expected {
|
||||
t.Errorf("unexpected result, expected %v but got %v", test.expected, got)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
@ -52,7 +52,7 @@ func (tsc *topologySpreadConstraint) matchNodeInclusionPolicies(pod *v1.Pod, nod
|
||||
}
|
||||
|
||||
if tsc.NodeTaintsPolicy == v1.NodeInclusionPolicyHonor {
|
||||
if _, untolerated := v1helper.FindMatchingUntoleratedTaint(node.Spec.Taints, pod.Spec.Tolerations, nil); untolerated {
|
||||
if _, untolerated := v1helper.FindMatchingUntoleratedTaint(node.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc()); untolerated {
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ var (
|
||||
fooSelector = st.MakeLabelSelector().Exists("foo").Obj()
|
||||
barSelector = st.MakeLabelSelector().Exists("bar").Obj()
|
||||
|
||||
taints = []v1.Taint{{Key: v1.TaintNodeUnschedulable, Value: "", Effect: v1.TaintEffectPreferNoSchedule}}
|
||||
taints = []v1.Taint{{Key: v1.TaintNodeUnschedulable, Value: "", Effect: v1.TaintEffectNoSchedule}}
|
||||
)
|
||||
|
||||
func (p *criticalPaths) sort() {
|
||||
|
@ -67,12 +67,7 @@ func (pl *TaintToleration) Filter(ctx context.Context, state *framework.CycleSta
|
||||
return framework.AsStatus(fmt.Errorf("invalid nodeInfo"))
|
||||
}
|
||||
|
||||
filterPredicate := func(t *v1.Taint) bool {
|
||||
// PodToleratesNodeTaints is only interested in NoSchedule and NoExecute taints.
|
||||
return t.Effect == v1.TaintEffectNoSchedule || t.Effect == v1.TaintEffectNoExecute
|
||||
}
|
||||
|
||||
taint, isUntolerated := v1helper.FindMatchingUntoleratedTaint(node.Spec.Taints, pod.Spec.Tolerations, filterPredicate)
|
||||
taint, isUntolerated := v1helper.FindMatchingUntoleratedTaint(node.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
|
||||
if !isUntolerated {
|
||||
return nil
|
||||
}
|
||||
|
@ -57,7 +57,7 @@ const pollInterval = 100 * time.Millisecond
|
||||
var (
|
||||
ignorePolicy = v1.NodeInclusionPolicyIgnore
|
||||
honorPolicy = v1.NodeInclusionPolicyHonor
|
||||
taints = []v1.Taint{{Key: v1.TaintNodeUnschedulable, Value: "", Effect: v1.TaintEffectPreferNoSchedule}}
|
||||
taints = []v1.Taint{{Key: v1.TaintNodeUnschedulable, Value: "", Effect: v1.TaintEffectNoSchedule}}
|
||||
)
|
||||
|
||||
// TestInterPodAffinity verifies that scheduler's inter pod affinity and
|
||||
|
Loading…
Reference in New Issue
Block a user