CLI
Overview

CLI Overview

The Onvera CLI is a command-line tool for managing deployments, operations, and resources on the Onvera platform.

Installation

Install the CLI using the installation script:

curl -fsSL https://onvera-downloads.s3.amazonaws.com/cli/install/install.sh | sh

See the Installation Guide for detailed instructions.

Authentication

Authenticate with Onvera using browser login:

onvera auth login

See the Authentication Guide for all authentication methods.

Commands

Deployment Management

  • deploy - Deploy an application (Airflow or Superset)
  • inspect - View deployment or operation details
  • destroy - Destroy a deployment
  • ls - List all deployments

Operations

  • ops - List and inspect operations

Authentication

  • auth - Manage authentication (login, logout)

Configuration

  • config - Manage CLI configuration

Global Flags

All commands support these global flags:

  • --base-url <url> - Override API base URL
  • --api-key <key> - Provide API key directly
  • --debug - Enable debug logging
  • --json - Output in JSON format

Examples

Deploy Superset:

onvera deploy superset --name "My Superset"

List deployments:

onvera ls

Inspect a deployment:

onvera inspect dep_550e8400-e29b-41d4-a716-446655440000

Get operation status:

onvera ops get op_660e8400-e29b-41d4-a716-446655440001

Next Steps