DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. DevOps and CI/CD
  4. How Docker Is Disrupting Traditional Continuous Delivery

How Docker Is Disrupting Traditional Continuous Delivery

Learn about the evolution of configuration management and continuous deployment tools and how Docker is disrupting the traditional Continuous Delivery scene.

Girish Shilamkar user avatar by
Girish Shilamkar
·
Mar. 31, 17 · Opinion
Like (21)
Save
Tweet
Share
13.15K Views

Join the DZone community and get the full member experience.

Join For Free

The first decade of the 21st century has been an interesting one when you look at the evolution of infrastructure automation and the patterns and practices in continuous integration and delivery. Companies such as Chef (founded 2008) and Puppet Labs (founded 2005) lead the evolution in early phases of infrastructure automation.

Although Jenkins has been around for some time and has been widely used for continuous integration, continuous delivery has picked up a little later. Jez Humble’s book Continuous Delivery, which is like a Bible on the topic, was published in 2010 — and you can clearly see the rise of CD tools around after the same time in the enterprise.

Consider, for example, IBM’s acquisition of the UrbanCode platform in 2013, CA’s acquisition of Nolio in 2013, Xebia Labs' founding in 2008, and so on. This was also the time of the rise of PaaS platforms, albeit with a mixed level of success — CloudFoundry, GAE App Engine, DotCloud, Heroku, and many more organizations and projects that are trying to make software delivery more efficient.

But a parallel development was happening in 2013 that would disrupt all of the players, like IBM and CA — a disruption so fundamental that it would completely alter the way software is developed and deployed.

In case you haven’t guessed it yet, it was the year when Docker was born. Since then, we have come a long way, and containers are an accepted way of deploying applications today. In fact, projects such as Kubernetes, Mesos, and Swarm are leading the evolution and creating new rules to operate containers at scale.

But what happens to configuration management based CD pipelines which used Chef cookbooks/Puppet modules and workflows designed in Nolio? This is the question we are trying to look at in this post.

Evolution of Configuration Management and Continuous Deployment Tools

For deploying any application, two things are fundamentally essential: the application code and the runtime or platform on which to run the application.

The workflow and orchestration of various components were solved by user interface (UI) based or Domain-Specific Language (DSL)-based continuous deployment (CD) tools and underlying infrastructure provisioned by associated configuration management tools.

The infrastructure code is based on some DSL and one would write cookbooks/playbooks for various stacks/runtimes needed for running an application. In a fairly complex enterprise setup, the number of cookbooks needed to setup runtime for a given application can be many.

DevOps: Are We There Yet?

Based on our experience of configuration management projects, what started off as an effort to unify the Development and Operations has not necessarily solved all problems it had aimed to solve. Let’s take some concrete examples.

Managing Dependencies: Now for Infrastructure

Configuration frameworks employ a DSL syntax to write modules, cookbooks, formulas, or runbooks as they are often called. For a fairly complex enterprise, these runbooks would easily run into hundreds, if not more.

Now, to compose an application, you might need more than one runbook — and managing the dependencies and their versions is the new problem at hand.

Some novel solutions like Berkshelf in Chef were implemented to manage dependencies. But this meant another set of tools to be learned and implemented. Naturally, developers had a steep learning curve before they could start contributing runbooks. This also led to some companies creating special “DevOps” teams, which is counter-intuitive to the idea of DevOps and an anti-pattern in itself.

Infrastructure as Code

Writing and debugging infrastructure code is far more different than programming for applications. It may not be fair to call one more difficult than the other but writing infrastructure code has certain challenges. For example lack of mature tooling or need of fine-grained knowledge of underlying infrastructure makes it a tough job to write infrastructure code. Also, the errors dumped by failing dependent application packages are cryptic and you sometimes start to feel like navigating a ship without a map.

And often, setting up the application from scratch is a lot wiser approach than debugging the problem and a quick fix is need of the hour.

No, We Are Not There Yet!

The evolution of infrastructure automation tools did help a great deal in enabling self-serviceable infrastructure but that did not solve the problem of silos.

Specialized knowledge related to infrastructure meant at least a part of the team had to deal with underlying infrastructure.

The problem just shifted from one team to another team and from one way of doing things to another, i.e., DSL for infrastructure automation. For developers, infrastructure still remained an elusive land where you had to know the nuts and bolts to be proficient.

At a fundamental level, the application was still packaged as it was packaged — for example, as a JAR, Gem, or Py package — and the platform was created by a separate tooling and packaging format.

Rise of a Unifying Force: Docker (Containers)

One of the achievements of containers and Docker is the uniform packaging of application and infrastructure needs. Regardless of whether you are running the application locally or on a production cluster, you still have same Docker image.

With Docker, the application is finally self-contained. You can package the application code as well as infrastructure dependency in a simple declarative manner. This also means an easy-to-adopt technology from a developer’s perspective. The container is almost like a golden image but much more light-weight and layered, such that layers can be cached. Once the developer is done, he can simply push the image to a registry. From the operations perspective too, this is a much simpler format – you don’t need long documents or cookbooks that were needed to run container image. All you need is a container image and some metadata like environment variables and that’s about it.

With Docker, a lot of configuration management code is replaced by Docker images and Dockerfiles. This also simplifies application dependency management as there is no point in writing tons of code for application configuration which is hardly going to change.

From an operability perspective, now operations can really focus on building a platform which could run containers and manage the platform. For creating and maintaining the platform you can use configuration management platforms in combination with new platforms meant for containers. This has also given rise to container orchestrators such as Mesos, Kubernetes, Swarm, and container platforms such as Rancher, OpenShift, etc.

Nirvana at Last?

Does that mean by adopting containers we have solved all problems of software delivery? Certainly not. But we have moved a step closer to application portability and self-sustaining CD pipelines that will truly realize the goals of DevOps.

However, there are newer challenges, like how to orchestrate containers on a set of large set of virtual machines. How does one service discover another when a container is ephemeral and can move from one machine to another? How do you manage persistent storage with containers moving around?

I will discuss these areas in detail in the forthcoming parts of this post. Stay tuned!

Docker (software) Continuous Integration/Deployment Kubernetes application Delivery (commerce) Infrastructure Configuration management Domain-Specific Language

Published at DZone with permission of Girish Shilamkar, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Testing Repository Adapters With Hexagonal Architecture
  • Building the Next-Generation Data Lakehouse: 10X Performance
  • Steel Threads Are a Technique That Will Make You a Better Engineer
  • The Power of Zero-Knowledge Proofs: Exploring the New ConsenSys zkEVM

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: