The Art of DevOps

Whether you’re new to agile development, entirely at home in a DevOps environment or dipping your toe into CI/CD, sometimes it’s worth taking a moment to consider how application development got to where it is today.

The Art of DevOps

written by Roland Balint (DevOps Engineer), in the January 2022 issue of Today Software Magazine.

Read the article in Romanian here

Whether you’re new to agile development, entirely at home in a DevOps environment or dipping your toe into CI/CD, sometimes it’s worth taking a moment to consider how application development got to where it is today.

In the beginning (the ‘80s and ‘90s), the Waterfall method by which the software gets ready to release was the most popular development methodology. This represents a strictly sequential structure in which teams embark on the next development phase only after completing the previous one.

And so, a movement towards a more “lightweight” approach began to gather strength. It culminated in what we now see as the start of agile. In 2001, 17 pioneering software developers met at the now-famous development conference in Snowbird, Utah, giving birth to the Agile Manifesto.

Thus, Agile takes hold, introducing the idea that the team should prepare their software for release throughout the development process. Around the time that agile practices really took hold in business, a new kid on the block was lurking around the corner. Born out of agile but distinct from it, too, DevOps was a new interpretation of what collaborative software development should look like.

While agile brought development and testing together, DevOps argued that other areas of the businesses needed to be part of the process and saw the creation of teams involving non-IT staff, such as product managers. This was quite a cultural shift compared to the traditional development lifecycle of that time. DevOps decided to aim higher, creating an environment where new releases could be delivered faster and more frequently.

While DevOps (a combination of “Development” and “Operations”) promotes a culture/philosophy of team collaboration and work transparency, CI/CD are the main building blocks in any DevOps architecture.

  1. Balance

  2. Movement

  3. Rhythm

  4. Pattern

  5. Contrast

  6. Unity

  7. Emphasis

1. Balance - Faster and Cleaner Deployment Process

Using fully automated procedures, DevOps provides faster and cleaner deployment processes during the application's entire lifecycle. It all starts with a simple commit, where the developer wants to test or roll out new changes in the source code. A DevOps engineer chooses a tool from the DevOps tool stack and configures it in such a way that the developer's commit triggers the build and deployment stage of any given application.

Adopting this approach, we eliminate the need for manual intervention in two of the most important parts of an application's lifecycle, leading to faster and cleaner deployments.

TSM-January-2022-issue-1-1.png

2. Movement - From Continuous Integration to Continuous Delivery/ Continuous Deployment

CI/CD focuses on the automation of building, testing, and deploying by properly setting up a CI/CD pipeline with the appropriate tools. When we talk about continuous integration & delivery (CI/CD), it's really just another extension of agile that focuses mainly on the tools and processes needed to integrate smaller chunks of code into the core code quickly, using automated testing, and to deliver continuous updates that in turn enable faster application development.

Benefits of CI/CD:

  • Deliver software with less risk

  • Release new features more frequently

  • Deliver the product that users need

  • Improves team productivity

Imagine you're building a web application which is going to be deployed on live web servers. You have a team of developers responsible for writing code and pushing it into a version control system. This, together with the continuous administration of various elements of an application, constitutes the process of Continuous Integration.

Now that we covered Continuous Integration, let’s dip our toes into the meaning behind Continuous Delivery/Deployment (CD).

Continuous Delivery/Deployment came as a natural extension to CI, meaning that every integration done by the development team will automatically trigger a deployment. This approach guarantees that the exact same steps will be executed during every run of the respective deployment, minimizing the need for human intervention, and consequently drastically reducing the deployment time.

CI & CD are fundamental concepts in today’s fast-moving world. In today’s world software is being developed and improved at a never before seen pace, and without concepts like Agile or CI & CD this would be near impossible to achieve.

3. Rhythm – Processing Time of a Deployment. Then vs Now.

The processing time of an application’s deployment depends on a handful of factors which can include: the size of the application, extent of automatic test executions, hardening & patching, report generation, available hardware resources, etc.

Each of the processes mentioned above (and more) can represent a step in any application’s deployment process, and thus it can extend its execution time. It all depends on how the deployment pipeline is set up and how many steps it needs to execute.

If we would compare the time it takes for a deployment pipeline to automatically execute vs how much it would take an IT professional to run the same steps manually, we would undoubtedly conclude that the automatic process execution is faster and more reliable.

A pipeline can execute the same steps hundreds of times, having the same outcome; when we add manual intervention to that process, sooner or later the IT professional would miss some steps, attribute wrong values to key variables, or maybe forget some vital test executions. All these could add up to long debugging sessions, involve different people trying to find a solution, which in turn delays the deployment and requires more resources.

Therefore, the CD is a vital part of every application’s lifecycle. Significantly reducing the time and costs it takes for an application to reach its final state, there is nothing wrong in grabbing a cup of coffee while waiting for the deployment to finish.

TSM-January-2022-issue-2-1.png

4. Unity - Combining Dev With Ops in DevOps

The obvious solution to the Developers and Operations communication gap is the synchronization between those two teams, which in time came to be known as DevOps. It is the most prominent method by which an organization can bring a check and balance between development and quality. Both Dev and Ops need to embrace the DevOps methodology by changing their outlook as well as their ways of working.

5. Pattern – General Structure of a Build & Deployment Pipeline

Deployment pipelines can significantly vary in their structure, depending on the tools used for the process, on the application’s demands and the infrastructure; however, there are a few key concepts which can generally be found in any Deployment Pipeline:

  • Version Control Checkout – responsible for checking out the latest version of the application’s source code;

  • Build Phase – this step has as input the source code from the previous step and is responsible for generating an executable artefact;

  • Unit Test – a vital step in every pipeline is the implementation of automated tests, making sure that any changes that were made to the source code of the application have the desired output and didn’t affect previous parts of it;

  • Deploy – responsible for rolling out the application into the foreseen environment. This could have multiple outcomes based on where the application was deployed.If the Deployment was done in a lower environment, additional testing procedures could be started to determine that all parts of the application have the desired behaviour. Once the above step is completed, the deployment pipeline advances to the higher stages.

The concepts mentioned above should be taken with a grain of salt, as they depend on the underlying architecture and the way the pipeline was designed. Some applications might have different dependencies than others, leading to different implementations of deployment pipelines.

6. Contrast - The Difference Between Dev and Ops

In the not-too-distant past, Development and Operations have worked in absolute isolation, interacting only during releases. On the one hand, knowing about the release date, developers tend to insert a new feature by then. On the other hand, the Operations team knows beforehand whether the current release contains any new features.

So, once they get the released version of the application, before deploying it on the customer’s site, Ops do rigorous testing to test the stability of the release. Once they are satisfied, only then is it deployed at the customer site.

The conflict frequently emerges between these two camps and their seemingly incongruent goals - whereas development teams are motivated and measured by their high change frequency and scale (deploying features, fixes, and improvements), operations teams are judged by reliability and consistency, qualities which are often seen as an outcome of low change frequency and scale.

This often results in an antagonistic relationship between the two teams, characterized by the ongoing tussle for fixing the flaws, which is time-intensive and often assumes risking the final product not always fitting the original business need.

TSM-January-2022-issue-3-1.png

7. Emphasis - The Advantages and Challenges of DevOps

DevOps benefits include the following:

  • Fewer silos and increased communications between IT groups;

  • Faster time to market the software;

  • Rapid improvement based on feedback;

  • Less downtime;

  • Improvement to the entire software delivery pipeline through builds, validations and deployment;

  • Less manual work, thanks to the automation.

However, the DevOps methodology also involves a lot of challenges:

  • Organizational and IT departmental changes modifications, including new skills and job roles;

  • Expensive tools and platforms, including training and support for their efficient use;

  • Scaling DevOps across multiple projects and teams.

As with every art form, beauty is in the eye of the beholder, some might prefer one approach, others would have a completely different take on the process and the meaning of DevOps - we think that we all are right in our own way.

For us, DevOps is less of a job title and more of a mindset in which developers and operations work closely together to achieve one common goal. To roll out reliable software using the latest technology trends that are at our disposal, learn, make the world a better place and have fun while we’re at it.


Join our community of problem-solvers