Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4e8004a

Browse files
committedMar 14, 2025·
add feature gate for #129874
1 parent 23e8eae commit 4e8004a

File tree

2 files changed

+18
-1
lines changed
  • keps/sig-scheduling/3243-respect-pod-topology-spread-after-rolling-upgrades

2 files changed

+18
-1
lines changed
 

‎keps/sig-scheduling/3243-respect-pod-topology-spread-after-rolling-upgrades/README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ kube-apiserver modifies the `labelSelector` like the following:
401401
In addition, kube-scheduler will handle `matchLabelKeys` within the cluster-level default constraints
402402
in the scheduler configuration in the future (see https://github.com/kubernetes/kubernetes/issues/129198).
403403

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
405405
disabled, the field `matchLabelKeys` and corresponding `labelSelector` are preserved
406406
if it was already set in the persisted Pod object, otherwise new Pod with the field
407407
creation will be rejected by kube-apiserver.
@@ -420,6 +420,9 @@ from the default constraints, but also all incoming pods during v1.33.
420420
We're going to change kube-scheduler to only concern `matchLabelKeys` from the default constraints at v1.34 for efficiency,
421421
assuming kube-apiserver handles `matchLabelKeys` of all incoming pods.
422422

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+
423426
### Test Plan
424427

425428
<!--
@@ -652,6 +655,14 @@ you need any help or guidance.
652655
This section must be completed when targeting alpha to a release.
653656
-->
654657

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+
655666
###### How can this feature be enabled / disabled in a live cluster?
656667

657668
<!--
@@ -667,6 +678,9 @@ well as the [existing list] of feature gates.
667678
- [x] Feature gate (also fill in values in `kep.yaml`)
668679
- Feature gate name: `MatchLabelKeysInPodTopologySpread`
669680
- 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`
670684

671685
###### Does enabling the feature change any default behavior?
672686

‎keps/sig-scheduling/3243-respect-pod-topology-spread-after-rolling-upgrades/kep.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ feature-gates:
3737
components:
3838
- kube-apiserver
3939
- kube-scheduler
40+
- name: MatchLabelKeysInPodTopologySpreadSelectorMerge
41+
components:
42+
- kube-apiserver
4043

4144
disable-supported: true
4245

0 commit comments

Comments
 (0)
Please sign in to comment.