DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
  1. DZone
  2. Culture and Methodologies
  3. Career Development
  4. The Hitchhiker’s Guide  to  Jenkins Job Builder

The Hitchhiker’s Guide  to  Jenkins Job Builder

To fill the need for a step-by-step guide to this tool, take a look at this article that provides explanation with examples.

Shreyas Chaudhari user avatar by
Shreyas Chaudhari
·
May. 10, 19 · Tutorial
Like (8)
Save
Tweet
Share
20.66K Views

Join the DZone community and get the full member experience.

Join For Free

Image title

Although the documentation for Jenkins Job Builder is very detailed, the step-by-step guide with examples for them is somehow missing. This was the main motivation for me to write this blog. 

Pre-Requisites

  1. Pip
  2. Git
  3. An up-and-running Jenkins instance

Setting Up Jenkins Job Builder

Here, we will be walking through the steps needed for using the Jenkins Job Builder.

Step 1 — Clone the repository using the command below.

git clone https://git.openstack.org/openstack-infra/jenkins-job-builder


The cloned folder structure will be structured as in the snapshot below:

Jenkins Job Builder Cloned Repository

Step 2 — After cloning the repository, navigate to the folder “etc,” which consists of “.ini” sample file. Copy and paste that file and rename it to “jenkins_job.ini.”

Step 3 — Open the “jenkins_job.ini” and focus on the three parameters marked with a red star as in the snapshot below.

  1. user — Jenkins user name
  2. password — Jenkins password
  3. url — Jenkins instance URL
jenkins_jobs.ini

“user” and “url” are pretty straight forward as the name suggests. However, the “password,” for the purpose of security, is not plain text and has to be an API token which can be used for making authenticated REST API or CLI calls.

To get the API token for the logged user, navigate to Jenkins > People > Your User > Configure, or directly navigate to the URL “http://<Your Domain>/user/<Your User>/configure” which in my case will be “http://localhost:8080/user/shreyas/configure”.

API Token

Click “Add new Token,” then on “Generate” and copy and paste the generated token against the password in the “jenkins_jobs.ini.”

Post generating the Api token

Step 4 — Finally, the updated “.ini” file will look like the one below. Look at the updated 3 properties user, password, and URL.

For the purpose of this tutorial, we will keep the other parameters as the way they are. This is the generic configuration that needs to be done for using the Jenkins Job Builder.

Writing Jenkins Job Builder YAML

The next part of the configuration for using the Jenkins Job Builder is writing the YAML file. YAML files are the ones that are used for providing the configurations for creating the Jenkins jobs. There are two types of YAML that we will be looking at:

  1. singlejob.yaml — Creates the job as per the configurations in the yaml
  2. singlejobtemplate.yaml — Creates the job as per the job template. Can be reused for creating multiple jobs.
  3. multiplejobtemplate.yaml — Creates multiple jobs all having the same configuration as per the job template. All the jobs will be created at one go.

Single Job Yaml


This YAML consists of 4 blocks.

The first is scm. This corresponds to the version control and its details we will be using in the Jenkins job. In the above example, it corresponds to Git version control, the URL, and the branch.



scm block in the yaml which results in the above configuration in the Jenkins jobThe second block is  builders. This corresponds to the build management tool, which is going to be used by the Jenkins job. In the above example, it corresponds to Maven, its version, pom.xml, and the Maven goals.
builders block in the yaml which results in the above configuration in the Jenkins job

The third block is publishers. This corresponds to the artifact that will be generated to be published. In the above example, it will be any jar file that will be present in the path spring-boot-samples\spring-boot-sample-atmosphere\target.

publishers block in the yaml which results in the above configuration in the Jenkins job

On the fourth block are generic job details. This corresponds to the generic configuration details in the Jenkins job General tab.

general configuration of the Jenkins job

Jenkins Job Creation Steps:

Step 1 — Verify configuration files

  1. jenkins_jobs.ini in etc
  2. singlejob.yaml in jobs

Step 2 — Execute the command below:

jenkins-jobs --conf etc/jenkins_jobs.ini update jobs/singlejob.yaml


Here are some things to note in the command above:

  1. conf corresponds to the initialization file to be used by the Jenkins job builder, which in this case is jenkins_job.ini present in the etc folder.
  2. update denotes the updation of the Jenkins job to be done using the singlejob.yaml present in the jobs folder.

Other configuration parameters can be referred here.

Command line output:


Job created in Jenkins:

Jenkins job 1-JJB-SimpleJob created

Click on 1-JJB-SimpleJob

Click on Configure in the left panel to view the 1-JJB-SimpleJob configuration details. The details of the job will be as in the general, scm, builders, and publishers snapshots above.

Single Job Template YAML

SingleJobTemplate.yaml

The fifth block is project. This corresponds to the name of the job that this YAML will take as an argument. Using this YAML, multiple jobs having the same configuration but different names can be created. The disadvantage is the command line will have to be run multiple times.

Command to execute:

jenkins-jobs --conf etc/jenkins_jobs.ini update jobs/singlejobtemplate.yaml


Command line output:


Job created in Jenkin:

Jenkins job 2-JJB-SimpleJob-Template created

Click on 2-JJB-SimpleJob-Template

Click on Configure in the left panel to view the 2-JJB-SimpleJob-Template configuration details. The details of the job will be viewable as in the general, scm, builders, publishers snapshots above.

Multiple Job Template YAML

MultipleJobTemplate.yaml
The fifth block is  job-template. This corresponds to the name of the job template using which the further set of jobs will be created. Using this YAML, multiple jobs having the same configuration but different names can be created by just running the command line once.


Command to execute:

jenkins-jobs --conf etc/jenkins_jobs/jenkins_jobs.ini update jobs/multiplejobtemplate.yaml


Command line output:

Jenkins job builder command execution logs — 3 Jobs created

Job created in Jenkins:

Jenkins job 3-JJB-Temp-1, 3-JJB-Temp-2, 3-JJB-Temp-3 created

Click on of the 3 jobs created

Click on Configure in the left panel to view the 3-JJB-Temp-1,3-JJB-Temp-2, 3-JJB-Temp-3 configuration details. The details of the job will be as in the general, scm, builders, publishers snapshots above.


Clicked in the construction site next to my society in Pune, Maharashtra, India

jenkins_job.ini and yamls used in the above examples can be found in the Git repository here.

career Jenkins (software) YAML Command (computing)

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Custom Validators in Quarkus
  • Front-End Troubleshooting Using OpenTelemetry
  • Building Microservice in Golang
  • How To Build a Spring Boot GraalVM Image

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: