Codecademy Logo

DevOps: Introduction and Culture

DevOps

DevOps is a culture that is supported by a set of practices and tools that assists the collaboration of Development and Operations teams.

DevOps aims to resolve the issues in the development process that arise due to the conflicting goals and isolation of traditional development and operations teams.

Integration of Development and Operations Teams

The integration of Development and Operations teams results in the following benefits:

  1. Work is no longer passed back and forth between teams
  2. Development, staging, and production environments are consistent
  3. Development best practices are applied to infrastructure management

DevOps Important Practices

Important practices used by DevOps include:

  1. Automation – making manual processes occur automatically
  2. Continuous Integration – regularly merging contributor code into a central repository
  3. Continuous Delivery and Deployment – automatically preparing code changes for release
  4. Infrastructure as Code – representing aspects of infrastructure within source files
  5. Microservices – dividing up a business application into many small independent services
  6. Monitoring – gathering information about the state of the system during runtime

DevOps Tools

DevOps is enhanced by a variety of tools including those for:

  1. Source control management – tools which help developers track and manage source code changes
  2. Environment configuration – tools which assist with the configuration of hardware and software for running code
  3. Testing – tools which ensure the correctness of our code
  4. Automation – tools which assist in performing routine tasks via scripts
  5. Infrastructure as code – tools which allow us to define infrastructure as source files

DevOps Team Improvements

The central pillars of a DevOps culture include:

  • Thinking about the whole production system, rather than a single department or part (systems-level thinking).
  • Feedback loops, allowing each part of the process to receive information and improve.
  • A culture of continuous experimentation and learning.

DevOps Team Bottlenecks

DevOps teams seek to reduce the impact of system bottlenecks. Bottlenecks are the slowest part of the production process and they limit the overall pace of production.

DevOps Team Communication

Companies with separated development and operations teams can have some issues:

  • Developers might concentrate on the code without considering infrastructure or testing needs.
  • The Operations team might only consider infrastructure needs without considering impacts on functionality.

DevOps seeks to have each member of the team consider the entire development process. All members share responsibility for the final result.

DevOps Feedback Loops

Feedback loops use metrics to gain insights into application performance. Action can then be taken from these insights to continuously improve processes. Metrics that measure customer value should be prioritized.

DevOps Failure

In DevOps, failure is seen as something to learn from and is a normal part of the improvement process. It can lead to valuable insights being discovered.

One method DevOps teams use to normalize failure is through blameless retrospectives (or post-mortems).

Learn more on Codecademy