Deployment Strategy Language
Blue-green, rolling, canary, recreate — vocabulary for discussing deployment strategies and trade-offs. Intermediate
0 / 5 completed
1 / 5
A DevOps engineer says: "We're using blue-green deployment — the green environment is currently live."
What happens when the new version is deployed in a blue-green strategy?
Blue-green deployment maintains two identical environments. Only one handles traffic at a time. The cutover is a DNS or load balancer switch — instantaneous for users. Rollback is equally fast: switch back to the previous environment.
| Term | Meaning |
|---|---|
| blue-green cutover | The traffic switch from the old (live) environment to the new (updated) environment |
| zero-downtime deployment | No users experience interruption — traffic switches atomically |
| rollback cost | Very low — just switch traffic back to the previous environment |
| infrastructure cost | Higher — two full environments must be maintained simultaneously |