Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 602 Bytes

attach.md

File metadata and controls

24 lines (20 loc) · 602 Bytes

Attach Mount

The Attach Mount mounts any attachment type. In addition to the attachment specification, it contains a filesystem type and optional mount_options.

Example Attach Mount specification:

{
    "kind": "attach",
    "attach": {
        "kind": "rbd",
        "fs_type": "squashfs",
        "mount_options": [
            "ro"
        ],
        "attach": { 
            // attachment specification
            // ...
        }
    }
}

See ../examples/iscsi-scheme or ../examples/rbd-scheme for complete examples.