Continuous Delivery – How to Make Your Pipeline Robust and Efficient?

04 / Dec / 2017 by Nidhi Choudhary 0 comments

Frequent and shorter releases, faster feedback, less risky deployments and resilient systems – do they sound familiar? Well, modern technology companies are focusing and emphasizing on Continuous Integration, Continuous Delivery and Continuous Deployment to improve time to market and get an edge over the competitors.

Continuous delivery is an extension to continuous integration. Companies have started ensuring that the development, operations and testing teams work collaboratively as one delivery team. Apart from focusing on shortening the release cycles, the ultimate goal of a continuous delivery pipeline is to keep the build in a releasable state always. Changes to code should be frequently deployed however in larger projects the risk of deployment is huge and hence, it is advisable to divide the process into smaller versions. The simplest way to ensure limiting errors is by having one-click rollback at a place. More and more companies are leveraging DevOps automation to release often and faster.

“Continuous delivery is software development discipline where you build software in such a way that the software can be release to production at any time” – Martin Fowler

According to one of the reports by Perforce, below are the benefits of continuous delivery:

Benefits-of-CD

Source: www.perforce.com

Companies like Netflix, New York Stock Exchange, Samsung or Salesforce.com automate continuous delivery to provide break free experience to customers and improve the build quality. However, many other companies that aspire to leverage DevOps are still figuring a way to fix bugs quickly, roll out features faster and ensure continuous improvement in the build. Continuous delivery can not only help them to achieve this but also prevent risky deployments and in long run make their infrastructure more resilient.

More frequently, some companies resolve their doubts through DevOps consulting, but some others still have the confusion about how to make their delivery pipeline robust? In this blog, we will uncover the ways to make your pipeline efficient and robust.

(A.) Monitor the Build Quality in the pipeline

Quality of build is extremely important in the entire continuous delivery pipeline and technology team should ensure that before a new feature is released to production, the build passes through a series of tests. The team ensures that most bugs get resolved before the code is pushed to mainline. Moreover, all the concerned build owners are informed about the location of the latest build by sharing a common repository with everyone.

  • How is the series of tests conducted for early validation?

Regular code commits to mainline code might just be a regular task for the development team, but ensuring regular/continuous testing of such code to eliminate bugs is more often neglected. There are series of tests that are a part of test deployment pipeline which the QA team needs to take into account.

Following are some tests that are conducted:

These tests are conducted until the time the release is bug-free and risk is completely eliminated. Most test deployment pipelines blend with parallelization to ensure that the time taken from check-in to release is reduced. In a good CD pipeline, the tasks are divided into smaller parts such as unit test, acceptance test, code lint and integration tests and these tasks can very well run in parallel to each other. Running a task in parallel helps to minimize the feedback process. With more and more companies leveraging Agile methodologies, quick feedback and early validation are vital.

Continuous feedback after every build helps development team to identify the areas of concern and make the necessary changes faster. Moreover, resolving bugs early in the pipeline ensures preventing failures at the later stage when the build is ready to move and release.

Here is the below diagrammatic representation of the process:

Source: technology.amis.nl

Source: technology.amis.nl

(B.) One artifact one environment:

Ensure that the fully tested and approved artifacts are deployed to production. It is important to place artifacts correctly so as to avoid the risk of moving a wrong artifact to production. A rule of thumb is to create artifacts at the initial stage of the build and then continue testing these artifacts across environments until it reaches pre-production stage. While deploying to production, avoid building new artifacts and use the artifacts that are existing in the pre-production environment.   Storing the artifact is one more thing that needs to be taken into account Artifacts that are yet to be tested should be stored at a different location viz. a viz. those that are tested and ready to be deployed. Ensure appropriate tagging for easy reference. There are multiple DevOps tools available for creating artifact repositories such as :

  1. Nexus
  2. Jenkins
  3. JFrog
  4. Docker
  5. Archiva

(C.) Ensure Build, Test and Deployment Automation

Pipeline automation is inevitable when most companies want to reach out to market faster. Companies have started leveraging leading DevOps tools such as Spinnaker, Jenkins, TravisCI, BitBucket, CircleCI and Bamboo to automate build, testing and deployment across environments. This enables faster releases.

Organizations realize that Continuous Delivery is one of the mission-critical business drivers across industries. While many companies have successfully adopted CD, many others are assessing the technology, process and culture change required to adopt CD efficiently. If organizations are able to build competencies and get accurate DevOps consulting, it will make the transition swift. Faster time to market, better quality of the product, competitive advantage and higher customer satisfaction with reduced cost of development are just a few of the many benefits companies can easily avail by adopting CD.

FOUND THIS USEFUL? SHARE IT

Leave a Reply

Your email address will not be published. Required fields are marked *