Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for csiDriverName (0.23 sec)

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

    		return err
    	}
    
    	hasModified := false
    	// Uninstall CSINodeDriver with name csiDriverName
    	drivers := nodeInfo.Spec.Drivers[:0]
    	for _, driver := range nodeInfo.Spec.Drivers {
    		if driver.Name != csiDriverName {
    			drivers = append(drivers, driver)
    		} else {
    			// Found a driver with name csiDriverName
    			// Set hasModified to true because it will be removed
    			hasModified = true
    		}
    	}
    
    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

    		pod:                 pod,
    		podUID:              pod.UID,
    		driverName:          csiDriverName(driverName),
    		volumeLifecycleMode: volumeLifecycleMode,
    		volumeID:            volumeHandle,
    		specVolumeID:        spec.Name(),
    		readOnly:            readOnly,
    		kubeVolHost:         kvh,
    	}
    	mounter.csiClientGetter.driverName = csiDriverName(driverName)
    
    	dir := mounter.GetPath()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller_base.go

    		csiDriverName, err = translator.GetCSINameFromInTreeName(provisioner)
    		if err != nil {
    			logger.Error(err, "Could not update volume migration annotations. Migration enabled for plugin but could not find corresponding driver name", "plugin", provisioner)
    			return false
    		}
    		if migratedToDriver != csiDriverName {
    			ann[storagehelpers.AnnMigratedTo] = csiDriverName
    			return true
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top