0 votes
in Interview Question by

What's the difference between a blue/green deployment and a rolling deployment?

  • In Blue Green Deployment, you have TWO complete environments. One is Blue environment which is running and the Green environment to which you want to upgrade. Once you swap the environment from blue to green, the traffic is directed to your new green environment. You can delete or save your old blue environment for backup until the green environment is stable.

  • In Rolling Deployment, you have only ONE complete environment. The code is deployed in the subset of instances of the same environment and moves to another subset after completion.

Related questions

0 votes
asked May 23, 2019 in Interview Question by rajeshsharma
0 votes
asked May 22, 2019 in Interview Question by Robindeniel
...