Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for newResourceQuotaControllerDescriptor (0.45 sec)

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

    				},
    			},
    		},
    	}
    }
    
    func TestController_DiscoveryError(t *testing.T) {
    	controllerDescriptorMap := map[string]*ControllerDescriptor{
    		"ResourceQuotaController":          newResourceQuotaControllerDescriptor(),
    		"GarbageCollectorController":       newGarbageCollectorControllerDescriptor(),
    		"EndpointSliceController":          newEndpointSliceControllerDescriptor(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:01 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/core.go

    		controllerContext.InformerFactory.Core().V1().Nodes(),
    		int(controllerContext.ComponentConfig.PodGCController.TerminatedPodGCThreshold),
    	).Run(ctx)
    	return nil, true, nil
    }
    
    func newResourceQuotaControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.ResourceQuotaController,
    		aliases:  []string{"resourcequota"},
    		initFunc: startResourceQuotaController,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/controllermanager.go

    	register(newEndpointSliceMirroringControllerDescriptor())
    	register(newReplicationControllerDescriptor())
    	register(newPodGarbageCollectorControllerDescriptor())
    	register(newResourceQuotaControllerDescriptor())
    	register(newNamespaceControllerDescriptor())
    	register(newServiceAccountControllerDescriptor())
    	register(newGarbageCollectorControllerDescriptor())
    	register(newDaemonSetControllerDescriptor())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top