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.
Available Packages
Platform Format Filename Use Case Docker containermaverics_container.zipContainer-based deployments Red Hat / RHEL rpmmaverics_rpm.zipRPM-based Linux distributions Ubuntu / Debian debmaverics_deb.zipDEB-based Linux distributions Windows msimaverics_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.
Related Pages
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