Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InitializeCSINodeWithAnnotation (0.41 sec)

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

    type Interface interface {
    	CreateCSINode() (*storagev1.CSINode, error)
    
    	// Updates or Creates the CSINode object with annotations for CSI Migration
    	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
    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/csi_plugin.go

    			Factor:   6.0,
    			Jitter:   0.1,
    		}
    		err = wait.ExponentialBackoff(initBackoff, func() (bool, error) {
    			klog.V(4).Infof("Initializing migrated drivers on CSINode")
    			err := nim.InitializeCSINodeWithAnnotation()
    			if err != nil {
    				kvh.SetKubeletError(fmt.Errorf("failed to initialize CSINode: %v", err))
    				klog.Errorf("Failed to initialize CSINode: %v", err)
    				return false, 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