> ## Documentation Index
> Fetch the complete documentation index at: https://docs.strata.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Programmatic Install

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.

<Note>
  Contact [support@strata.io](mailto:support@strata.io) to obtain a bearer token for Artifactory access.
</Note>

## Available Packages

| Platform        | Format      | Filename                 | Use Case                      |
| --------------- | ----------- | ------------------------ | ----------------------------- |
| Docker          | `container` | `maverics_container.zip` | Container-based deployments   |
| Red Hat / RHEL  | `rpm`       | `maverics_rpm.zip`       | RPM-based Linux distributions |
| Ubuntu / Debian | `deb`       | `maverics_deb.zip`       | DEB-based Linux distributions |
| Windows         | `msi`       | `maverics_msi.zip`       | Windows Server deployments    |

### Container

```bash theme={null}
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)

```bash theme={null}
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)

```bash theme={null}
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)

```bash theme={null}
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.

```yaml theme={null}
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
```

<Tip>
  Store your Artifactory bearer token as a secret in your CI/CD platform. Never hard-code tokens in
  pipeline definitions or scripts.
</Tip>

## Related Pages

<CardGroup cols={2}>
  <Card title="Installation Overview" icon="download" href="/reference/orchestrator/installation">
    System requirements, evaluation bundles, and platform installers
  </Card>

  <Card title="Linux, macOS & Windows" icon="desktop" href="/reference/orchestrator/installation/linux-macos-windows">
    Platform-specific installation steps after downloading
  </Card>

  <Card title="Docker" icon="docker" href="/reference/orchestrator/installation/docker">
    Load and run the Orchestrator as a container
  </Card>

  <Card title="Kubernetes (Helm)" icon="dharmachakra" href="/reference/orchestrator/installation/kubernetes">
    Deploy to Kubernetes using the official Strata Helm chart
  </Card>
</CardGroup>
