Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClusterRoleAggregator (0.15 sec)

  1. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting ClusterRoleAggregator controller")
    	defer logger.Info("Shutting down ClusterRoleAggregator controller")
    
    	if !cache.WaitForNamedCacheSync("ClusterRoleAggregator", ctx.Done(), c.clusterRolesSynced) {
    		return
    	}
    
    	for i := 0; i < workers; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller_test.go

    						// UnsupportedMediaType
    						return true, nil, errors.NewGenericServerResponse(415, "get", action.GetResource().GroupResource(), "test", "Apply not supported", 0, true)
    					}
    					return true, nil, nil // clusterroleaggregator drops returned objects so no point in constructing them
    				})
    				c := ClusterRoleAggregationController{
    					clusterRoleClient: fakeClient.RbacV1(),
    					clusterRoleLister: rbaclisters.NewClusterRoleLister(indexer),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top