File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,15 @@ const (
32
32
IPv6DualStack = "IPv6DualStack"
33
33
// PublicKeysECDSA is expected to be alpha in v1.19
34
34
PublicKeysECDSA = "PublicKeysECDSA"
35
+ // RootlessControlPlane is expected to be in alpha in v1.22
36
+ RootlessControlPlane = "RootlessControlPlane"
35
37
)
36
38
37
39
// InitFeatureGates are the default feature gates for the init command
38
40
var InitFeatureGates = FeatureList {
39
- IPv6DualStack : {FeatureSpec : featuregate.FeatureSpec {Default : true , PreRelease : featuregate .Beta }},
40
- PublicKeysECDSA : {FeatureSpec : featuregate.FeatureSpec {Default : false , PreRelease : featuregate .Alpha }},
41
+ IPv6DualStack : {FeatureSpec : featuregate.FeatureSpec {Default : true , PreRelease : featuregate .Beta }},
42
+ PublicKeysECDSA : {FeatureSpec : featuregate.FeatureSpec {Default : false , PreRelease : featuregate .Alpha }},
43
+ RootlessControlPlane : {FeatureSpec : featuregate.FeatureSpec {Default : false , PreRelease : featuregate .Alpha }},
41
44
}
42
45
43
46
// Feature represents a feature being gated
You can’t perform that action at this time.
0 commit comments