Quick Notes89 words
Reliably ordered dependency deployments — quick notes
Ordered dependencies — quick notes
| Need | Mechanism |
|---|---|
| Order stages | dependsOn (stages are sequential by default anyway) |
| Wait for several | dependsOn: [A, B] — all must finish |
| Require success | condition: succeeded() (implicit) |
| Prove healthy, not just finished | postRouteTraffic health checks |
| Gate on an external signal | Invoke REST API / Query Azure Monitor alerts checks |
Trap: a completed stage ≠ a healthy dependency. Exit code zero is not a health check.