Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewClusterRoleAggregation (0.43 sec)

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

    	}
    }
    
    func startClusterRoleAggregationController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    	go clusterroleaggregation.NewClusterRoleAggregation(
    		controllerContext.InformerFactory.Rbac().V1().ClusterRoles(),
    		controllerContext.ClientBuilder.ClientOrDie("clusterrole-aggregation-controller").RbacV1(),
    	).Run(ctx, 5)
    	return nil, true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    	clusterRolesSynced cache.InformerSynced
    
    	syncHandler func(ctx context.Context, key string) error
    	queue       workqueue.TypedRateLimitingInterface[string]
    }
    
    // NewClusterRoleAggregation creates a new controller
    func NewClusterRoleAggregation(clusterRoleInformer rbacinformers.ClusterRoleInformer, clusterRoleClient rbacclient.ClusterRolesGetter) *ClusterRoleAggregationController {
    	c := &ClusterRoleAggregationController{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top