File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
internal/operator-controller/features Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ const (
1010 // Ex: SomeFeature featuregate.Feature = "SomeFeature"
1111 PreflightPermissions featuregate.Feature = "PreflightPermissions"
1212 SingleOwnNamespaceInstallSupport featuregate.Feature = "SingleOwnNamespaceInstallSupport"
13+ SyntheticPermissions featuregate.Feature = "SyntheticPermissions"
1314)
1415
1516var operatorControllerFeatureGates = map [featuregate.Feature ]featuregate.FeatureSpec {
@@ -29,6 +30,14 @@ var operatorControllerFeatureGates = map[featuregate.Feature]featuregate.Feature
2930 PreRelease : featuregate .Alpha ,
3031 LockToDefault : false ,
3132 },
33+
34+ // SyntheticPermissions enables support for a synthetic user permission
35+ // model to manage operator permission boundaries
36+ SyntheticPermissions : {
37+ Default : false ,
38+ PreRelease : featuregate .Alpha ,
39+ LockToDefault : false ,
40+ },
3241}
3342
3443var OperatorControllerFeatureGate featuregate.MutableFeatureGate = featuregate .NewFeatureGate ()
You can’t perform that action at this time.
0 commit comments