We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f0e21b commit d7bdc45Copy full SHA for d7bdc45
internal/features/features.go
@@ -13,8 +13,13 @@ const (
13
14
var operatorControllerFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
15
// Add new feature gate definitions
16
+ // if you're adding a feature gate for fellow developers to use in ongoing development, use PreAlpha
17
// Ex: SomeFeature: {...}
- PreflightPermissions: {Default: false, PreRelease: featuregate.Alpha},
18
+ PreflightPermissions: {
19
+ Default: false,
20
+ PreRelease: featuregate.PreAlpha, // keep this PreAlpha until done with feature development
21
+ LockToDefault: false,
22
+ },
23
}
24
25
var OperatorControllerFeatureGate featuregate.MutableFeatureGate = featuregate.NewFeatureGate()
0 commit comments