Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsMigrationCompleteForPlugin (0.35 sec)

  1. pkg/volume/csimigration/plugin_manager.go

    		featureGate:      featureGate,
    	}
    }
    
    // IsMigrationCompleteForPlugin indicates whether CSI migration has been completed
    // for a particular storage plugin. A complete migration will need to:
    // 1. Enable CSIMigrationXX for the plugin
    // 2. Unregister the in-tree plugin by setting the InTreePluginXXUnregister feature gate
    func (pm PluginManager) IsMigrationCompleteForPlugin(pluginName string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pkg/volume/csimigration/plugin_manager_test.go

    				t.Errorf("Expected migratability of plugin %v: %v does not match obtained migratability: %v", test.pluginName, test.csiMigrationResult, csiMigrationResult)
    			}
    			csiMigrationCompleteResult := pm.IsMigrationCompleteForPlugin(test.pluginName)
    			if csiMigrationCompleteResult != test.csiMigrationCompleteResult {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/util/util.go

    		return false, err
    	}
    
    	if len(pluginName) == 0 {
    		// Could not find a plugin name from translation directory, assume not translated
    		return false, nil
    	}
    
    	if csiMigratedPluginManager.IsMigrationCompleteForPlugin(pluginName) {
    		// All nodes are expected to have migrated CSI plugin installed and
    		// configured when CSI Migration Complete flag is enabled for a plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top