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

Technology CommunityCategory: DevOpsWhat’s the difference between a blue/green deployment and a rolling deployment?
VietMX Staff asked 3 years ago
  • 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.