Improve the performance of schedulinggates

This commit is contained in:
mantuliu 2023-05-04 18:09:49 +08:00
parent 47f1bd9f80
commit 887654160f

View File

@ -46,7 +46,7 @@ func (pl *SchedulingGates) PreEnqueue(ctx context.Context, p *v1.Pod) *framework
if !pl.enablePodSchedulingReadiness || len(p.Spec.SchedulingGates) == 0 {
return nil
}
var gates []string
gates := make([]string, 0, len(p.Spec.SchedulingGates))
for _, gate := range p.Spec.SchedulingGates {
gates = append(gates, gate.Name)
}