Using JobDSL and Jenkinsfiles to fully automate Jenkins job management
By using JobDSL and Jenkinsfiles we can fully automate all aspects of Jenkins job management. The two components play the following roles
- JobDSL: The skeletal framework of a job that “registers” it in the Jenkins UI but does not contain any core job logic
- Jenkinsfiles: Contains all the project specific steps to accomplish the project goals such as building or deploying code
It does not have to be JobDSL vs. Jenkinsfiles but, rather, JobDSL and Jenkinsfiles.
JobDSL
The code statements in JobDSL map directly to what is in the Jenkins UI as shown below
Jenkinsfiles
The “meat” of the job, that is, the core logic and all logic specific to the project in question is contained in the Jenkinsfile. Quite often this is just called “Jenkinsfile” or “Jenkinsfile.groovy” (if you want to clue in your editor/IDE) but it can be called anything.
Below are some Jenkinsfile snippets showing, roughly, how the correspond to what you might see in the Jenkins UI.