CLIBlock Storage
Block Storage
hudl commands for managing block storage on Huddle Cloud.
hudl exposes every Block Storage endpoint as a first-class command. They map 1:1 to the Block Storage API reference, so anything you can do through the API or dashboard you can do here.
Typical workflow
# Create a 50 GB volume
hudl volume create db-data --size 50
# Attach it to a running VM
hudl volume attach vol-abc123 --to vm-def456
# Later, detach before deleting
hudl volume detach vol-abc123
hudl volume delete vol-abc123Commands
| Command | Description |
|---|---|
hudl volume list | List all block storage volumes in the current region. |
hudl volume get <id> | Show details of a single volume, including attachments and size. |
hudl volume create <name> | Create a new empty block storage volume. |
hudl volume delete <id> | Permanently destroy a volume. The volume must be detached first. |
hudl volume attach <id> --to <vm> | Attach a volume to a running virtual machine. |
hudl volume detach <id> | Detach a volume from its current virtual machine. |