Skip to content

Get enterprise-grade support and services for OpenEverest from certified partners, or join community.

Install everestctl

Not available in this release

everestctl is not available in the v2.0.0-dev.1 developer preview. Please use the Helm-based installation instead.

You can download the latest version of everestctl visiting the latest release page in this repository.

The simplest way to install everestctl on macOS or Linux is via Homebrew. This works on both Apple Silicon and Intel CPUs.

  1. Add the OpenEverest tap:

    brew tap openeverest/tap
    
  2. Install everestctl:

    brew install everestctl
    

To install everestctl on Linux or WSL, run the following commands:

  1. Download the latest version of everestctl.

    curl -sSL -o everestctl-linux-amd64 https://github.com/openeverest/openeverest/releases/latest/download/everestctl-linux-amd64
    
  2. Install everestctl binary to /usr/local/bin/.

    sudo install -m 555 everestctl-linux-amd64 /usr/local/bin/everestctl
    
  3. Remove everestctl binary to clean up.

    rm everestctl-linux-amd64
    

To install everestctl on macOS with Apple Silicon, run the following commands:

  1. Download the latest version of everestctl for Apple Silicon.

    curl -sSL -o everestctl-darwin-arm64 https://github.com/openeverest/openeverest/releases/latest/download/everestctl-darwin-arm64
    
  2. Install everestctl binary to /usr/local/bin/.

    sudo install -m 555 everestctl-darwin-arm64 /usr/local/bin/everestctl
    
  3. Remove everestctl binary to clean up

    rm everestctl-darwin-arm64
    

To install everestctl on macOS with an Intel CPU, run the following commands:

  1. Download the latest version of everestctl for Intel CPUs.

    curl -sSL -o everestctl-darwin-amd64 https://github.com/openeverest/openeverest/releases/latest/download/everestctl-darwin-amd64
    
  2. Install everestctl binary to /usr/local/bin/.

    sudo install -m 555 everestctl-darwin-amd64 /usr/local/bin/everestctl
    
  3. Remove everestctl to clean up.

    rm everestctl-darwin-amd64
    

Next steps

Start by installing OpenEverest:

Install OpenEverest