Merge pull request #127119 from Jefftree/compat-version/cleanup-apiserver-example

Remove example feature gate from pkg/apiserver/kube_features.go
This commit is contained in:
Kubernetes Prow Robot 2024-09-04 19:56:25 +01:00 committed by GitHub
commit 1942134644
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -300,14 +300,8 @@ func init() {
// To add a new feature, define a key for it above and add it here. The features will be
// available throughout Kubernetes binaries.
//
// Entries are alphabetized and separated from each other with blank lines to avoid sweeping gofmt changes
// when adding or removing one entry.
// Entries are alphabetized.
var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate.VersionedSpecs{
// Example:
// EmulationVersion: {
// {Version: version.MustParse("1.30"), Default: false, PreRelease: featuregate.Alpha},
// },
AnonymousAuthConfigurableEndpoints: {
{Version: version.MustParse("1.31"), Default: false, PreRelease: featuregate.Alpha},
{Version: version.MustParse("1.32"), Default: true, PreRelease: featuregate.Beta},