Blue-Green Deployment - CI/CD Glossary Definition
Blue-green deployment switches traffic between two full environments for instant cutover and rollback.
A blue-green deployment runs two identical environments (blue and green); the new version is deployed to the idle one and traffic is switched over at once, enabling instant rollback.
You deploy and verify the new version on the idle environment, then flip the router; if something breaks you flip back, avoiding the partial-state risk of an in-place update.
Related guides
Rolling Update - CI/CD Glossary DefinitionRolling Update: A rolling update replaces instances of an application in batches, updating a few at a time wh…
Surge (Deployment) - CI/CD Glossary DefinitionSurge (Deployment): Surge in a rolling update is the number or percentage of extra instances allowed above th…
Readiness Gate - CI/CD Glossary DefinitionReadiness Gate: A readiness gate is a condition that must be satisfied before an instance or deployment is co…