Skip to main content
Orchestrator assets can be downloaded programmatically from Strata’s JFrog Artifactory instance for use in CI/CD pipelines and automated provisioning workflows. This is useful when you need to script Orchestrator installation as part of infrastructure automation rather than downloading manually from the Console.
Contact support@strata.io to obtain a bearer token for Artifactory access.

Available Packages

PlatformFormatFilenameUse Case
Dockercontainermaverics_container.zipContainer-based deployments
Red Hat / RHELrpmmaverics_rpm.zipRPM-based Linux distributions
Ubuntu / Debiandebmaverics_deb.zipDEB-based Linux distributions
Windowsmsimaverics_msi.zipWindows Server deployments

Container

curl -H "Authorization: Bearer {BEARER_TOKEN}" \
  -L -O \
  "https://strataidentity.jfrog.io/artifactory/mav-maverics/orchestrator-install/maverics/container/releases/latest/maverics_container.zip"

RPM (Red Hat / RHEL)

curl -H "Authorization: Bearer {BEARER_TOKEN}" \
  -L -O \
  "https://strataidentity.jfrog.io/artifactory/mav-maverics/orchestrator-install/maverics/rpm/releases/latest/maverics_rpm.zip"

DEB (Ubuntu / Debian)

curl -H "Authorization: Bearer {BEARER_TOKEN}" \
  -L -O \
  "https://strataidentity.jfrog.io/artifactory/mav-maverics/orchestrator-install/maverics/deb/releases/latest/maverics_deb.zip"

MSI (Windows)

curl -H "Authorization: Bearer {BEARER_TOKEN}" \
  -L -O \
  "https://strataidentity.jfrog.io/artifactory/mav-maverics/orchestrator-install/maverics/msi/releases/latest/maverics_msi.zip"

CI/CD Example

Below is a GitHub Actions example that downloads and installs the Orchestrator on an Ubuntu runner.
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - name: Download Orchestrator
        run: |
          curl -H "Authorization: Bearer ${{ secrets.ARTIFACTORY_TOKEN }}" \
            -L -O \
            "https://strataidentity.jfrog.io/artifactory/mav-maverics/orchestrator-install/maverics/deb/releases/latest/maverics_deb.zip"

      - name: Install Orchestrator
        run: |
          unzip maverics_deb.zip
          sudo dpkg -i maverics*.deb

      - name: Verify Installation
        run: maverics -version
Store your Artifactory bearer token as a secret in your CI/CD platform. Never hard-code tokens in pipeline definitions or scripts.

Installation Overview

System requirements, evaluation bundles, and platform installers

Linux, macOS & Windows

Platform-specific installation steps after downloading

Docker

Load and run the Orchestrator as a container

Kubernetes (Helm)

Deploy to Kubernetes using the official Strata Helm chart