Storage
Create and manage block storage volumes for your instances.
Volumes provide persistent storage that remains available even if an instance is deleted.
With an agent (MCP)
Connect the redu MCP, then just ask your agent. It calls create_volume to provision the volume and list_volumes to find it. To attach a volume at launch, the agent includes it when it runs create_instance.
Create a 50 GB volume for me.1. Create a volume
Go to:
Menu → Block Storage → Volumes
Then:
- Click Create Volume
- Enter a name (for example
data-volume-01) - Set the size in GB
- Optionally add a description
- Submit the form

Notes
- Choose a size that fits your needs
- Volumes can be attached and reused across instances
2. Attach a volume
To attach a volume to an instance:
- Open the volumes list
- From Actions, select Attach to Instance
- Choose the instance
- Confirm


After attaching, log in to the instance and mount the volume.
Example (Linux)
# Create filesystem (only once)
sudo mkfs.ext4 /dev/vdb
# Create mount point
sudo mkdir -p /mnt/data
# Mount volume
sudo mount /dev/vdb /mnt/data
# Optional: persist across reboots
sudo blkid /dev/vdb3. Detach a volume
Before detaching, unmount the volume inside the instance to avoid data loss.
sudo umount /mnt/dataThen:
- Open the volumes list
- From Actions, select Detach Volume
- Confirm

4. Delete a volume
Only delete volumes you no longer need.
- Ensure the volume is detached
- From Actions, select Delete Volume
- Confirm
Deletion is permanent.
Snapshots and backups
- Snapshots, point-in-time copy of a volume or instance
- Backups, long-term data protection
See:
Troubleshooting
Attach or detach stuck
- Ensure the volume is not mounted in the OS
- Wait a few moments and retry
Volume not visible
- Check available devices:
lsblk- Confirm the attach operation completed successfully
Related
Last updated on