> ## 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.

# vesslctl storage

> View and manage storage backends that host volumes.

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.

```bash theme={null}
vesslctl storage list
```

| Flag            | Short | Description                                                                   |
| --------------- | ----- | ----------------------------------------------------------------------------- |
| `--team-filter` |       | Filter Object storage by team. Cluster storage is always returned unfiltered. |

**Example:**

```bash theme={null}
vesslctl storage list --team-filter ml-team
```

## show

Display detailed information about a storage backend.

```bash theme={null}
vesslctl storage show <slug>
```

| Argument | Description                              |
| -------- | ---------------------------------------- |
| `slug`   | Unique identifier of the storage backend |

## create

Create a new Cluster storage backend.

```bash theme={null}
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:**

```bash theme={null}
vesslctl storage create \
  --name team-storage \
  --cluster betelgeuse-na \
  --capacity 500 \
  --description "Shared storage for ML team"
```

## delete

Delete a storage backend.

```bash theme={null}
vesslctl storage delete <slug>
```

| Flag    | Short | Description              |
| ------- | ----- | ------------------------ |
| `--yes` | `-y`  | Skip confirmation prompt |

**Example:**

```bash theme={null}
vesslctl storage delete clusterstorage-abc123 --yes
```

<Note>
  See [Storage management](/admin/storage/overview) for more details on storage administration, and [Storage pricing](/pricing/storage) for current rates and the 2026-07-01 billing policy.
</Note>
