Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for SupportsMountOption (0.38 sec)

  1. pkg/volume/noop_expandable_plugin.go

    func (n *noopExpandableVolumePluginInstance) ConstructVolumeSpec(volumeName, mountPath string) (ReconstructedVolume, error) {
    	return ReconstructedVolume{Spec: n.spec}, nil
    }
    
    func (n *noopExpandableVolumePluginInstance) SupportsMountOption() bool {
    	return true
    }
    
    func (n *noopExpandableVolumePluginInstance) RequiresFSResize() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/volume/plugins_test.go

    }
    
    func (plugin *testPlugins) CanSupport(spec *Spec) bool {
    	return true
    }
    
    func (plugin *testPlugins) RequiresRemount(spec *Spec) bool {
    	return false
    }
    
    func (plugin *testPlugins) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *testPlugins) SupportsSELinuxContextMount(spec *Spec) (bool, error) {
    	return false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. pkg/volume/flexvolume/plugin.go

    				Driver: plugin.driverName,
    			},
    		},
    	}
    	return volume.ReconstructedVolume{
    		Spec: volume.NewSpecFromVolume(flexVolume),
    	}, nil
    }
    
    func (plugin *flexVolumePlugin) SupportsMountOption() bool {
    	return false
    }
    
    // Mark the given commands as unsupported.
    func (plugin *flexVolumePlugin) unsupported(commands ...string) {
    	plugin.Lock()
    	defer plugin.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. pkg/volume/configmap/configmap.go

    	return spec.Volume != nil && spec.Volume.ConfigMap != nil
    }
    
    func (plugin *configMapPlugin) RequiresRemount(spec *volume.Spec) bool {
    	return true
    }
    
    func (plugin *configMapPlugin) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *configMapPlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    	return false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pkg/volume/git_repo/git_repo.go

    	return spec.Volume != nil && spec.Volume.GitRepo != nil
    }
    
    func (plugin *gitRepoPlugin) RequiresRemount(spec *volume.Spec) bool {
    	return false
    }
    
    func (plugin *gitRepoPlugin) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *gitRepoPlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    	return false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. pkg/volume/nfs/nfs.go

    		(spec.Volume != nil && spec.Volume.NFS != nil)
    }
    
    func (plugin *nfsPlugin) RequiresRemount(spec *volume.Spec) bool {
    	return false
    }
    
    func (plugin *nfsPlugin) SupportsMountOption() bool {
    	return true
    }
    
    func (plugin *nfsPlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    	return false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/volume/secret/secret.go

    	return spec.Volume != nil && spec.Volume.Secret != nil
    }
    
    func (plugin *secretPlugin) RequiresRemount(spec *volume.Spec) bool {
    	return true
    }
    
    func (plugin *secretPlugin) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *secretPlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    	return false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. pkg/volume/downwardapi/downwardapi.go

    	return spec.Volume != nil && spec.Volume.DownwardAPI != nil
    }
    
    func (plugin *downwardAPIPlugin) RequiresRemount(spec *volume.Spec) bool {
    	return true
    }
    
    func (plugin *downwardAPIPlugin) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *downwardAPIPlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    	return false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pkg/volume/testing/testing.go

    }
    
    func (f *FakeBasicVolumePlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    	return f.Plugin.SupportsSELinuxContextMount(spec)
    }
    
    func (f *FakeBasicVolumePlugin) SupportsMountOption() bool {
    	return f.Plugin.SupportsMountOption()
    }
    
    var _ volume.VolumePlugin = &FakeBasicVolumePlugin{}
    
    // FakeDeviceMountableVolumePlugin implements an device mountable plugin based on FakeBasicVolumePlugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. pkg/volume/portworx/portworx.go

    				VolumeID: volumeName,
    			},
    		},
    	}
    	return volume.ReconstructedVolume{
    		Spec: volume.NewSpecFromVolume(portworxVolume),
    	}, nil
    }
    
    func (plugin *portworxVolumePlugin) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *portworxVolumePlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    	return false, nil
    }
    
    func getVolumeSource(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top