Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InstallCSIDriver (0.24 sec)

  1. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    	InitializeCSINodeWithAnnotation() error
    
    	// Record in the cluster the given node information from the CSI driver with the given name.
    	// Concurrent calls to InstallCSIDriver() is allowed, but they should not be intertwined with calls
    	// to other methods in this interface.
    	InstallCSIDriver(driverName string, driverNodeID string, maxVolumeLimit int64, topology map[string]string) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    		if err != nil {
    			t.Errorf("expected no error from creating CSINodeinfo but got: %v", err)
    			continue
    		}
    		err = nim.InstallCSIDriver(driverName, nodeID, 0 /* maxVolumeLimit */, nil) // TODO test maxVolumeLimit
    		if err != nil {
    			t.Errorf("expected no error from InstallCSIDriver call but got: %v", err)
    			continue
    		}
    
    		// Assert
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_plugin.go

    			klog.Error(log("registrationHandler.RegisterPlugin failed to unregister plugin due to previous error: %v", unregErr))
    		}
    		return err
    	}
    
    	err = nim.InstallCSIDriver(pluginName, driverNodeID, maxVolumePerNode, accessibleTopology)
    	if err != nil {
    		if unregErr := unregisterDriver(pluginName); unregErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top