no similar
OrbitNova · Platform

OrbitNova CLI

A powerful command-line interface to manage your instances, networks, storage and deployments — built for speed, automation and developer productivity.

Get started
240+
Available commands
1.4s
Average deploy time
macOS · Linux · Win
Platform support

Everything from one terminal.

The CLI gives you full control over your OrbitNova infrastructure without ever leaving your workflow.

Instance Management

Spin up, scale, snapshot and terminate instances with a single command. Full lifecycle control — list, create, stop, restart, delete and SSH into any instance directly from your terminal. Supports both KVM-based virtual machines and LXD system containers, giving you identical bare-metal performance for container workloads alongside full VM isolation when you need a different kernel or OS. Live migration, stateful snapshots and flexible resource limits (CPU, memory, disk, network I/O) are available for every instance type.

Core
📦

LXD Containers & VMs

Powered by Canonical LXD, OrbitNova instances run as lightweight system containers (LXC-based, sharing the host kernel for near-zero overhead) or as fully isolated KVM/QEMU virtual machines — both managed through a single unified CLI. Spin up any supported Linux distribution or Windows VM image in seconds from built-in image stores. Cluster up to 50 servers into a single unified pool with thousands of instances, all governed by the same distributed database. Hardware passthrough (GPU, USB, NIC, disk), OVN advanced networking, SR-IOV, UEFI SecureBoot and vTPM are all supported out of the box.

Virtualization
🚀

Quick Deployments

Push to any environment in seconds. Blue-green, canary and rolling deployment strategies are all built in with zero additional configuration required.

Core
🔍

Debug & Monitoring

Live log streaming, metrics inspection and diagnostic tools — everything accessible without leaving the terminal. Filter by level, keyword, regex or time range.

Observability
🔐

Secrets & Config

Manage environment variables and secrets securely across all environments. Values are encrypted at rest and never exposed in logs or command history.

Security
🌐

Network Control

Configure VPCs, subnets, security groups and load balancers with clean, declarative network commands. Full control over ingress, egress and routing rules.

Networking
🔄

CI/CD Integration

Native plugins for GitHub Actions, GitLab CI and Jenkins. Automate your entire pipeline with a single CLI call inside any workflow step.

Automation

Up and running in minutes.

Four steps from installation to your first successful deployment.

01

Install the CLI

One command via npm, Homebrew or direct binary download.

npm install -g @orbitnova/cli
02

Authenticate

Connect your account securely with a single login command.

orbitnova login
03

Link a project

Initialize inside your repository and select or create a project.

orbitnova init
04

Deploy

You're live. Deploy to any environment in under two seconds.

orbitnova deploy --env prod

Core commands.

The most-used commands. Full reference available in the documentation.

Commands
$ orbitnova instance --help
Usage
orbitnova instance [command] [flags]

Commands
list List all instances in your project
create Launch a new compute instance
stop Stop a running instance
restart Restart an existing instance
delete Permanently terminate an instance
ssh Open an SSH session into an instance

Flags
--region Target region (e.g. us-east-1)
--json Output response as JSON
--quiet Suppress non-essential output

Start using the CLI today.

Available on macOS, Linux and Windows. No runtime dependencies required — just install and go.

macOS Linux Windows npm Homebrew
~ npm install -g @orbitnova/cli
# Installing OrbitNova CLI...
✓ Installed [email protected]

~ orbitnova login
✓ Authenticated as [email protected]

~ orbitnova lxd launch container --image ubuntu:24.04 --cpu 2 --memory 4GB
# Launching LXD system container...
✓ Container ready in 0.8s

~ orbitnova deploy --env prod
# Deploying to production...
✓ Deployed successfully in 1.4s

~