Book Image

DevOps: Continuous Delivery, Integration, and Deployment with DevOps

By : Sricharan Vadapalli
Book Image

DevOps: Continuous Delivery, Integration, and Deployment with DevOps

By: Sricharan Vadapalli

Overview of this book

DevOps is the most widely used software engineering culture and practice that aim sat software development and operation. Continuous integration is a cornerstone technique of DevOps that merges software code updates from developers into a shared central mainline. This book takes a practical approach and covers the tools and strategies of DevOps. It starts with familiarizing you with DevOps framework and then shows how toper form continuous delivery, integration, and deployment with DevOps. You will explore DevOps process maturity frameworks and progression models with checklist templates for each phase of DevOps. You will also be familiar with agile terminology, methodology, and the benefits accrued by an organization by adopting it. You will also get acquainted with popular tools such as Git, Jenkins ,Maven, Gerrit, Nexus, Selenium, and so on.You will learn configuration, automation, and the implementation of infrastructure automation (Infrastructure as Code) with tools such as Chef and Ansible. This book is ideal for engineers, architects, and developers, who wish to learn the core strategies of DevOps. This book is embedded with useful assessments that will help you revise the concepts you have learned in this book. This book is repurposed for this specific learning experience from material from Packt's Hands-on DevOps by Sricharan Vadapalli.
Table of Contents (8 chapters)

Chapter 3. DevOps – Continuous Integration and Delivery

In this lesson, we will learn about implementing DevOps core process such as source code repository, code review, artifacts repository, continuous testing, continuous development, and continuous integration. We will focus on few popular tools such as Git, Jenkins, Maven, Gerrit, Nexus, Selenium, and so on.

  • Continuous integration (CI)

  • Continuous delivery (CD)

  • Jenkins tool setup

  • Configuration management-Jenkins

  • Source code management—Git

  • Build management—Maven

  • Source code review—Gerrit

  • Repository management—Nexus

  • Test Automation—Selenium

  • Continuous deployment—Pipelines

  • Jenkins client setup

  • Jenkins security

  • Jenkins metrics

Continuous integration and continuous delivery are popular and valuable processes to ensure high-quality and timely software delivery. Continuous integration is the integrated software development process where multiple developers adhere to the agile methodology and adapt it to best practices like the following:

  • Ensure all development...