Introduction to Continuous Delivery

leena

May 15, 2012

We’ve been doing Continuous Delivery for sometime and also been writing about how to implement the same. This post is about why Continuous Delivery is required and what problems does it solve.

What is Continuous Delivery

Continuous Delivery is the process of being able to continuously deliver new versions of a software product to create a tight feedback loop between users and the project team—including the customer or product owner.

This helps to test new ideas and changes in the product and also measure the effect of changes in the revenue. Continuous Delivery means releasing software very frequently, i.e. multiple times a day, rather than once in months.

Bottlenecks for Continuous Delivery

Lets see the usual challenges for releases. The following are the challenges that we faced before moving to Continuous Delivery. Let me put it in this way i.e. the following are the challenges which got us thinking on how to make releases more predictable and pain free. We already had a Continuous Integration setup at our end, but that was not enough to ease the process.

We’ve seen even more challenges in teams which do not have a Continuous Integration setup yet. They are:

Thats when we stumbled upon ”Continuous Delivery” book by Jez Humble and Dave Farley and extended our Continuous Integration setup to Continuous Delivery.

Continuous Delivery to the rescue

One of the key principle of Continuous Delivery is To create a repeatable and reliable process for releasing software.. It solves problems by providing fast automated feedback on the production readiness of the application - every time there is a change to the code, infrastructure or the configuration. So in Continuous Delivery, Done means Released.

A central pattern of Continuous Delivery is called the Deployment pipeline - an automated implementation of the application’s build, deploy, test and release process. The following shows a sample deployment pipeline:

Deployment Pipeline

The deployment pipeline includes the following build and deployment process:

I will write about the Benefits of Continuous Delivery in the next post.

References