Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetAliases (0.12 sec)

  1. cmd/kube-controller-manager/names/controller_names.go

    // They can only be changed if absolutely necessary. For example if an inappropriate name was chosen in the past, or if the scope of the controller changes.
    // When a name is changed, the old name should be aliased in app.ControllerDescriptor#GetAliases, while preserving all old aliases.
    // This is done to achieve backwards compatibility
    //
    // USE CASES
    // The following places should use the controller name constants, when:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/controllermanager_test.go

    			alphaFeatures.Insert(feature)
    		}
    
    	}
    
    	for name, controller := range NewControllerDescriptors() {
    		if len(controller.GetAliases()) == 0 {
    			continue
    		}
    
    		requiredFeatureGates := controller.GetRequiredFeatureGates()
    		if len(requiredFeatureGates) == 0 {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top