Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for SupportsMountOption (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/volume/projected/projected.go

    	return spec.Volume != nil && spec.Volume.Projected != nil
    }
    
    func (plugin *projectedPlugin) RequiresRemount(spec *volume.Spec) bool {
    	return true
    }
    
    func (plugin *projectedPlugin) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *projectedPlugin) 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
    - 12.8K bytes
    - Viewed (0)
  5. pkg/volume/hostpath/host_path.go

    		(spec.Volume != nil && spec.Volume.HostPath != nil)
    }
    
    func (plugin *hostPathPlugin) RequiresRemount(spec *volume.Spec) bool {
    	return false
    }
    
    func (plugin *hostPathPlugin) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *hostPathPlugin) 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
    - 15.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    	return plugin.NewDetacher()
    }
    
    func (plugin *TestPlugin) GetDeviceMountRefs(deviceMountPath string) ([]string, error) {
    	return []string{}, nil
    }
    
    func (plugin *TestPlugin) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *TestPlugin) SupportsBulkVolumeVerification() bool {
    	return false
    }
    
    func (plugin *TestPlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  7. pkg/volume/plugins.go

    	ConstructVolumeSpec(volumeName, volumePath string) (ReconstructedVolume, error)
    
    	// SupportsMountOption returns true if volume plugins supports Mount options
    	// Specifying mount options in a volume plugin that doesn't support
    	// user specified mount options will result in error creating persistent volumes
    	SupportsMountOption() bool
    
    	// SupportsSELinuxContextMount returns true if volume plugins supports
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  8. pkg/volume/fc/fc.go

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

    	return spec.Volume != nil && spec.Volume.EmptyDir != nil
    }
    
    func (plugin *emptyDirPlugin) RequiresRemount(spec *volume.Spec) bool {
    	return false
    }
    
    func (plugin *emptyDirPlugin) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *emptyDirPlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    	return false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/iscsi.go

    }
    
    func (plugin *iscsiPlugin) RequiresRemount(spec *volume.Spec) bool {
    	return false
    }
    
    func (plugin *iscsiPlugin) SupportsMountOption() bool {
    	return true
    }
    
    func (plugin *iscsiPlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    	return true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top