Skip to main content

Commands Reference

This page documents all available Chamber CLI commands and their options.

Global Flags

These flags are available on all commands:

AI Chat

chamber chat

Ask questions about your GPU infrastructure using natural language. The assistant can also suggest and execute CLI commands on your behalf with confirmation. See AI Assistant for the complete guide.
Chat requires browser-based login (chamber login). API tokens (--token) are not supported for chat.

Authentication

chamber login

Authenticate with Chamber.

chamber logout

Remove stored credentials.

chamber whoami

Display current user information.
Example output:

Run (Auto-Containerize)

The run command automatically containerizes and submits your training code. See Auto-Containerize with Run for complete documentation.

chamber run

Auto-containerize and submit a GPU workload.
Use --dry-run to preview the generated Dockerfile and manifest before submitting.
Prerequisites: Docker, AWS CLI (for ECR). See Auto-Containerize with Run for setup instructions.

Workloads

Manage GPU workloads. Aliases: wl, jobs

chamber workloads list

List workloads with optional filters.
Example output:

chamber workloads get

Get detailed information about a specific workload.
Example output:

chamber workloads stats

Get aggregated workload statistics.

chamber workloads metrics

Get GPU metrics for a running workload.
Example output:

chamber workloads cancel

Cancel a running or queued workload.

Submit Workloads

chamber submit

Submit a new GPU workload.
Use --class RESERVED for guaranteed capacity that won’t be preempted. Use --class ELASTIC for lower-priority workloads that can run on spare capacity.

Capacity

chamber capacity

View capacity pools and budget information.
Example output:

Teams

Manage teams. Aliases: team, initiatives

chamber teams list

List all teams you have access to.
Example output:

chamber teams get

Get detailed information about a specific team.

chamber teams create

Create a new team or sub-team.
Creating root-level teams requires ORG_ADMIN permissions. Sub-teams can be created by team members.

Allocations

Manage capacity allocations for teams. Aliases: alloc

chamber allocations list

List allocations for a team.
Example output:

chamber allocations get

Get detailed information about a specific allocation.

chamber allocations create

Create a new allocation for a team. Requires ORG_ADMIN permissions.

Templates

Manage reusable workload templates. Aliases: template, tpl

chamber templates list

List available templates.
Example output:

chamber templates get

Get detailed information about a specific template.

Artifacts (Container Images)

Manage container images and artifact repositories. Aliases: artifact, images Chamber supports multiple registry types:
  • Doogle - Doogle Artifact Repository (default, managed by Chamber)
  • ECR - AWS Elastic Container Registry
  • GCR - Google Container Registry
  • ACR - Azure Container Registry

chamber artifacts repos list

List artifact repositories in your organization.
Example output:

chamber artifacts repos get

Get detailed information about a specific repository.

chamber artifacts repos create

Create a new artifact repository.
Use Doogle Artifact Repository for a fully managed experience with no additional cloud setup required.

chamber artifacts repos delete

Delete an artifact repository.
This will delete all images in the repository. This action cannot be undone.

chamber artifacts list

List container images in a repository.
Example output:

chamber artifacts get

Get detailed information about a specific artifact (image).

chamber artifacts delete

Delete an artifact (image) from a repository.

chamber artifacts login

Get Docker login credentials for pushing/pulling images.
Example output:

Metrics

chamber metrics

View organization-wide GPU metrics.

Configuration

chamber config show

Display current configuration.

chamber config get

Get a specific configuration value.

chamber config set

Set a configuration value.

System

chamber health

Check API health status.

chamber completion

Generate shell completion scripts.

JSON Output

All commands support -o json for machine-readable output:
Early Access — The Chamber CLI is currently in early access. Contact support@usechamber.io to get started.