Book Image

Jenkins Essentials - Second Edition

By : Mitesh Soni
Book Image

Jenkins Essentials - Second Edition

By: Mitesh Soni

Overview of this book

<p>In agile development practices, developers need to integrate their work frequently to fix bugs or to create a new feature or functionality. Jenkins is used specifically for Continuous Integration, helping to enforce the principles of agile development. This book focuses on the latest and stable release of Jenkins (2.5 and later), featuring the latest features, such as Pipeline as Code, the new setup experience, and the improved UI. With the all-new Pipeline as Code feature, you will be able to build simple or advanced pipelines easily and rapidly, hence improving your teams' productivity.</p> <p>This book begins by tackling the installation of the necessary software dependencies and libraries you'll need to perform Continuous Integration for a Java application. From there, you'll integrate code repositories, applications, and build tools for the implementation of Continuous Integration.</p> <p>Finally, you will also learn how to automate your deployment on cloud platforms such as AWS and Microsoft Azure, along with a few advanced testing techniques.</p>
Table of Contents (17 chapters)
Title Page
Credits
About the Author
About the Reviewers
www.PacktPub.com
Customer Feedback
Dedication
Preface

Jumpstart tour of the Jenkins dashboard


The Jenkins dashboard is the place where all the operations related to CI and CD can be managed:

Click on the Manage Jenkins link on the Jenkins dashboard. Here, we can configure Jenkins, Security, Global Tools, Plugins, Users, and more:

Click on Manage Plugins. You will see the following tabs:

  • The Updates tab provides details on updates available on the installed plugins.
  • The Available tab provides a list of plugins that are not installed yet.
  • The Installed tab provides a list of plugins that are already installed.
  • The Advanced tab contains sections to configure proxies so we can download plugins even after we are behind the proxy. It also provides sections to upload HPI files for plugins in case we have already downloaded the plugin from the internet:

In the Manage Jenkins section, click on Manage Nodes.

By default, the system on which Jenkins is installed is a master node. This is the section that can be utilized to create the master agent architecture that we will cover later in the book:

In the next section, we will cover different kinds of configuration available in the Manage Jenkins section.