Documentation Index
Fetch the complete documentation index at: https://docs.cloud.vessl.ai/llms.txt
Use this file to discover all available pages before exploring further.
The storage command lets you manage storage backends in your VESSL Cloud organization. Storage backends are the underlying infrastructure (for example, GCS buckets, NFS mounts) where volumes are created.
list
List all storage backends available in your organization.
| Flag | Short | Description |
|---|
--team-filter | | Filter Object storage by team. Cluster storage is always returned unfiltered. |
Example:
vesslctl storage list --team-filter ml-team
show
Display detailed information about a storage backend.
vesslctl storage show <slug>
| Argument | Description |
|---|
slug | Unique identifier of the storage backend |
create
Create a new Cluster storage backend.
vesslctl storage create --name <name> --cluster <slug> --capacity <gib>
| Flag | Required | Description |
|---|
--name | Yes | Storage name |
--cluster | Yes | Cluster slug to create the storage on |
--capacity | Yes | Capacity in GiB |
--description | No | Storage description |
Example:
vesslctl storage create \
--name team-storage \
--cluster betelgeuse-na \
--capacity 500 \
--description "Shared storage for ML team"
delete
Delete a storage backend.
vesslctl storage delete <slug>
| Flag | Short | Description |
|---|
--yes | -y | Skip confirmation prompt |
Example:
vesslctl storage delete clusterstorage-abc123 --yes