Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FakeProbeVolumePlugins (0.42 sec)

  1. pkg/kubemark/hollow_kubelet.go

    	allPlugins := []volume.VolumePlugin{}
    	allPlugins = append(allPlugins, emptydir.ProbeVolumePlugins()...)
    	allPlugins = append(allPlugins, git_repo.ProbeVolumePlugins()...)
    	allPlugins = append(allPlugins, hostpath.FakeProbeVolumePlugins(volume.VolumeConfig{})...)
    	allPlugins = append(allPlugins, nfs.ProbeVolumePlugins(volume.VolumeConfig{})...)
    	allPlugins = append(allPlugins, secret.ProbeVolumePlugins()...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pkg/volume/hostpath/host_path.go

    func ProbeVolumePlugins(volumeConfig volume.VolumeConfig) []volume.VolumePlugin {
    	return []volume.VolumePlugin{
    		&hostPathPlugin{
    			host:   nil,
    			config: volumeConfig,
    		},
    	}
    }
    
    func FakeProbeVolumePlugins(volumeConfig volume.VolumeConfig) []volume.VolumePlugin {
    	return []volume.VolumePlugin{
    		&hostPathPlugin{
    			host:          nil,
    			config:        volumeConfig,
    			noTypeChecker: true,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top