blog に戻る

2022年08月24日 Colin Fernandes

DevOps automation: Best practices and benefits

DevOps automation hero


Automation is an important component of DevOps, but how do you actually put automation into practice to advance the goals of DevOps? Let's answer that question.

In this blog, we explore:

  • What is DevOps
  • What automation means in the context of DevOps
  • Why automation is important to DevOps
  • Which processes to prioritize to achieve DevOps automation
  • Why a unified approach to aggregating DevOps toolchain data is critical
  • Why it is important to wrap up security as an additional layer to DevOps practices.

What is DevOps?

DevOps is a collection of best practices and working methods for the software development process with the ultimate goal to shorten and optimize the development lifecycle and support practices such as continuous integration, continuous delivery, and continuous deployment (CI/CD). In today's business environment, DevOps teams and site reliability engineers must be able to deliver features and updates with a high-frequency rate, delivering short turn-around times while maintaining the stability of the production environment.

Central to the DevOps culture and philosophy is the idea that cross-functional product teams, equipped to both develop and run their software features, should be the ones to deliver them. This notion is captured by the common DevOps mantra: "You Build It, You Run It."

In the past, software developers would build a new feature and pass it on to an IT operations team to determine how to test, run, support, and maintain the feature. In DevOps, a cross-functional product team is expected to manage features from conception to production with input from developers and IT Ops. This eliminates knowledge silos between software development and IT Ops teams and leads to lower downtime, and faster releases with fewer bugs.

What is DevOps automation?

DevOps automation is the practice or discipline of using specialized software tools and methodologies to automate repetitive and manual tasks throughout the software development lifecycle.

What is DevOps automation?

Source: https://help.sumologic.com/Oth...

Why is DevOps automation important?

For DevOps teams, automation is a central principle that reinforces all other DevOps principles. It “takes the robot out of the human” and promotes better collaboration and communication by allowing team members to automate repetitive and routine tasks so that they can spend more time working with each other and less time doing tedious manual work.

It also facilitates observability, improvement, and shift-left practices by ensuring smooth and consistent processes. And it goes hand-in-hand with declarative configuration management.

What are the benefits of DevOps automation?

Automation delivers a range of benefits that make it easier to achieve the goals of DevOps.

Consistency

When processes are highly automated, they are also consistent and predictable. A software automation tool will always do the same thing until it is reconfigured to do otherwise. The same is not true for manual processes prone to human error.

Speed

Automation means that processes like code integration and application deployment happen faster. This is true for two main reasons.

First, there is no need to wait on a human to be ready before a process can start. Manually deploying a new release at 2 a.m. may not be possible when you rely on a human to execute the process. With automation tools, there is no delay.

Secondly, automated processes tend to be executed faster. An engineer who is manually deploying a new release will need to assess the environment, type out configurations, manually verify that they deployed the latest version successfully, and so on. In contrast, an automation tool can perform these operations almost instantaneously.

Scalability

Automation is the mother of scalability. Often, processes that are feasible to manage by hand cannot be performed manually at scale.

For example, you may be able to deploy new releases manually when you are dealing with only one application and one production environment. But when your team is managing multiple applications and is deploying to multiple environments (such as more than one cloud or different operating systems), your ability to release new code quickly and consistently becomes very difficult.

Which processes should I automate in DevOps?

There are many processes and practices that go into DevOps, and they vary from one organization to another. In an ideal world, you would fully automate everything, but in reality, you often have to pick and choose what to prioritize when building automation.

This decision is different for every DevOps team, of course. DevOps practitioners follow a process for effective software development that leverages software tools (e.g., Docker and Kubernetes) to optimize each stage of the process. Below, we list some common tasks that can be made more efficient through DevOps automation.

Plan

In the planning phase, DevOps teams work to establish the business and application requirements for a product or feature. This includes gathering requirements, creating a release plan, establishing security policy and requirements, and deciding what metrics will be used to measure performance. In addition, feedback is gathered from stakeholders, customers, and product road maps to guide future development.

Tools most commonly used in this phase are Jira, GitHub, GitLab, Asana, Atlassian, iRise and Azure DevOps.

Code

In this phase, an individual developer picks up a body of work in the planning phase and implements it in the form of code and/or configuration artifacts. The developer uses a source code repository to check-in, review, and change code. The source code repository manages the various versions of code that are checked in, so developers do not write over each other’s work.

Tools most commonly used in this phase are Git, GitLab, Subversion, Cloudforce, Bitbucket, and TFS.

Build

In this phase of the pipeline, code from in the source code repository is compiled into executable artifacts, after which a series of automated unit and regressions tests are run to ensure the executable code is ready to be deployed. Teams use metrics to measure code quality and performance, build performance, and other methods before marking the product or feature as a candidate for release. Automating the build process is one of the most important best practices for continuous integration. Teams require the capability to initiate a full build script that compiles binaries and generates documentation, web pages, and statistics.

Popular tools during this phase include GitLab, GitHub, and CFEngine.

Test

Software verification aims to manage the quality of feature deployments into production. This includes software testing and validation exercises, including unit tests and acceptance and regression testing, security and vulnerability analysis, configuration testing, and performance measurement. This stage of the development life cycle uses test automation tools and static security analysis applications.

Automated self-testing should be run on every build to ensure that the source code continues to function as expected. When an error is found, it can be diagnosed and corrected through debugging, or developers can revert to a stable version of the code while losing a minimal amount of changes.

Devops screenshot

DORA SDO dashboard

Release and deploy

When a new feature has passed verification, it is ready for release. The final step is to package the release, also known as "staging". This includes practices such as package configuration and may involve an approval process that integrates feedback from managers or executives. DevOps teams use package management software applications, such as JFrog's Artifactory and ProGet, to facilitate release staging and holding.

Releasing a new software update or feature means deploying that feature into a production environment where users can access it. DevOps teams must coordinate their releases with other feature releases while ensuring that back-ups are in place to restore the system if the release causes a system failure. Some DevOps teams may automate the process using scheduled or timed releases. The best-known vendors of release management software include IBM, BMC Software, and VMWare.

The software development process does not end with release to production, as additional configurations may be required to optimize performance. These activities can include application or data storage provisioning, network provisioning, and general configuration of the release. DevOps teams use Infrastructure-as-Code tools and configuration automation to streamline this process, with notable tools such as Ansible, Chef, and Otter.

Monitor and operate

Once a release has been configured and optimized, it should be monitored for performance and security, to understand its impact on the end-user. Teams are responsible for monitoring the performance of IT infrastructure, measuring user experience using pre-defined metrics, and capturing production statistics to ensure the feature is functioning correctly.

Keeping track of all of the components of a fast-moving DevOps environment is difficult to do manually, at scale. Automation tools that can monitor availability, performance, or security problems and generate alerts based on them help solve this challenge. Sumo Logic provides a premium tool that leverages machine learning to help DevOps teams facilitate effective application monitoring in the production environment.

What are best practices for DevOps automation?

Keep engineers in the loop

In practice, it’s usually not possible to automate every aspect of a DevOps pipeline. Automation in DevOps doesn't remove engineers from the picture entirely. Even the best-automated DevOps processes require human oversight and intervention when things go wrong, or something needs to be updated.

But teams should strive to automate whenever and wherever possible because automation minimizes dependency on humans for managing basic, recurring tasks within a DevOps practice.

Unify the DevOps toolchain

Pipeline diversity and toolchain fragmentation hinder visibility and make the process of delivering software increasingly complex. High fragmentation across various tools and teams provides no easy way to centrally measure and optimize the performance of the software delivery pipeline in real-time. Each tool provides context about its performance but doesn’t easily share data making it difficult to get insights into how your organization is operating comprehensively.

By unifying the visibility of the software development pipeline, Sumo Logic enables teams to measure, benchmark, and continuously improve their software development and delivery performance in real-time. We extend observability to software development pipelines.

We enable development organizations to continuously benchmark and optimize their software delivery performance by automatically correlating data across their CI/CD pipelines. Our solution integrates with leading cloud development tools including AWS, Azure, GCP & Jira, GitHub, Bitbucket Jenkins, PagerDuty, Opsgenie, and many more.

Souce: https://help.sumologic.com/Other_Solutions/Software_Development_Optimization_Solution/01_About_the_Software_Development_Optimization_Solution

It can be set up in a few minutes to help teams collaborate more effectively and release secure, high-quality code faster. We leverage the KPI methodology developed by the DevOps Research and Assessment (DORA) organization to automatically derive industry-standard metrics backed by actionable insights and raw logs specifically designed to give teams complete visibility and observability of the entire DevOps lifecycle.

Devops screenshot 3

DevSecOps is the philosophy of integrating security practices within the DevOps process. DevSecOps creates a ‘Security as Code’ culture with ongoing, flexible collaboration between release engineers and security teams. The DevSecOps movement, like DevOps itself, is focused on creating new solutions for complex software development processes within an agile framework.

DevSecOps is a natural and necessary response to the bottleneck effect of older security models on the modern continuous delivery pipeline. The goal is to bridge traditional gaps between IT and security while ensuring fast, safe delivery of code. Silo thinking is replaced by increased communication and shared responsibility for security tasks during all phases of the delivery process.

Integrating DevSecOps delivers better quality and more secure software. Additionally, DevSecOps can help accelerate software delivery as security is part of the development and not conducted afterward.

Sumo Logic allows SOC teams to fully automate the triage, investigation, and resolution of threats and makes it possible to improve SecOps productivity by automating repetitive tasks, freeing your analysts to focus on more important tasks. Our open integrations approach makes it easy to run full incident response lifecycle management and significantly accelerates the mean time to respond (MTTR).

DevOps automation examples

Examples of automation in DevOps include:

  • Infrastructure-as-Code tools can automatically configure software environments based on configuration management files created beforehand.
  • Release automation suites can build, test and deploy new versions of an application.
  • Automated testing frameworks can evaluate how a new version of an application behaves to determine if it meets predefined quality thresholds.
  • Automatically codify workflows that streamline the detection of zombie IT cloud infrastructure and address it before it becomes a drain on the IT budget.
  • If your organization stores sensitive data in the cloud, cloud automation tools can help you set up version control for workflows where that data is put to use. This allows your organization to demonstrate to regulators that the same secure configuration was used each time the data was accessed or modified.
  • Data back-ups don't always seem like a priority until you critically need one. With automation, IT operators can configure data back-ups to occur automatically during off-hours with no manual processes.

Getting started with DevOps automation tools with Sumo Logic

When it comes to automating log management and analysis, Sumo Logic offers a solution designed especially for the needs of DevOps. Sumo Logic delivers the ability to work at any scale and with any application or infrastructure. It also offers configurations that are repeatable and reusable, and it integrates with a variety of other common DevOps tools.

Complete visibility for DevSecOps

Reduce downtime and move from reactive to proactive monitoring.

Sumo Logic cloud-native SaaS analytics

Build, run, and secure modern applications and cloud infrastructures.

Start free trial

Colin Fernandes

Senior Director of Product Marketing

Colin A.B. Fernandes serves as Sumo Logic's director of product marketing, EMEA, and is responsible for growing the business in the EMEA region. Based in Amsterdam, the Netherlands, Colin is a seasoned ICT professional with a wealth of experience and a proven track record in helping sales teams, partners and customers to create business value and (over) achieve their goals. He has successfully worked for software start-ups, but also medium and large companies, in a variety of roles, including sales, solution engineering, business development, product marketing and field readiness.

Learn more

More posts by Colin Fernandes.

これを読んだ人も楽しんでいます