Merge pull request #123560 from ivelichkovich/master
kep-3716 GA, remove feature gate Kubernetes-commit: 6cc77a577e56c68e4fde81865e022e05e8e02538
This commit is contained in:
commit
57928aa72c
4
go.mod
4
go.mod
|
|
@ -42,7 +42,7 @@ require (
|
|||
google.golang.org/protobuf v1.31.0
|
||||
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
||||
gopkg.in/square/go-jose.v2 v2.6.0
|
||||
k8s.io/api v0.0.0-20240228104440-d6ea7e8f9bfc
|
||||
k8s.io/api v0.0.0-20240301075851-e88057d7f696
|
||||
k8s.io/apimachinery v0.0.0-20240229214048-6362b69e393e
|
||||
k8s.io/client-go v0.0.0-20240229235935-1047f6396b27
|
||||
k8s.io/component-base v0.0.0-20240227002902-6c2a49d37aa4
|
||||
|
|
@ -125,7 +125,7 @@ require (
|
|||
)
|
||||
|
||||
replace (
|
||||
k8s.io/api => k8s.io/api v0.0.0-20240228104440-d6ea7e8f9bfc
|
||||
k8s.io/api => k8s.io/api v0.0.0-20240301075851-e88057d7f696
|
||||
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20240229214048-6362b69e393e
|
||||
k8s.io/client-go => k8s.io/client-go v0.0.0-20240229235935-1047f6396b27
|
||||
k8s.io/component-base => k8s.io/component-base v0.0.0-20240227002902-6c2a49d37aa4
|
||||
|
|
|
|||
4
go.sum
4
go.sum
|
|
@ -385,8 +385,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-20240228104440-d6ea7e8f9bfc h1:7IBpQCcIsPKGiK8R2xVKsFYdcqvt5UIiA4ARPHdlUoQ=
|
||||
k8s.io/api v0.0.0-20240228104440-d6ea7e8f9bfc/go.mod h1:kCYq4mrNBxRaHCZeTveL6//1FveIDm3wxJZeFNKF6b8=
|
||||
k8s.io/api v0.0.0-20240301075851-e88057d7f696 h1:dNUDjjm6p1nZ2Wqja9FV7WdHjeHtkqo6ee3XC81Ybew=
|
||||
k8s.io/api v0.0.0-20240301075851-e88057d7f696/go.mod h1:oCSigER/C5hq1h0MXoiusu0ThLyIqexwPUZF8b3l8Sk=
|
||||
k8s.io/apimachinery v0.0.0-20240229214048-6362b69e393e h1:2XgAKNuD1VSLa8SmR/BCQR6MX6xHn1SyB29fBYaBpcI=
|
||||
k8s.io/apimachinery v0.0.0-20240229214048-6362b69e393e/go.mod h1:/862Kkwje5hhHGJWPKiaHuov2c6mw6uCXWikV9kOIP4=
|
||||
k8s.io/client-go v0.0.0-20240229235935-1047f6396b27 h1:OGxYArAVkK4G3VhF7CNChpY+jGiqXeBahjoXEN0+3/s=
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ const (
|
|||
// owner: @ivelichkovich, @tallclair
|
||||
// alpha: v1.27
|
||||
// beta: v1.28
|
||||
// stable: v1.30
|
||||
// kep: https://kep.k8s.io/3716
|
||||
//
|
||||
// Enables usage of MatchConditions fields to use CEL expressions for matching on admission webhooks
|
||||
|
|
@ -285,7 +286,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||
|
||||
AggregatedDiscoveryEndpoint: {Default: true, PreRelease: featuregate.Beta},
|
||||
|
||||
AdmissionWebhookMatchConditions: {Default: true, PreRelease: featuregate.Beta},
|
||||
AdmissionWebhookMatchConditions: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.33
|
||||
|
||||
APIListChunking: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.32
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue