Skip to main content
Sections
Agent-readyHuman guide

Deployment recipes

Common deploy, promote, and rollback flows for agents and humans.

View as Markdown
On this page

Promote staging to production

$yalla deploy --env production --from staging

Roll back a bad deploy

List recent deployments, then roll back to a known-good one. Rollbacks are reversible and audited.

$yalla deployments list --env production
$yalla rollback --to <deployment-id>

Caution: Destroying an environment is irreversible. The CLI requires an explicit confirmation flag before it proceeds.

Related pages