CLI
oblien ws
Alias: oblien workspaces
Commands
oblien ws create
Create a new workspace.
oblien ws create --image node-20 --name my-app --cpus 2 --memory 2048| Flag | Description |
|---|---|
--image <image> | Base image (e.g., node-20, python-3, ubuntu) |
--name <name> | Workspace name |
--cpus <n> | CPU cores |
--memory <mb> | Memory in MB |
--disk <mb> | Disk in MB |
--mode <mode> | permanent or temporary |
--namespace <ns> | Namespace |
--type <type> | Workspace type |
oblien ws list
List workspaces with optional filtering.
oblien ws list
oblien ws list --status running --limit 10
oblien ws list --json| Flag | Description |
|---|---|
--status <s> | Filter by status (running, stopped, etc.) |
--limit <n> | Max results |
--offset <n> | Pagination offset |
--search <q> | Search by name |
oblien ws get
Get workspace details.
oblien ws get ws_abc123oblien ws update
Update workspace properties.
oblien ws update ws_abc123 --name new-nameoblien ws delete
Delete a workspace.
oblien ws delete ws_abc123oblien ws start / stop / restart / pause / resume
Power management commands.
oblien ws start ws_abc123
oblien ws stop ws_abc123
oblien ws restart ws_abc123
oblien ws pause ws_abc123
oblien ws resume ws_abc123oblien ws ping
Keep-alive ping to renew TTL for temporary workspaces.
oblien ws ping ws_abc123
oblien ws ping ws_abc123 --ttl 3600000oblien ws quota
Show your resource quota.
oblien ws quotaoblien ws estimate
Estimate cost for a workspace configuration.
oblien ws estimate --image node-20 --cpus 2 --memory 2048oblien ws health
Check runtime health status.
oblien ws health ws_abc123oblien ws details
Get aggregated workspace details (network, SSH, lifecycle, etc.).
oblien ws details ws_abc123oblien ws resources
Get or update workspace resources.
# Get current resources
oblien ws resources ws_abc123
# Update resources
oblien ws resources ws_abc123 --cpus 4 --memory 4096
# Partial update
oblien ws resources ws_abc123 --patch --cpus 4