Skip to content

computer

Manage the virtual machines (computers) in your project.


list

List all computers in the active project.

konigle cloud computer list

Example output

NAME                 SIZE   REGION       STATUS
----------------------------------------------------
my-server            S      singapore    ready

create

Provision a new computer. The CLI waits for the VM to be ready before returning (usually 2–3 minutes).

konigle cloud computer create \
  --display-name "My Server" \
  --size S \
  --region singapore

Options

Option Required Description
--display-name Yes Human-readable label for the computer
--size Yes VM size: S (2 GB / 1 vCPU), M (4 GB / 2 vCPU), L (8 GB / 4 vCPU)
--region Yes Region slug, e.g. singapore
--name No Slug name used in CLI commands. Auto-generated from --display-name if omitted
--emoji No Optional emoji avatar shown in listings
--detach, -d No Print the job ID and exit without waiting

Example output

Provisioning computer "my-server"... (job: abc-123)
Waiting (Ctrl-C to detach)...
Computer "my-server" is ready.

Detaching and resuming

Press Ctrl-C during the wait or pass --detach to exit without waiting. The provisioning continues on the server. Check progress with:

konigle cloud job status <job-id>