Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestFeatureGatedControllersShouldNotDefineAliases (0.58 sec)

  1. cmd/kube-controller-manager/app/controllermanager_test.go

    	}
    }
    
    func TestFeatureGatedControllersShouldNotDefineAliases(t *testing.T) {
    	featureGateRegex := regexp.MustCompile("^([a-zA-Z0-9]+)")
    
    	alphaFeatures := sets.NewString()
    	for _, featureText := range utilfeature.DefaultFeatureGate.KnownFeatures() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/core.go

    		aliases:  []string{"resource-claim-controller"},
    		initFunc: startResourceClaimController,
    		requiredFeatureGates: []featuregate.Feature{
    			features.DynamicResourceAllocation, // TODO update app.TestFeatureGatedControllersShouldNotDefineAliases when removing this feature
    		},
    	}
    }
    
    func startResourceClaimController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top