Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 447 Bytes

local.md

File metadata and controls

14 lines (11 loc) · 447 Bytes

Local Attach

The local attachment type can be used to make a locally available block device that already exists available as an Attachment object for the ImageAPI. This can allow, e.g. a local disk to be mounted. This attachment type will fail if the device file does not exists, or if the device is not a block device.

Example of a Local attachment specification:

{
  "kind": "local",
  "local": {
    "path": "/dev/sda"
  }
}