CLI Reference
All commands are subcommands of the orca binary.
Cluster
orca server
Start the control plane, agent, and proxy on this node.
orca server # Foreground
orca server & # Backgroundorca join
Join this node to an existing cluster.
orca join 10.0.0.1 # Join by leader addressorca nodes
List cluster nodes with status and resource usage.
orca nodesorca tui
Launch the terminal dashboard.
orca tuiorca update
Self-update the orca binary.
orca updateServices
orca deploy
Deploy services from services/*/service.toml.
orca deploy # Deploy all discovered servicesorca status
Show service status, replicas, and health.
orca status
orca status --project frontendorca logs
Stream logs from a service.
orca logs api
orca logs api --tail 100orca scale
Scale a service to N replicas.
orca scale api 5orca stop
Stop a service (config is retained).
orca stop apiorca promote
Promote a canary deployment to stable.
orca promote apiorca rollback
Rollback to the previous deployment.
orca rollback apiorca exec
Execute a command inside a running container.
orca exec api -- sh
orca exec api -- cat /etc/hostnameDatabases
orca db create
Create a managed database with auto-generated credentials.
orca db create postgres mydb
orca db create redis cache
orca db create mysql appdb
orca db create mongodb docsorca db list
List database services.
orca db listSecrets
orca secrets set
Store an encrypted secret.
orca secrets set DB_PASS "s3cret"orca secrets list
List secret keys (values are never displayed).
orca secrets listorca secrets import
Bulk import secrets from an .env file.
orca secrets import -f .envOperations
orca backup
Backup volumes and configs.
orca backup create
orca backup all # Backup everything
orca backup list # List backupsorca cleanup
Prune unused Docker resources (images, containers, volumes).
orca cleanuporca token
Manage API tokens.
orca token create --name ci --role deployer
orca token listorca webhooks
Manage git push deploy webhooks.
orca webhooks # List
orca webhooks add --repo org/app --service app --branch mainAI
orca ask
Ask the AI assistant a question with full cluster context.
orca ask "why is the API returning 500s?"
orca ask "which service is using the most memory?"orca generate
Generate service configuration from natural language.
orca generate "deploy redis with 2GB storage"