Using Storage - Cloud UI
Manage Storage Volumes using the CoreWeave Cloud UI
The CoreWeave Cloud UI provides an easy-to-use storage configuration page. To access it, first log in to your CoreWeave Cloud account. Then, from the left-hand menu, navigate to Storage Volumes. To create a new Storage Volume, click the New Volume button in the upper right-hand corner or center of the page.

The Storage Volumes management page
The volume name will be used to refer to and identify the Storage Volume across the Cloud platform. If the new volume is being used for a specific application, it is recommended to create a name that clearly identifies it for that use for the sake of easy association.
The namespace field will be prepopulated with your current tenant namespace name. This cannot be changed from this modal.
The region field specifies in which data center region you'd like the new storage volume to be hosted.
Important
It is strongly recommended that application workloads requiring storage volumes be placed in the same data center region as their associated storage volumes. See Custom Containers for examples, or refer to the Advanced Label Selectors page for more information on scheduling workloads to the same data center region as their storage volumes.
Once a region has been selected, a disk class may be chosen. There are two disk storage classes from which to choose, NVMe and HDD.
Additional Resources
The storage type field determines whether the new storage volume will be a shared filesystem or a block storage device.
Additional Resources
For more information on these disk classes, refer to the "Volume types" portion of the Storage section.
The desired size of the disk is specified in
Gi
. The maximum allotable size for a single storage volume is 30720Gi
.While optional, if it is desired to schedule specific workloads onto certain storage volumes, labels can be very helpful. Kubernetes affinities may be used to select these labels for scheduling workloads appropriately. See the Custom Container guide for examples.
Navigate to Storage to view a list of all available storage volumes. To see more details about a volume, click to expand the volume's detail window.

The detailed view of the storage volume will include its age, its size, how much of it is being used, as well as some important metadata such as all labels associated with the drive, the cost it is currently incurring, its creation date, and its access modes. The volume may also be edited, cloned to create an exact copy of it, or completely deleted from this menu.
Edit the volume to add or remove labels or to expand the volume's capacity.
Warning
Shared File System Volumes are resized online, without disruption to workloads.
Resizing Block Volumes requires stopping or restarting all workloads that are attached the Volume in order for the resize to take effect.

Important
Storage Volumes must be created and provisioned before they can be attached to a Pod or Virtual Server.
When creating a Virtual Server, the option to attach a volume is found under the Attach Volumes section of the Virtual Server creation screen.
To attach a filesystem or block volume, locate the volume in the list provided under the Available volume column. To attach it, click the toggle until it is in the "on" position and says "Attached."

The storage block volume information will be reflected in the YAML editor under the
.filesystems
block.
An example of a mounted filesystem volume reflected
Example in plain text:
filesystems:
- name: test-docker-registry
spec:
persistentVolumeClaim:
claimName: test-docker-registry
mountPoint: /mnt/
Last modified 5d ago