Grab Deal : Flat 30% off on live classes + 2 free self-paced courses! - SCHEDULE CALL

- DevOps Blogs -

4 Easy and Famous Ways To Facilitate Jenkins Management



Introduction

In the last blog, we discussed the Jenkins pipeline, it’s benefits, features, and requirements with a practical demo. Let’s proceed with different aspects of managing or administering Jenkins. In this blog, we will discuss different Jenkins management property

Different Jenkins management property are:

  • Plugin Management
  • Security Management
  • User Management
  • Credential Management

Managing each Jenkins management property will take a good discussion in itself.

Plugin Management

Now, Why plugins are essential? Plugins basically help us in integrating 3rd party tools with Jenkins which will amplify the Jenkins performance. 

Jenkins consists of thousands of plugins to unite different tools(build/analysis/test/deployment), cloud providers, SCM(Github/Gitlab/Bitbucket/SVN), etc. Like in previous blogs also, we installed various plugins, e.g. “Blue Ocean” enhanced Jenkins dashboard view for pipeline jobs.

Let’s discuss in detail:

1. Proceed to Manage Jenkins → Manage Plugins

Manage Plugins

2. Observe four tabs:

  • Updates -- Record of Installed plugins that need to be renovated.
  • Available -- Record of Uninstalled/Available plugins
  • Installed -- Record of plugins inserted from “Available”/ “Updates” tab
  • Advanced -- Advance options for plugins

Let’s discuss each tab.

3. Select any plugin(s) under the “Updates” tab.

Manage Plugins2

4. Click on “Download now and install after restart"

Download now and install

5. You must be wondering, that I selected two only and Jenkins installed so many plugins. A plugin is internally dependent on many other plugins, it’s like layers defined. So, updating the plugin will verify all dependency updates and update whichever is ready.

6. Now, plugins have been updated and are “ready to use”, once Jenkins is restarted. 

7. This can be verified by scanning the “Installed” tab. The updated version installed is “1.23.1” which can be verified from the above screenshot also.

Blue Ocean plugin is refreshed and can be downgraded to the last version as well by clicking on “Downgrade to 1.23.0” which is useful as some jobs might rely on an older version and if updated for single purpose, it can break other jobs. So, older versions can be recovered. 

8. Now, “Available” tab. “Sonarqube Scanner” plugin is unoccupied. Let’s see how Jenkins will enhance after plugin installation, proceed to Manage Jenkins → Global Tool Configurations:

JDK

No Sonarqube here.

9. Select “Sonarqube Scanner” from “Available”. 

Sonarqube Scanner

10. Click on either of the Install alternatives, install the plugin and it will come under the “Installed” tab. Choose “Install without restart”  as it does not require Jenkins to restart every time.

11. The plugin is established and so all dependencies. You can verify the same in the “Installed” tab 

“Uninstall” button will be visible in the “Installed” tab.

12. Now, proceed  to “Global Tools Configuration”, Sonarqube scanner configurations buttons available:

13. Let’s verify “Advanced”.

Advanced

14. “HTTP Proxy Configuration” is essential if Jenkins is running behind a proxy and not able to link to the internet directly. Proxy detail fields are self-explanatory.

15. “Upload Plugin” is needed if you want to install a specific version of a plugin, download required “.hpi”(format of Plugin files) file and upload from here.

16. Let’s say, I want to install the 1.1.8 version of “Bitbucket” plugin. Go to archives list:

Bitbucket

17. Click on 1.1.8  and it will download .hpi file. 

18. Click on the “Choose File” option of upload plugin, select the required file and “Upload”. 

19. After upload, check-in “Installed” tab and verify the “Bitbucket” plugin with version 

Let’s proceed with other Jenkins management property

Security Management

Normally, a Jenkins instance is shared across multiple teams or multiple projects. Nobody should be allowed to mess up other's work e.g. project A should not build project B’s Jenkins jobs. In a project we have

  • admin(or DevOps)
  • Developer
  • Tester

Developers/testers should not be having the right to administer Jenkins, one way to imply security. So, let’s discuss Advanced Security features.

  • Proceed to Manage Jenkins → Configure Global Security

Configure Global Security

  • Security Realm -- has the design to validate Jenkins on the basis of user information as how and from where to drag that information.

  • “Disable remember me” -- If checked, will deactivate the remember me choice and password will not be saved.

Under “Security Realm”, different choices available:

a. Delegate to servlet container -- Users will be validated using servlet container like Jetty.

b. Jenkins’ own user database -- Whatever users created on Jenkins will appear in its database and use for validation. If “Allow users to sign up” is checked, it will let fresh users to sign up

Configure Global Security

See “create an account” option during log-in.

c. LDAP -- If the LDAP server is designed, Jenkins will delegate login information to that server. 

Authorization

d. Unix user/group database -- represent the validation mechanism to the Unix user database. With this chosen, users can sign-in to Jenkins utilizing UNIX OS credentials.

e. None -- will not set any validation for Jenkins.

  • Now, “Authorization

 Authorization

Authorization is about what action the user is authorized to execute on Jenkins. Different available options are:

  • Anyone can do anything -- All will be having full authorization whether the user is signed-in or not. Not recommended.
  • Legacy mode -- Users with an “admin” role, can perform whatever & others will have “read-only” consent.
  • Logged-in users can do anything -- Every signed-in user will have whole power(but not anonymous). If a checkbox is selected, it will permit “read” access for anonymous users.
  • Matrix-based security -- A matrix-like structure is available for the user/group to examine the kind of rights.

Matrix-based security

Two user/groups present

  • Anonymous 
  • Authenticated

You can remove and append new users as per requirement. Add any new user by clicking on "Add user" and give the suitable authority like for Overall or Credentials etc.

Project-based Matrix Authorization Strategy -- This is an addition to "Matrix-based security" that permits extra ACL matrix for each project independently. In short, the end result will be like a user can access project X, Y but not Z.

  • Other Security configurations:

Security configurations

a. Markup Formatter -- This has options “Plain Text” and “Safe HTML”. Normally, Plain text as it will treat all inputs as plain text and will escape ‘<’ and ‘&’ characters.

b. Agents -- By default, it is “Disable”. Normally, it was required to converse with inbound agents, like JNLP. A fixed port will help in governing firewall rules and Random will be chosen by Jenkins based on availability to shun any conflicts.

c. CSRF protection - It is by-default enabled and required to save cross-site attacks.

d. Hidden Security Warning -- If required to hide or suppress any security warnings. It comes from update sites and related to currently installed plugin/components. Warning can be hidden by unchecking the box. These warnings will be visible in “Manage Jenkins” page.

Security configurations

  1.  Some more:

Manage Jenkins

a. API Token -- As we can see from the list itself, 2 legacy options are “Not recommended”. Jenkins users can check if they have any unused or outdated API tokens.

b.Agent → Master Security -- This is like trust certificates between master Jenkins and agents. Rules can be tweaked by clicking link

Master Security

Whitelist commands and File Access rules updated for requests sent by agents to master. 

c. SSH server -- Same as TCP port, but for UNIX/LINUX machines.

In normal set up, Authentication/Authorization configuration is required, rest can be put as default.

Another Jenkins management property

Jenkins User Management

  1. Go to Manage Jenkins → Manage Users.

Jenkins User Management

Note:- Manage Users' choice is accessible only when “Jenkins’ own user database” selected in the ‘Configure Global Security' section.

  1. Press “Create User” to create a fresh user under Jenkins user management property.

Jenkins User Management

  1. Configure user by clicking “wheel” icon in front of username

  2. API Token is required to make way for authenticated API calls with different applications. 

Click on “Add new Token” and then Generate. A token will be created which can be used in other applications to make secure authentication. Copy token and use it.

API Token

  1. The following information can be updated:

Email

  1. Select which UI you want to view after clicking the notifications from email/slack/github etc. Options are:

  • Default
  • Blue Ocean(if plugin installed)
  • Jenkins classic

  1. List of SSH keys which help in running Jenkins CLI

SSH

  1. Session Termination will terminate all sessions of current users from all connected devices.

  1. Choose your preferred time zone.

  1. Let's test in Authorization Strategy, Select “Matrix-based security” and add both the users with selected permission e.g.

Jenkins CLI

Admin - Administer permission

Developer” - Overall Read permission and can build/cancel/read JOB but not configure/delete etc. 

Similarly, multiple users can be added to enhance security.

CK on “Add”, you will get similar kinds of options and fill the required fields. All credentials added here also will be visible in the “Credentials” page.

Credential Management

Credentials stored are required to authenticate third-party tools during run time.e.g. SCM credentials (Github, Bitbucket)

  1. Go to Manage Jenkins → Manage plugins, Install following plugins, if not installed.

  1. Select “Credentials” from the left side of the dashboard, it will open the already defined:

  1. To add Global Credentials, click on Credentials → System from left side:

system

  1. Click on “Global Credentials” → Add Credentials

  1. Now, All fields depend on the “Kind” choice

a. “Username with Password”, enter Username/Password in respective fields required for connection. Fill the ID field or it will be auto-populated(Once added). “ID” will be used in Jenkins jobs(e.g. pipeline) to connect.

b.“SSH Username with Private Key

Provide details entered while generating public/private key pairs.

c. “Secret File”, upload file containing secret contents

d.“Secret Text” -- enter the secret, token or API token (like Gitlab access token)

e. For “Certificate”, upload PKCS#12 certificate with an optional password.

  1. Scope” field will have options: “Global” and “System”. Global will be available with whole Jenkins topology and System will be available within Jenkins and its nodes only.

  2. The description field is to describe the type of credential.

  3. Click OK to save credentials. 

  4. From Jenkins job also, you can specify credentials

Click on “Add”, you will get similar kinds of options and fill the required fields. All credentials added here also will be visible in the “Credentials” page.

Conclusion

This is how we can manage plugins, users, security and credentials which are like four pillars of Jenkins system. Please let me know your different Jenkins management property experience in feedback. See you soon !!

fbicons FaceBook twitterTwitter google+Google+ lingedinLinkedIn pinterest Pinterest emailEmail

     Logo

    Vipin Bansal

    As an experienced DevOps professional, I am having a good understanding of Change and Configuration Management as well. I like to meet new technical challenges and finding effective solutions to meet the needs of the project. I believe in Sharing is Learning.


Comments

Trending Courses

Cyber Security Course

Cyber Security

  • Introduction to cybersecurity
  • Cryptography and Secure Communication 
  • Cloud Computing Architectural Framework
  • Security Architectures and Models
Cyber Security Course

Upcoming Class

3 days 27 Apr 2024

QA Course

QA

  • Introduction and Software Testing
  • Software Test Life Cycle
  • Automation Testing and API Testing
  • Selenium framework development using Testing
QA Course

Upcoming Class

2 days 26 Apr 2024

Salesforce Course

Salesforce

  • Salesforce Configuration Introduction
  • Security & Automation Process
  • Sales & Service Cloud
  • Apex Programming, SOQL & SOSL
Salesforce Course

Upcoming Class

2 days 26 Apr 2024

Business Analyst Course

Business Analyst

  • BA & Stakeholders Overview
  • BPMN, Requirement Elicitation
  • BA Tools & Design Documents
  • Enterprise Analysis, Agile & Scrum
Business Analyst Course

Upcoming Class

23 days 17 May 2024

MS SQL Server Course

MS SQL Server

  • Introduction & Database Query
  • Programming, Indexes & System Functions
  • SSIS Package Development Procedures
  • SSRS Report Design
MS SQL Server Course

Upcoming Class

3 days 27 Apr 2024

Data Science Course

Data Science

  • Data Science Introduction
  • Hadoop and Spark Overview
  • Python & Intro to R Programming
  • Machine Learning
Data Science Course

Upcoming Class

2 days 26 Apr 2024

DevOps Course

DevOps

  • Intro to DevOps
  • GIT and Maven
  • Jenkins & Ansible
  • Docker and Cloud Computing
DevOps Course

Upcoming Class

1 day 25 Apr 2024

Hadoop Course

Hadoop

  • Architecture, HDFS & MapReduce
  • Unix Shell & Apache Pig Installation
  • HIVE Installation & User-Defined Functions
  • SQOOP & Hbase Installation
Hadoop Course

Upcoming Class

2 days 26 Apr 2024

Python Course

Python

  • Features of Python
  • Python Editors and IDEs
  • Data types and Variables
  • Python File Operation
Python Course

Upcoming Class

10 days 04 May 2024

Artificial Intelligence Course

Artificial Intelligence

  • Components of AI
  • Categories of Machine Learning
  • Recurrent Neural Networks
  • Recurrent Neural Networks
Artificial Intelligence Course

Upcoming Class

3 days 27 Apr 2024

Machine Learning Course

Machine Learning

  • Introduction to Machine Learning & Python
  • Machine Learning: Supervised Learning
  • Machine Learning: Unsupervised Learning
Machine Learning Course

Upcoming Class

37 days 31 May 2024

 Tableau Course

Tableau

  • Introduction to Tableau Desktop
  • Data Transformation Methods
  • Configuring tableau server
  • Integration with R & Hadoop
 Tableau Course

Upcoming Class

2 days 26 Apr 2024

Search Posts

Reset

Receive Latest Materials and Offers on DevOps Course

Interviews