Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for UpdatePluginResources (0.74 sec)

  1. pkg/kubelet/cm/devicemanager/types.go

    	Allocate(pod *v1.Pod, container *v1.Container) error
    
    	// UpdatePluginResources updates node resources based on devices already
    	// allocated to pods. The node object is provided for the device manager to
    	// update the node capacity to reflect the currently available devices.
    	UpdatePluginResources(node *schedulerframework.NodeInfo, attrs *lifecycle.PodAdmitAttributes) error
    
    	// Stop stops the manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/fake_container_manager.go

    	return &kubecontainer.RunContainerOptions{}, nil
    }
    
    func (cm *FakeContainerManager) UpdatePluginResources(*schedulerframework.NodeInfo, *lifecycle.PodAdmitAttributes) error {
    	cm.Lock()
    	defer cm.Unlock()
    	cm.CalledFunctions = append(cm.CalledFunctions, "UpdatePluginResources")
    	return nil
    }
    
    func (cm *FakeContainerManager) InternalContainerLifecycle() InternalContainerLifecycle {
    	cm.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 17:33:04 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager.go

    	// UpdatePluginResources calls Allocate of device plugin handler for potential
    	// requests for device plugin resources, and returns an error if fails.
    	// Otherwise, it updates allocatableResource in nodeInfo if necessary,
    	// to make sure it is at least equal to the pod's requested capacity for
    	// any registered device plugin resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/container_manager_windows.go

    	opts.Annotations = append(opts.Annotations, devOpts.Annotations...)
    	return opts, nil
    }
    
    func (cm *containerManagerImpl) UpdatePluginResources(node *schedulerframework.NodeInfo, attrs *lifecycle.PodAdmitAttributes) error {
    	return cm.deviceManager.UpdatePluginResources(node, attrs)
    }
    
    func (cm *containerManagerImpl) InternalContainerLifecycle() InternalContainerLifecycle {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 11:25:36 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_stub.go

    func (cm *containerManagerStub) GetResources(pod *v1.Pod, container *v1.Container) (*kubecontainer.RunContainerOptions, error) {
    	return &kubecontainer.RunContainerOptions{}, nil
    }
    
    func (cm *containerManagerStub) UpdatePluginResources(*schedulerframework.NodeInfo, *lifecycle.PodAdmitAttributes) error {
    	return nil
    }
    
    func (cm *containerManagerStub) InternalContainerLifecycle() InternalContainerLifecycle {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 02:26:59 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/container_manager_linux.go

    	opts.CDIDevices = append(opts.CDIDevices, devOpts.CDIDevices...)
    	return opts, nil
    }
    
    func (cm *containerManagerImpl) UpdatePluginResources(node *schedulerframework.NodeInfo, attrs *lifecycle.PodAdmitAttributes) error {
    	return cm.deviceManager.UpdatePluginResources(node, attrs)
    }
    
    func (cm *containerManagerImpl) GetAllocateResourcesPodAdmitHandler() lifecycle.PodAdmitHandler {
    	return cm.topologyManager
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/manager.go

    		return err
    	}
    	m.podDevices.removeContainerAllocatedResources(string(pod.UID), container.Name, m.devicesToReuse[string(pod.UID)])
    	return nil
    }
    
    // UpdatePluginResources updates node resources based on devices already allocated to pods.
    func (m *ManagerImpl) UpdatePluginResources(node *schedulerframework.NodeInfo, attrs *lifecycle.PodAdmitAttributes) error {
    	pod := attrs.Pod
    
    	// quick return if no pluginResources requested
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	// Add this as cleanup predicate pod admitter
    	kubelet.admitHandlers.AddPodAdmitHandler(lifecycle.NewPredicateAdmitHandler(kubelet.getNodeAnyWay, lifecycle.NewAdmissionFailureHandlerStub(), kubelet.containerManager.UpdatePluginResources))
    
    	allPlugins := []volume.VolumePlugin{}
    	plug := &volumetest.FakeVolumePlugin{PluginName: "fake", Host: nil}
    	if initFakeVolumePlugin {
    		allPlugins = append(allPlugins, plug)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    				v1.ResourceName(resourceName2): *resource.NewQuantity(int64(2), resource.DecimalSI),
    			},
    		},
    	}
    	nodeInfo := &schedulerframework.NodeInfo{}
    	nodeInfo.SetNode(cachedNode)
    
    	testManager.UpdatePluginResources(nodeInfo, &lifecycle.PodAdmitAttributes{Pod: pod})
    
    	allocatableScalarResources := nodeInfo.Allocatable.ScalarResources
    	// allocatable in nodeInfo is less than needed, should update
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	klet.admitHandlers.AddPodAdmitHandler(lifecycle.NewPredicateAdmitHandler(klet.getNodeAnyWay, criticalPodAdmissionHandler, klet.containerManager.UpdatePluginResources))
    	// apply functional Option's
    	for _, opt := range kubeDeps.Options {
    		opt(klet)
    	}
    
    	if sysruntime.GOOS == "linux" {
    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