Skip to content

Commit d7bdc45

Browse files
committed
Make the feature gate PreAlpha
Signed-off-by: Brett Tofel <[email protected]>
1 parent 3f0e21b commit d7bdc45

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

internal/features/features.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@ const (
1313

1414
var operatorControllerFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
1515
// Add new feature gate definitions
16+
// if you're adding a feature gate for fellow developers to use in ongoing development, use PreAlpha
1617
// Ex: SomeFeature: {...}
17-
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+
},
1823
}
1924

2025
var OperatorControllerFeatureGate featuregate.MutableFeatureGate = featuregate.NewFeatureGate()

0 commit comments

Comments
 (0)