Source: medium.com

What Is Canary Deployment?

Category: Software, Database, Cloud, Kubernetes, Docker

In another post, we talked about blue-green deployments. In this one, we’ll learn about another deployment strategy, which shares the same advantages but is less risky and often leads to better insights.Continuous integration has changed the way we develop software.

As in rolling deployments, we monitor the canary while we gradually migrate more and more users away from the control version.

This platform is ideal for canary deployments as it allows us to deploy, update, and scale applications using only code.

There are some cases in which we won’t be able to use the strategy: We’ve discussed the benefits and drawbacks of blue-green deployments in a previous post.

Related Articles