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 4e33392 commit 4ba5499Copy full SHA for 4ba5499
internal/operator-controller/features/features.go
@@ -9,6 +9,8 @@ const (
9
// Add new feature gates constants (strings)
10
// Ex: SomeFeature featuregate.Feature = "SomeFeature"
11
PreflightPermissions featuregate.Feature = "PreflightPermissions"
12
+
13
+ SyntheticPermissions featuregate.Feature = "SyntheticPermissions"
14
)
15
16
var operatorControllerFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
@@ -19,6 +21,12 @@ var operatorControllerFeatureGates = map[featuregate.Feature]featuregate.Feature
19
21
PreRelease: featuregate.Alpha,
20
22
LockToDefault: false,
23
},
24
25
+ SyntheticPermissions: {
26
+ Default: false,
27
+ PreRelease: featuregate.Alpha,
28
+ LockToDefault: false,
29
+ },
30
}
31
32
var OperatorControllerFeatureGate featuregate.MutableFeatureGate = featuregate.NewFeatureGate()
0 commit comments