File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
internal/operator-controller/features Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 88const (
99 // Add new feature gates constants (strings)
1010 // Ex: SomeFeature featuregate.Feature = "SomeFeature"
11- PreflightPermissions featuregate.Feature = "PreflightPermissions"
11+ PreflightPermissions featuregate.Feature = "PreflightPermissions"
12+ SingleOwnNamespaceInstallSupport featuregate.Feature = "SingleOwnNamespaceInstallSupport"
1213)
1314
1415var operatorControllerFeatureGates = map [featuregate.Feature ]featuregate.FeatureSpec {
@@ -19,6 +20,15 @@ var operatorControllerFeatureGates = map[featuregate.Feature]featuregate.Feature
1920 PreRelease : featuregate .Alpha ,
2021 LockToDefault : false ,
2122 },
23+
24+ // SingleOwnNamespaceInstallSupport enables support for installing
25+ // registry+v1 cluster extensions with single or own namespaces modes
26+ // i.e. with a single watch namespace.
27+ SingleOwnNamespaceInstallSupport : {
28+ Default : false ,
29+ PreRelease : featuregate .Alpha ,
30+ LockToDefault : false ,
31+ },
2232}
2333
2434var OperatorControllerFeatureGate featuregate.MutableFeatureGate = featuregate .NewFeatureGate ()
You can’t perform that action at this time.
0 commit comments