mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 02:33:34 +00:00
rebase: update kubernetes to 1.30
updating kubernetes to 1.30 release Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
committed by
mergify[bot]
parent
62ddcf715b
commit
e727bd351e
10
vendor/k8s.io/apiextensions-apiserver/pkg/features/kube_features.go
generated
vendored
10
vendor/k8s.io/apiextensions-apiserver/pkg/features/kube_features.go
generated
vendored
@ -34,6 +34,13 @@ const (
|
||||
// Ignores errors raised on unchanged fields of Custom Resources
|
||||
// across UPDATE/PATCH requests.
|
||||
CRDValidationRatcheting featuregate.Feature = "CRDValidationRatcheting"
|
||||
|
||||
// owner: @jpbetz
|
||||
// alpha: v1.30
|
||||
//
|
||||
// CustomResourceDefinitions may include SelectableFields to declare which fields
|
||||
// may be used as field selectors.
|
||||
CustomResourceFieldSelectors featuregate.Feature = "CustomResourceFieldSelectors"
|
||||
)
|
||||
|
||||
func init() {
|
||||
@ -44,5 +51,6 @@ 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.
|
||||
var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
|
||||
CRDValidationRatcheting: {Default: false, PreRelease: featuregate.Alpha},
|
||||
CRDValidationRatcheting: {Default: true, PreRelease: featuregate.Beta},
|
||||
CustomResourceFieldSelectors: {Default: false, PreRelease: featuregate.Alpha},
|
||||
}
|
||||
|
Reference in New Issue
Block a user