# pw cluster ls

> Source: https://parallelworks.com/docs/cli/pw/cluster/ls

## pw cluster ls

List clusters

```
pw cluster ls [URI] [flags]
```

### Examples

```
  # List all clusters
  pw cluster ls
  
  # List clusters owned by the user "Jake.Thayne"
  pw cluster ls pw://Jake.Thayne
  
  # List a specific cluster by URI
  pw cluster ls pw://Jake.Thayne/my-cluster
  
  # List only clusters you own
  pw cluster ls --owned
  
  # List only provisioned clusters
  pw cluster ls --status=active
  
  # List all clusters, displayed as a table
  # Tables display URI, Provision status, and Type
  pw cluster ls -o table
```

### Options

```
  -h, --help            help for ls
  -o, --output string   Output format (json, table)
      --owned           Show only clusters owned by the authenticated user
      --status string   Filter clusters by status (e.g., active, off, failed). 'on' is accepted as an alias for 'active'.
```

### Options inherited from parent commands

```
      --context string         The context to use. Overrides PW_CONTEXT environment variable and current context from config.
      --platform-host string   The Parallel Works ACTIVATE platform host to use. Will override any other platform host settings.
  -v, --verbose                Enable verbose logging
```

### SEE ALSO

* [pw cluster](/docs/cli/pw/cluster)	 - Manage clusters
