Volumes
Persistent block storage for your Virtual Instances.
Creating a Volume
- Navigate to Enterprise > Volumes.
- Click Create Volume.
- Specify the Size (in GB) and Type (NVMe SSD or HDD).
- Select the Region matching your instance.
Attaching a Volume
- Select the created volume.
- Click Attach.
- Choose the target instance from the dropdown.
Mounting the Volume (Linux)
Once attached, the volume appears as a block device (e.g., /dev/sdb).
# check for the new device
lsblk
# Format the volume (first time only)
sudo mkfs.ext4 /dev/sdb
# Mount it
sudo mkdir /mnt/data
sudo mount /dev/sdb /mnt/data
# Add to /etc/fstab for persistence
echo '/dev/sdb /mnt/data ext4 defaults 0 0' | sudo tee -a /etc/fstab