Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for SupportsMountOption (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/volume/local/local.go

    	return (spec.PersistentVolume != nil && spec.PersistentVolume.Spec.Local != nil)
    }
    
    func (plugin *localVolumePlugin) RequiresRemount(spec *volume.Spec) bool {
    	return false
    }
    
    func (plugin *localVolumePlugin) SupportsMountOption() bool {
    	return true
    }
    
    func (plugin *localVolumePlugin) 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
    - 22.2K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_plugin.go

    					Driver:       driverName,
    					VolumeHandle: volumeHandle,
    				},
    			},
    			VolumeMode: &fsMode,
    		},
    	}
    	return volume.NewSpecFromPersistentVolume(pv, false)
    }
    
    func (p *csiPlugin) SupportsMountOption() bool {
    	// TODO (vladimirvivien) use CSI VolumeCapability.MountVolume.mount_flags
    	// to probe for the result for this method
    	// (bswartz) Until the CSI spec supports probing, our only option is to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/framework_test.go

    	return true
    }
    
    func (plugin *mockVolumePlugin) RequiresRemount(spec *volume.Spec) bool {
    	return false
    }
    
    func (plugin *mockVolumePlugin) SupportsMountOption() bool {
    	return false
    }
    
    func (plugin *mockVolumePlugin) SupportsBulkVolumeVerification() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
Back to top