Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SupportsMountOption (0.26 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/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)
  5. 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)
  6. 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)
Back to top