Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for removePlugin (0.19 sec)

  1. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    		// so that if we receive a register event during Register Plugin, we can process it as a Register call.
    		actualStateOfWorldUpdater.RemovePlugin(pluginInfo.SocketPath)
    
    		pluginInfo.Handler.DeRegisterPlugin(pluginInfo.Name)
    
    		klog.V(4).InfoS("DeRegisterPlugin called", "pluginName", pluginInfo.Name, "pluginHandler", pluginInfo.Handler)
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/plugin/plugin.go

    // signaling it is no longer available.
    func (h *RegistrationHandler) DeRegisterPlugin(pluginName string) {
    	klog.InfoS("DeRegister DRA plugin", "name", pluginName)
    	deregisterPlugin(pluginName)
    	h.controller.removePlugin(pluginName)
    }
    
    // ValidatePlugin is called by kubelet's plugin watcher upon detection
    // of a new registration socket opened by DRA plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top