Merge pull request #127119 from Jefftree/compat-version/cleanup-apiserver-example
Remove example feature gate from pkg/apiserver/kube_features.go Kubernetes-commit: 19421346446536b69753f775e188845617094e8e
This commit is contained in:
commit
3da25cf156
2
go.mod
2
go.mod
|
@ -46,7 +46,7 @@ require (
|
|||
gopkg.in/evanphx/json-patch.v4 v4.12.0
|
||||
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
||||
gopkg.in/square/go-jose.v2 v2.6.0
|
||||
k8s.io/api v0.0.0-20240831073005-2ed5b3feeb96
|
||||
k8s.io/api v0.0.0-20240904172100-421904605ee4
|
||||
k8s.io/apimachinery v0.0.0-20240827232741-2465dc5239ab
|
||||
k8s.io/client-go v0.0.0-20240904001735-4fca7081f8d6
|
||||
k8s.io/component-base v0.0.0-20240827234324-df69e0c454c0
|
||||
|
|
4
go.sum
4
go.sum
|
@ -371,8 +371,8 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
|||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
||||
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
||||
k8s.io/api v0.0.0-20240831073005-2ed5b3feeb96 h1:EcID7CpHTsa7s5DdChCM7k1tU4kLP7EUG5QZkstukMI=
|
||||
k8s.io/api v0.0.0-20240831073005-2ed5b3feeb96/go.mod h1:ripUAtqwG9GJ/8+oGJ64+WUGoZ06zX0O8M6PVyCFA3k=
|
||||
k8s.io/api v0.0.0-20240904172100-421904605ee4 h1:9DzAHxY5bq9xM+21VvXaMiQyQrp6DuOk/n+NIZwHLPw=
|
||||
k8s.io/api v0.0.0-20240904172100-421904605ee4/go.mod h1:ripUAtqwG9GJ/8+oGJ64+WUGoZ06zX0O8M6PVyCFA3k=
|
||||
k8s.io/apimachinery v0.0.0-20240827232741-2465dc5239ab h1:Q5sDIA+AALw+7kUA1B/eF3yOJ85ODdIe01A1TNT2t28=
|
||||
k8s.io/apimachinery v0.0.0-20240827232741-2465dc5239ab/go.mod h1:ICcwUwxYZmFXLu9oug48MqosXwccA+UCIOOtZRgdQX0=
|
||||
k8s.io/client-go v0.0.0-20240904001735-4fca7081f8d6 h1:HQSLpC4SPbHB5hHgtdw0y5E1TQHHZfnz+I83XsPmNEk=
|
||||
|
|
|
@ -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},
|
||||
|
|
Loading…
Reference in New Issue