Merge pull request #107316 from MikeSpreitzer/fix-apf-feature-alpha

Explain rollout of API Priority and Fairness in kube_features.go
This commit is contained in:
Kubernetes Prow Robot
2022-01-18 10:19:10 -08:00
committed by GitHub

View File

@@ -124,10 +124,12 @@ const (
WatchBookmark featuregate.Feature = "WatchBookmark"
// owner: @MikeSpreitzer @yue9944882
// alpha: v1.15
// alpha: v1.18
// beta: v1.20
//
// Enables managing request concurrency with prioritization and fairness at each server
// Enables managing request concurrency with prioritization and fairness at each server.
// The FeatureGate was introduced in release 1.15 but the feature
// was not really implemented before 1.18.
APIPriorityAndFairness featuregate.Feature = "APIPriorityAndFairness"
// owner: @wojtek-t