Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for appendLegacyProviderVolumes (0.26 sec)

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

    }
    
    func appendExpandableLegacyProviderVolumes(logger klog.Logger, allPlugins []volume.VolumePlugin, featureGate featuregate.FeatureGate) ([]volume.VolumePlugin, error) {
    	return appendLegacyProviderVolumes(logger, allPlugins, featureGate)
    }
    
    func appendLegacyProviderVolumes(logger klog.Logger, allPlugins []volume.VolumePlugin, featureGate featuregate.FeatureGate) ([]volume.VolumePlugin, error) {
    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/kubelet/app/plugins_providers.go

    	return plugins, nil
    }
    
    type pluginInfo struct {
    	pluginMigrationFeature  featuregate.Feature
    	pluginUnregisterFeature featuregate.Feature
    	pluginProbeFunction     probeFn
    }
    
    func appendLegacyProviderVolumes(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
    - 2.7K bytes
    - Viewed (0)
  3. cmd/kubelet/app/plugins.go

    	//
    	// Kubelet does not currently need to configure volume plugins.
    	// If/when it does, see kube-controller-manager/app/plugins.go for example of using volume.VolumeConfig
    	var err error
    	allPlugins, err = appendLegacyProviderVolumes(allPlugins, featureGate)
    	if err != nil {
    		return allPlugins, err
    	}
    	allPlugins = append(allPlugins, emptydir.ProbeVolumePlugins()...)
    	allPlugins = append(allPlugins, git_repo.ProbeVolumePlugins()...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top