Documentation ¶
Index ¶
- Constants
- func Init(osdm *osm.OSDriverManager, sdm *storage.StorageDriverManager) (volume.Driver, error)
- type Driver
- func (driver *Driver) Attach(volumeName, instanceID string) (string, error)
- func (driver *Driver) Create(volumeName string, volumeOpts volume.VolumeOpts) error
- func (driver *Driver) Detach(volumeName, instanceID string) error
- func (driver *Driver) Mount(volumeName, volumeID string, overwriteFs bool, newFsType string) (string, error)
- func (driver *Driver) NetworkName(volumeName, instanceID string) (string, error)
- func (driver *Driver) Path(volumeName, volumeID string) (string, error)
- func (driver *Driver) Remove(volumeName string) error
- func (driver *Driver) Unmount(volumeName, volumeID string) error
Constants ¶
View Source
const ( ProviderName = "docker" MountDirectory = "/var/lib/rexray/volumes" DefaultVolumeSize int64 = 16 )
Variables ¶
This section is empty.
Functions ¶
func Init ¶
func Init( osdm *osm.OSDriverManager, sdm *storage.StorageDriverManager) (volume.Driver, error)
Types ¶
type Driver ¶
type Driver struct {
// contains filtered or unexported fields
}
func (*Driver) Create ¶
func (driver *Driver) Create(volumeName string, volumeOpts volume.VolumeOpts) error
Create will create a remote volume
func (*Driver) Mount ¶
func (driver *Driver) Mount(volumeName, volumeID string, overwriteFs bool, newFsType string) (string, error)
Mount will perform the steps to get an existing Volume with or without a fileystem mounted to a guest
func (*Driver) NetworkName ¶
NetworkName will return relevant information about how a volume can be discovered on an OS
Click to show internal directories.
Click to hide internal directories.