Skip to content

Commit d249ac4

Browse files
committed
Register new LazyRestmapper featuregate
This featuregate will be used for enabling lazy restmapper functionality from controller-runtime.
1 parent ad11058 commit d249ac4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

feature/feature.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ const (
5555
//
5656
// alpha: v1.1
5757
KubeadmBootstrapFormatIgnition featuregate.Feature = "KubeadmBootstrapFormatIgnition"
58+
59+
// LazyRestmapper is a feature gate for the Lazy Restmapper functionality.
60+
//
61+
// alpha: v1.4
62+
LazyRestmapper featuregate.Feature = "LazyRestmapper"
5863
)
5964

6065
func init() {
@@ -70,4 +75,5 @@ var defaultClusterAPIFeatureGates = map[featuregate.Feature]featuregate.FeatureS
7075
ClusterTopology: {Default: false, PreRelease: featuregate.Alpha},
7176
KubeadmBootstrapFormatIgnition: {Default: false, PreRelease: featuregate.Alpha},
7277
RuntimeSDK: {Default: false, PreRelease: featuregate.Alpha},
78+
LazyRestmapper: {Default: false, PreRelease: featuregate.Alpha},
7379
}

0 commit comments

Comments
 (0)