Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for nodecontroller (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/controller/statefulset/stateful_set_utils_test.go

    			podUID:        "pod",
    			nonController: true,
    		},
    		{
    			name: "pod noncontroller",
    			refs: []metav1.OwnerReference{
    				{
    					APIVersion: "v1",
    					Kind:       "pod",
    					Name:       "pod",
    					UID:        "pod",
    				},
    			},
    			setUID:        "set",
    			podUID:        "pod",
    			nonController: true,
    		},
    		{
    			name: "other noncontroller",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	// 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. There are several constraints:
    	// 1. nodeMonitorGracePeriod must be N times more than nodeStatusUpdateFrequency, where
    	//    N means number of retries allowed for kubelet to post node status. It is pointless
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top