For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
LoginGet Started
DocsAPI ReferenceChangelog
DocsAPI ReferenceChangelog
    • Home
  • Getting Started
  • Infrastructure
    • GPU VMs
    • Cloud VMs
    • Object Storage
    • Block Storage
      • Create a volume
      • Attach and detach a volume
      • Resize a volume
      • Performance tiers
      • Volume backups
  • Network & Security
    • Load Balancer
    • DNS
    • CDN
    • Firewalls
    • SSL Certificates
  • Tools
    • Backups
    • Snapshots
    • ISOs
    • SSH Keys
    • API Tokens
    • Secret Manager
    • Container Registry
  • Platform Fundamentals
    • Projects and tenancy model
    • IAM
    • Networking overview
    • Billing and usage
    • Limits and quotas
    • SLA and reliability
  • Tutorials
    • Deploy a web app
    • Host a static website with object storage
    • Run an AI model on a GPU VM
    • Set up a load-balanced architecture
    • Backup and disaster recovery
    • Multi-region deployment
  • Migration Guides
    • Migrate from AWS
    • Migrate from GCP
    • Migrate from Vultr and Linode
    • Move S3 workloads to IBEE Object Storage
    • VM image migration
  • Reference
    • Pricing
    • Regions
    • Limits
    • Error codes
    • Service level agreement
  • Support
    • Contact Support
    • Create a request
    • Troubleshooting guides
    • Visit ibee.ai
LogoLogo
LoginGet Started
On this page
  • Key concepts
  • What you can do
  • Limits and behavior
  • Typical workflow
  • Related pages
Infrastructure

Block Storage

Was this page helpful?
Edit this page
Previous

Create a volume

Next
Built with

Block Storage volumes are persistent NVMe disks you can attach to any IBEE Cloud server. They live independently of the server, so the data survives if the server is rebuilt, resized, or deleted. Use them for databases, application state, file shares, or anywhere you need durable storage that outlives the compute.

Volumes are managed under Infrastructure → Block Storage in the portal at portal.ibee.ai/p/{project_id}/cloud-storage/block.

Key concepts

ConceptWhat it means
VolumeA single NVMe block device with a fixed provisioned size.
Storage typeThe performance class — NVMe (High Performance).
Storage locationThe region the volume is provisioned in (e.g. AMR 1). A volume can only be attached to servers in the same region.
ClassStorage tier shown on the volume — Balanced for the standard NVMe tier.
ReplicasNumber of replicas the platform keeps for durability. Default: 2.
Volume labelThe display name. Lowercase letters, numbers, and hyphens only.
StatusReady (idle), In Use (attached to a server).
AttachmentWhich server the volume is currently attached to (if any), and the device path inside the guest (e.g. /dev/vdc).

What you can do

Create a volume

Provision a new NVMe volume — pick size, location, and label.

Attach and detach

Connect a volume to a server, format and mount it, and safely detach when done.

Resize a volume

Grow a volume online and extend the filesystem without downtime.

Volume backups

Snapshot a volume and restore it to a new volume.

Limits and behavior

  • Maximum size: 5 TB per volume.
  • Minimum size: 10 GB per volume.
  • Region-bound: A volume can only be attached to servers in the same region as the volume.
  • One server at a time: A volume can be attached to a single server; detach before reattaching elsewhere.
  • Delete on Termination: No by default — volumes survive when their attached server is deleted.
  • Data path: Inside the guest the volume appears as /dev/vdb, /dev/vdc, … — the exact path is shown on the volume’s Mount Instructions tab once attached.

Typical workflow

  1. Create the volume in the same region as your server.
  2. Attach the volume to the server — the portal assigns a device path.
  3. Mount it inside the guest (format on first use, then mount and add to /etc/fstab).
  4. Use it — read, write, snapshot.
  5. When you no longer need it, unmount in the guest, detach in the portal, and optionally delete the volume.

Related pages

  • Create a volume
  • Attach and detach a volume
  • Resize a volume
  • Performance tiers