2 min read

Categories

Tags

Our second in the Using Jenkins for Drupal and Wordpress series, we will cover the interface and a few key administration settings. ReadPart 1 - Installation

Interface

Jenkins interface out to the box can look utilitarian to some if you are not used to it. There are also elements of confusion as it can change or disappear based on the type of page you are on or plugins you have installed.

When you first start Jenkins you will be greeted with this welcome screen

On the left side of the screen, you will find the Main Menu, Build Queue and Build Executor Status

New Item - Brings up the job type selection page. People - Listing of people Jenkins is aware of. This could be users with a password or names it has pulled from git commits. Build History - Timeline and list view of the job build history. Manage Jenkins - Admin and configuration settings for the system, adding plugins, managing users, and permissions. Credentials - Quick link to the values you have setup. Here you can add ssh keys, APT tokens, and other settings. Values can be used in your Jobs and pipeline scripts. Build Queue - Jobs waiting to be run. Build Executor Status - Active Jobs

Manage Jenkins

For now, we will just cover the Configure System area, where you will make the bulk of the system-wide changes and the Manage Plugins.

Manage Plugins

There are four tabs on the plugin page Updates, Available, Installed and Advanced. The sections are self-explanatory, I myself have not found a need to change any settings in the Advanced tab. I encourage you to explore and read about the available plugins and try a few out on a testing environment.

Configure System

Here are a few settings I use and update as needed including Slack notification and core settings.

Maven Project Configuration Section:

\# of executors - The number of jobs Jenkins can run at one time. For what we are doing you will need at least 2. If you want to run parallel testing you will want to run 4 or more. Labels - When running multiple Jenkins instances in master/slave Labels allow you do ‘tag’ where a process or job is run. Quiet period - When this option is checked, newly triggered builds of this project will be added to the queue, but Jenkins will wait for the specified period of time before actually starting the build. SCM checkout retry count - When working with git how often should Jenkins retry checkout.

Global properties

Checking on the Environment variables setting will expose the list of variables configured. Names are usually all uppercase i.e. LIVE_SERVER_PATH, USERNAME, Using Environment variables are a good idea for security items like DeployBot API Keys or for items that could change like remote IP addresses.

Jenkins Location Section:

Jenkins URL - The URL for Jenkins server System Admin e-mail address - Email address of the admin

Global Slack Notifier Settings

  I recommend adding the Jenkins App Base URL - If you are using the Slack Jenkins Bot the URL Integration Token Credential ID - create a secret text entry using the token from Slack, the ID should lowercase no spaces, the Description is free-form text. Is Bot User? - Checked

The next post we will cover building your first job.