Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for nodecontroller (0.38 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		nodeController.getPodsAssignedToNode = fakeGetPodsAssignedToNode(item.fakeNodeHandler.Clientset)
    		if err := nodeController.syncNodeStore(item.fakeNodeHandler); err != nil {
    			t.Errorf("unexpected error: %v", err)
    		}
    		if err := nodeController.monitorNodeHealth(ctx); err != nil {
    			t.Errorf("unexpected error: %v", err)
    		}
    		if item.timeToPass > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. pkg/controller/nodeipam/ipam/cidr_allocator.go

    	// CIDR range allocations from the cloud to the cluster.
    	IPAMFromCloudAllocatorType = "IPAMFromCloud"
    )
    
    // TODO: figure out the good setting for those constants.
    const (
    	// The amount of time the nodecontroller polls on the list nodes endpoint.
    	apiserverStartupGracePeriod = 10 * time.Minute
    
    	// The no. of NodeSpec updates NC can process concurrently.
    	cidrUpdateWorkers = 30
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. pkg/controller/nodeipam/ipam/range_allocator.go

    	// We accept the fact that we may leak CIDRs here. This is safer than releasing
    	// them in case when we don't know if request went through.
    	// NodeController restart will return all falsely allocated CIDRs to the pool.
    	if !apierrors.IsServerTimeout(err) {
    		logger.Error(err, "CIDR assignment for node failed. Releasing allocated CIDR", "node", klog.KObj(node))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/cloud-provider/config/v1alpha1,CloudControllerManagerConfiguration,KubeCloudShared
    API rule violation: names_match,k8s.io/cloud-provider/config/v1alpha1,CloudControllerManagerConfiguration,NodeController
    API rule violation: names_match,k8s.io/cloud-provider/config/v1alpha1,CloudControllerManagerConfiguration,NodeStatusUpdateFrequency
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	stateNormal            = ZoneState("Normal")
    	stateFullDisruption    = ZoneState("FullDisruption")
    	statePartialDisruption = ZoneState("PartialDisruption")
    )
    
    const (
    	// The amount of time the nodecontroller should sleep between retrying node health updates
    	retrySleepTime   = 20 * time.Millisecond
    	nodeNameKeyIndex = "spec.nodeName"
    	// podUpdateWorkerSizes assumes that in most cases pod will be handled by monitorNodeHealth pass.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/types.go

    	// status. If node lease feature is not enabled, it is also the frequency that
    	// kubelet posts node status to master. In that case, be cautious when
    	// changing the constant, it must work with nodeMonitorGracePeriod in nodecontroller.
    	NodeStatusUpdateFrequency metav1.Duration
    	// nodeStatusReportFrequency is the frequency that kubelet posts node
    	// status to master if node status does not change. Kubelet will ignore this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	fs.DurationVar(&c.ImageMinimumGCAge.Duration, "minimum-image-ttl-duration", c.ImageMinimumGCAge.Duration, "Minimum age for an unused image before it is garbage collected.  Examples: '300ms', '10s' or '2h45m'.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/ClientProvidedPhasedActionRunnerTest.groovy

            result.clientFailure == null
    
            and:
            1 * buildController.fromBuildModel(_, _) >> { Boolean b, BuildTreeModelAction modelAction ->
                modelAction.beforeTasks(modelController)
                modelAction.fromBuildModel(modelController)
            }
            1 * projectsLoadedAction.execute(_) >> result1
            1 * buildFinishedAction.execute(_) >> result2
            1 * buildEventConsumer.dispatch({
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

        }
    
        @Override
        public void loadSettings() {
            state.notInState(State.Finished, modelController::getLoadedSettings);
        }
    
        @Override
        public <T> T withSettings(Function<? super SettingsInternal, T> action) {
            return state.notInState(State.Finished, () -> action.apply(modelController.getLoadedSettings()));
        }
    
        @Override
        public void configureProjects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

        def modelId = Stub(ModelIdentifier) {
            getName() >> 'some.model'
        }
        def modelScope = Mock(ToolingModelScope)
        def buildStateRegistry = Mock(BuildStateRegistry)
        def modelController = Mock(BuildTreeModelController)
        def workerThreadRegistry = Mock(WorkerThreadRegistry)
        def parameterCarrierFactory = Mock(ToolingModelParameterCarrier.Factory)
        def buildEventConsumer = Mock(BuildEventConsumer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top