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

# GitOps

> Deployments managed via Git-driven reconciliation (e.g., ArgoCD), with verification and safety checks

<Info>
  **SDD Classification:** L4-Operational | **Authority:** Platform Engineering | **Review Cycle:** Quarterly
</Info>

## Overview

GitOps is the preferred deployment approach: merges to the deployment branch are reconciled into the target environment by the GitOps controller.

## Operational playbook

### Verify application status

```bash theme={null}
argocd app get materi-platform
```

### Sync manually (break-glass)

```bash theme={null}
argocd app sync materi-platform
argocd app wait materi-platform --health
```

## Verification checklist

* Controller reports Healthy/Synced
* Service health endpoints return success
* Dashboards show telemetry flowing
* No crash loops in pods

## Rollback

If the GitOps controller supports it, rollback is a revert of the deployment commit plus reconciliation.

See: /developer/operations/deployment/rollback
