@@ -401,7 +401,7 @@ kube-apiserver modifies the `labelSelector` like the following:
401
401
In addition, kube-scheduler will handle `matchLabelKeys` within the cluster-level default constraints
402
402
in the scheduler configuration in the future (see https://github.com/kubernetes/kubernetes/issues/129198).
403
403
404
- Finally, the feature will be guarded by a new feature flag. If the feature is
404
+ Finally, the feature will be guarded by a new feature flag `MatchLabelKeysInPodTopologySpread` . If the feature is
405
405
disabled, the field `matchLabelKeys` and corresponding `labelSelector` are preserved
406
406
if it was already set in the persisted Pod object, otherwise new Pod with the field
407
407
creation will be rejected by kube-apiserver.
@@ -420,6 +420,9 @@ from the default constraints, but also all incoming pods during v1.33.
420
420
We're going to change kube-scheduler to only concern `matchLabelKeys` from the default constraints at v1.34 for efficiency,
421
421
assuming kube-apiserver handles `matchLabelKeys` of all incoming pods.
422
422
423
+ This implementation change can be disabled by the `MatchLabelKeysInPodTopologySpreadSelectorMerge` feature flag.
424
+ (See more details in [Feature Enablement and Rollback](#feature-enablement-and-rollback))
425
+
423
426
# ## Test Plan
424
427
425
428
<!--
@@ -652,6 +655,14 @@ you need any help or guidance.
652
655
This section must be completed when targeting alpha to a release.
653
656
-->
654
657
658
+ - ` MatchLabelKeysInPodTopologySpread` feature flag will toggle enabling `MatchLabelKeys` in `TopologySpreadConstraint`.
659
+ - ` MatchLabelKeysInPodTopologySpreadSelectorMerge` feature flag will toggle merging the key-value labels
660
+ corresponding to `MatchLabelKeys` into `LabelSelector` of `TopologySpreadConstraint`.
661
+
662
+ The `MatchLabelKeysInPodTopologySpreadSelectorMerge` feature flag has been added in v1.33 and enabled by default.
663
+ This flag can be disabled to revert [the implementation design change in v1.33](#v133-design-change-and-a-safe-upgrade-path)
664
+ and go back to the previous behavior.
665
+
655
666
# ##### How can this feature be enabled / disabled in a live cluster?
656
667
657
668
<!--
@@ -667,6 +678,9 @@ well as the [existing list] of feature gates.
667
678
- [x] Feature gate (also fill in values in `kep.yaml`)
668
679
- Feature gate name : ` MatchLabelKeysInPodTopologySpread`
669
680
- Components depending on the feature gate : ` kube-scheduler` , `kube-apiserver`
681
+ - [x] Feature gate (also fill in values in `kep.yaml`)
682
+ - Feature gate name : ` MatchLabelKeysInPodTopologySpreadSelectorMerge`
683
+ - Components depending on the feature gate : ` kube-apiserver`
670
684
671
685
# ##### Does enabling the feature change any default behavior?
672
686
0 commit comments