Skip to content

Pax8 CTA CLI 0.1.0

Choose a tag to compare

@github-actions github-actions released this 04 Jun 20:54

Pax8 CTA CLI 0.1.0

Standalone binary releases for the Pax8 CTA CLI.

Installation

macOS

# Apple Silicon (M1/M2/M3)
curl -fsSL https://github.com/pax8labs/pax8-cta/releases/download/cli-v0.1.0/pax8-cta-macos-arm64 -o pax8-cta
chmod +x pax8-cta
sudo mv pax8-cta /usr/local/bin/

# Intel
curl -fsSL https://github.com/pax8labs/pax8-cta/releases/download/cli-v0.1.0/pax8-cta-macos-x64 -o pax8-cta
chmod +x pax8-cta
sudo mv pax8-cta /usr/local/bin/

Linux

# x64
curl -fsSL https://github.com/pax8labs/pax8-cta/releases/download/cli-v0.1.0/pax8-cta-linux-x64 -o pax8-cta
chmod +x pax8-cta
sudo mv pax8-cta /usr/local/bin/

# ARM64
curl -fsSL https://github.com/pax8labs/pax8-cta/releases/download/cli-v0.1.0/pax8-cta-linux-arm64 -o pax8-cta
chmod +x pax8-cta
sudo mv pax8-cta /usr/local/bin/

Windows

# One-line install (PowerShell)
irm https://raw.githubusercontent.com/pax8labs/pax8-cta/main/install.ps1 | iex

# Or download manually

Download pax8-cta-windows-x64.exe and add to your PATH.

Verify Installation

pax8-cta --version
pax8-cta --help

Usage

# Deploy agents to all tenants
pax8-cta deploy --all --solution ./myagent.zip

# Deploy to specific tenants by tag
pax8-cta deploy --tag production --solution ./myagent.zip

# View deployment status
pax8-cta deployments show <deployment-id>

# List tenants
pax8-cta tenants list

# Get help
pax8-cta --help
pax8-cta deploy --help

Checksums

SHA256 checksums are provided for each binary. Verify with:

sha256sum -c pax8-cta-*.sha256