Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for SupportsMountOption (0.54 sec)

  1. 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)
  2. 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)
  3. 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