Remove GA feature gate ComponentSLIs

Signed-off-by: carlory <baofa.fan@daocloud.io>
This commit is contained in:
carlory
2025-08-28 14:47:22 +08:00
parent 4d97cda614
commit bf9511eda6
2 changed files with 1 additions and 30 deletions

View File

@@ -17,26 +17,11 @@ limitations under the License.
package features
import (
"k8s.io/apimachinery/pkg/util/version"
"k8s.io/component-base/featuregate"
)
const (
// owner: @logicalhan
// kep: https://kep.k8s.io/3466
ComponentSLIs featuregate.Feature = "ComponentSLIs"
)
func featureGates() map[featuregate.Feature]featuregate.VersionedSpecs {
return map[featuregate.Feature]featuregate.VersionedSpecs{
ComponentSLIs: {
{Version: version.MustParse("1.26"), Default: false, PreRelease: featuregate.Alpha},
{Version: version.MustParse("1.27"), Default: true, PreRelease: featuregate.Beta},
// ComponentSLIs officially graduated to GA in v1.29 but the gate was not updated until v1.32.
// To support emulated versions, keep the gate until v1.35.
{Version: version.MustParse("1.32"), Default: true, PreRelease: featuregate.GA, LockToDefault: true},
},
}
return map[featuregate.Feature]featuregate.VersionedSpecs{}
}
// AddFeatureGates adds all feature gates used by this package.

View File

@@ -217,20 +217,6 @@
lockToDefault: false
preRelease: Alpha
version: "1.32"
- name: ComponentSLIs
versionedSpecs:
- default: false
lockToDefault: false
preRelease: Alpha
version: "1.26"
- default: true
lockToDefault: false
preRelease: Beta
version: "1.27"
- default: true
lockToDefault: true
preRelease: GA
version: "1.32"
- name: ComponentStatusz
versionedSpecs:
- default: false