Skip to content

Commit af65724

Browse files
TAS: fix the FeatureGate comments (#5472)
Signed-off-by: Yuki Iwai <yuki.iwai.tz@gmail.com> Co-authored-by: Yuki Iwai <yuki.iwai.tz@gmail.com>
1 parent 7a2e3b6 commit af65724

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/features/kube_features.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,19 +137,19 @@ const (
137137
// owner: @pbundyra
138138
// kep: https://github.com/kubernetes-sigs/kueue/tree/main/keps/2724-topology-aware-scheduling
139139
//
140-
// Enable to set use LeastAlloactedFit algorithm for TAS
140+
// Enable to set use MostFreeCapacity algorithm for TAS
141141
TASProfileMostFreeCapacity featuregate.Feature = "TASProfileMostFreeCapacity"
142142

143143
// owner: @pbundyra
144144
// kep: https://github.com/kubernetes-sigs/kueue/tree/main/keps/2724-topology-aware-scheduling
145145
//
146-
// Enable to set use LeastAlloactedFit algorithm for TAS
146+
// Enable to set use LeastFreeCapacity algorithm for TAS
147147
TASProfileLeastFreeCapacity featuregate.Feature = "TASProfileLeastFreeCapacity"
148148

149149
// owner: @pbundyra
150150
// kep: https://github.com/kubernetes-sigs/kueue/tree/main/keps/2724-topology-aware-scheduling
151151
//
152-
// Enable to set use LeastAlloactedFit algorithm for TAS
152+
// Enable to set use Mixed algorithm (BestFit or LeastFreeCapacity) for TAS which switch the algorithm based on TAS requirements level.
153153
TASProfileMixed featuregate.Feature = "TASProfileMixed"
154154

155155
// owner: @mwielgus

0 commit comments

Comments
 (0)