Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetDevicePluginOptions (0.4 sec)

  1. pkg/kubelet/pluginmanager/pluginwatcher/README.md

    - NotifyRegistrationStatus is called against socket to indicate registration result.
    
    During plugin initialization phase, Kubelet will issue Plugin specific calls
    (e.g: DevicePlugin::GetDevicePluginOptions).
    
    Once Kubelet determines that it is ready to use your plugin it will issue a
    Registration.NotifyRegistrationStatus gRPC call.
    
    If the plugin removes its socket from the PluginDir this will be interpreted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:00:59 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    		klog.ErrorS(err, "Client unable to register to kubelet")
    		return err
    	}
    	klog.InfoS("Device Plugin registered with the Kubelet")
    	return err
    }
    
    // GetDevicePluginOptions returns DevicePluginOptions settings for the device plugin.
    func (m *Stub) GetDevicePluginOptions(ctx context.Context, e *pluginapi.Empty) (*pluginapi.DevicePluginOptions, error) {
    	options := &pluginapi.DevicePluginOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager.go

    // This is done as part of device plugin registration.
    func (m *ManagerImpl) PluginConnected(resourceName string, p plugin.DevicePlugin) error {
    	options, err := p.API().GetDevicePluginOptions(context.Background(), &pluginapi.Empty{})
    	if err != nil {
    		return fmt.Errorf("failed to get device plugin options: %v", err)
    	}
    
    	e := newEndpointImpl(p)
    
    	m.mutex.Lock()
    	defer m.mutex.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top