CSC/ECE 517 Spring 2015/ch1a 4 RW

From Expertiza_Wiki
Revision as of 00:27, 1 February 2015 by Rkyadav (talk | contribs) (Created page with "<font size="5"><b>Blue-Green Deployment</b></font> Blue-Green deployment is a technique used to reduce risk and delay in continuous integration. It uses an exact copy of product...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Blue-Green Deployment

Blue-Green deployment is a technique used to reduce risk and delay in continuous integration. It uses an exact copy of production environment, where new changes can be deployed and production testing can be done. After running successful tests, we can just point router to this copy and make it production. In case of any error in system after this step, we can roll back by re-pointing router to old application instance. This process reduces the production downtime during migration and expedite any rollback operation in case of error in production to last successful build.

History