Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for appendAttachableLegacyProviderVolumes (0.52 sec)

  1. cmd/kube-controller-manager/app/plugins_providers.go

    	return plugins, nil
    }
    
    type pluginInfo struct {
    	pluginMigrationFeature  featuregate.Feature
    	pluginUnregisterFeature featuregate.Feature
    	pluginProbeFunction     probeFn
    }
    
    func appendAttachableLegacyProviderVolumes(logger klog.Logger, allPlugins []volume.VolumePlugin, featureGate featuregate.FeatureGate) ([]volume.VolumePlugin, error) {
    	pluginMigrationStatus := make(map[string]pluginInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/plugins.go

    func ProbeAttachableVolumePlugins(logger klog.Logger) ([]volume.VolumePlugin, error) {
    	var err error
    	allPlugins := []volume.VolumePlugin{}
    	allPlugins, err = appendAttachableLegacyProviderVolumes(logger, allPlugins, utilfeature.DefaultFeatureGate)
    	if err != nil {
    		return allPlugins, err
    	}
    	allPlugins = append(allPlugins, fc.ProbeVolumePlugins()...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top