Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Role of Configuration Management in DevOps

Learn the principles and examples around the comprehensive configuration management for DevOps. These principlies will help you develope software as quickly as possible.

Jan 10, 2019 • 14 Minute Read

Introduction

DevOps has several components that must work in unison for a team to meet its objectives. A key element, which usually serves as the center of the DevOps "machinery," is configuration management.

What Is Configuration Management?

Configuration management represents the one true source of the configuration items. A configuration item is anything that can be configured and that is absolutely necessary for the success of your project. For example, source codes, property files, binaries, servers, and tools can all be configuration items for a software firm.

In fact, the term configuration management means something or another in most industries. If you pick the automotive industry, for example, configuration management could refer to the configuration of the assembly line machines that are instrumental to manufacturing. Another configuration item could be the inventory of various automobile parts, as this would be configured early on in the development process.

In software development and management, configuration management refers to the items that need to be configured and managed in order for the project to be successful.

Configuration management, however, can have many connotations, depending on who's discussing it. Most people in the software development industry refer to the source code management alone as configuration management. But, there is a whole lot more to configuration than managing source codes when it comes to DevOps. This article discusses configuration management end-to-end and studies its role in DevOps.

The Process of Configuration

The configuration management process takes into consideration the following broad-set activities:

  1. Configuration identification — The configuration that needs to be maintained must first be identified. It can either be a manual process, such as maintaining the source code on a common repository or using discovery tools to automatically identify the configuration.

  2. Configuration control — Once the configuration items are identified, there is no guarantee that it will remain unchanged. In all probability, the configuration is likely to change. Thus, there needs to be an effective mechanism to control the changes that go into the configuration management system. In most configuration management frameworks, the change management process acts as a guardian for controlling the changes to the configuration management system.

  3. Configuration audit — Despite there being control mechanisms protecting against changes in configuration, means of bypassing exist. Therefore, configuration audits are necessary to keep an eye on configuration compliance.

Configuration Management in DevOps

DevOps spans across software development and operations phases. Therefore, it is only fitting that configuration management spans across both the areas.

To define configuration management in DevOps, the inspiration comes from the book Continuous Delivery: Reliable Software Releases Through Build, Test, and Deployment Automation, authored by Jez Humble and David Farley.

Configuration management in DevOps is coined as "comprehensive configuration management" and is made up of

  1. Source Code Repository — Used primarily during the development phase.
  2. Artifact Repository — Used during the development and operations phases.
  3. Configuration Management Database — Used during the development and operations phases.

Figure 1: Comprehensive Configuration Management

Source Code Repository

A source code repository is the primary container for all versions of code. Apart from keeping all the code, it generally stores test scripts, build scripts, deployment scripts, and configuration files as well.

Some projects also leverage a source code repo to store binaries. However, this is not recommended because, depending on the number of builds, there can be numerous binaries and they need to be stored in a different manner. I will discuss this when talking about Artifact Repositories.

So, what can be stored in a source code repository? Simply put, anything that is a human readable goes into the source code repository. Software binaries are not human readable, so they get omitted. Test scripts, actual code, and config files are all readable (and usable) by humans, so they are included.

Types of Source Code Repositories

Not all source code repositories are the same. The times have changed and so has the technology. The source code repository technology of yesteryear is the Centralized Version Control System (CVCS). However, many software development projects still utilize this somewhat antiquated technology.

The concept around CVCS is that the source code resides in a central server. The code needs to be checked out, changes committed, and checked back into the repository. All these activities are performed directly onto the central repository.

The source code repository technology of today is Distributed Version Control System (DVCS). The source code in this technology not only resides on a central server but also on all terminals used for development. In other words, every developer will have the entire source code repository on his or her workstation. Any merge or change is performed locally and usually seamlessly.

Benefits of DVCS Over CVCS

The greatest advantage of DVCS over CVCS is its availability. For DVCS to function, you don’t need an active network connection, but for CVCS it is absolutely necessary. If server access is blocked, development comes to a complete standstill. Thus, CVCS has a single point of failure (SPOF), something that goes against the principles of DevOps, which emphasizes incessant development and maximum efficiency.

Since source code is available locally in DVCS, accessing, merging, and pushing the code is much faster, relative to CVCS.

DVCS also enables software developers to exchange code with other developers before pushing it to the central server and, consequently, to all other developers.

In fact, there are no notable disadvantages with DVCS other than perhaps the storage needs on a developer’s terminal if source code contains an elongated history of changesets.

Toolsets for Managing Source Code

There are a number of source code repos available off-the-shelf, today. Git's repo system as well as Mercurial are key DVCS technologies. Git is perhaps the most popular VCS platform, likely owing to its flexibility in allowing multiple simultaneous changes. (No more check-out and check-in by individual developers.)

The Git software can either be used on premises or hosted on public clouds under various guises (i.e. Bitbucket, Github, and Gitlib.)

Meanwhile, some CVCS source code repositories still in vogue include Subversion and CVS.

Given the rise of DVCS and its abundant advantages, organizations have made a push to migrate CVCS toolsets to DVCS.

Artifact Repository

An artifact repository is a database for storing binaries. Additionally, test data and libraries can be stored on it as well. Whereas a source code repository is meant to store human readable files, an artifact repository stores machine files.

Continuous Integration

Principles of Continuous Integration encourage developers to push code to the main line frequently. Each push triggers a build, which results in a binary getting generated. Depending on the size of the project, the artifact repo could end with thousands of binaries.

Management of Artifacts

Binary management can be cumbersome; with thousands of binaries, which one should the release manager choose to push into production? Believe me, this is an undesirable task. To the release manager's aid, an artifact repository helps big time.

How? The artifact repo comes with two logical partitions for storing and managing binaries:

  1. Snapshot
  2. Release

Every time a build is successfully run, the binary that gets generated is stored in the Snapshot repository. But not all of them get pushed into production unless the project adopts the Continuous Deployment methodology. The binary that gets pushed into the production is first moved into the Release partition before getting deployed into production. (See Figure 2.)

Figure 2: Artifact Repository

The figure demonstrates that various binaries are generated every time the build is successful. The binaries in this example are named as Binary 0.x, and are stored in the Snapshot partition. Not every binary gets promoted into production.

The binaries that are promoted get moved into the Release partition from the Snapshot partition. Examples: Binary 0.3 and Binary 0.5.

This is key to the release management process. Let’s say that the Binary 0.5 is deployed into production and the deployment fails. As a fallback step, the deployment must roll back to the previous version.

The previous binary versions used are stored in the Release partition, making planning and executing releases efficient.

Without a logical partition, imagine the planning and effort it would take to identify the previous version in production and roll it back.

Configuration Management Database

The Configuration Management Database (CMDB) comes from the Information Technology Infrastructure Library (ITIL) service management framework. The CMDB is a repository of various infrastructure devices, applications, databases, and services. Not just an inventory, it also bears relationships between the various elements within the CMDB, as illustrated in Figure 3.

Figure 3: CMDB Illustration

In the figure above, services, applications, databases, and servers are represented by the different colored boxes. In the illustration, Service 1 depends on Application A, as seen by the arrow relationship. Application A leverages on Database 1. Both the Application A and Database 1 reside on Server A.

In a real CMDB, however, the arrows mean something different from the relationships as described. For example, an application generally makes use of a database — this is the relationship between the two entities. An application residing on a server leads to a dependent on relationship. The relationship around data flow between applications (indicated between Application B and Application C) is one of data dependency.

CMDB for Change Management

The CMDB is particularly useful when you are trying to make a change to any of the applications, databases or servers.

Let’s say you want to make a change to Application B. To make the change, you must first do an impact assessment. CMDB helps in performing impact assessments. In the illustration, suppose changes are done to Application B. The impact assessment will read that any changes done to Application B will impact Application C, as the data is flowing through it.

Today, software development seldom happens in isolation. The software to be developed is either an improvement over existing code or is getting plugged into an enterprise network of applications. Therefore, it is critical that the impacts are assessed to the tee and CMDB is a significant help in this area.

CMDB for Provisioning Environments

Another application of CMDB in DevOps is in environment provisioning. Today we can spin up environments on the go with tools like Ansible in our scripts. When you key in the exact configuration of the production server, the environment provisioning tools create a prod-like server in a snap of a finger.

But how is it that you are going to obtain the complete configuration of a server? The most straightforward way is to refer to a CMDB.

Let’s say Server C is a production server that needs to be replicated. In the CMDB, the server C entry will provide the complete configuration of the server, which is an immense help in scripting provisioning scripts such as Playbooks (compatible with Ansible.)

CMDB for Incident Management

The CMDB also has other benefits such as supporting the incident management teams during incident resolutions. The CMDB readily provides the architecture of applications and infrastructure, which is used to troubleshoot and identify the cause of the issue.

DevOps Starts and Ends with Configuration

Yes, it is true that you cannot really do DevOps without configuration management in place. I have shared the principles and examples around the comprehensive configuration management, without which the artifacts and other useful information will be all over the place, in a disorganized manner.

Remember the objective of DevOps — developing software as quickly as possible. This objective can only be done through proper organization and planning. Comprehensive configuration management gives you sufficient ammo to power up the DevOps machine.

For this reason, configuration management professionals are in great demand. As a solution architect in configuration management, I don’t claim to know it all; every project throws new challenges in my direction, thus heralding new findings and learnings. For me, this is the beauty of configuration management.

Abhinav Kaiser

Abhinav K.

is a veteran in service and in project managements. He advises businesses, organizations and enterprises on how to build service management framework and deliver value. He is currently penning a book on communication in organizations, specifically aimed at IT departments. He holds PMP, ITIL© V3 Expert and Cobit 5.0 certifications and is an accredited ITIL© trainer.

More about this author