Skip to content

Commit

Permalink
Make the feature gate PreAlpha
Browse files Browse the repository at this point in the history
Signed-off-by: Brett Tofel <[email protected]>
  • Loading branch information
bentito committed Jan 30, 2025
1 parent 2b92859 commit c688acd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion internal/features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@ const (

var operatorControllerFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
// Add new feature gate definitions
// if you're adding a feature gate for fellow developers to use in ongoing development, use PreAlpha
// Ex: SomeFeature: {...}
PreflightPermissions: {Default: false, PreRelease: featuregate.Alpha},
PreflightPermissions: {
Default: false,
PreRelease: featuregate.PreAlpha, // keep this PreAlpha until done with feature development
LockToDefault: false,
},
}

var OperatorControllerFeatureGate featuregate.MutableFeatureGate = featuregate.NewFeatureGate()
Expand Down

0 comments on commit c688acd

Please sign in to comment.