SlideShare a Scribd company logo
Continuous Delivery
with Jenkins:

the Good, the Bad and the Ugly
Tommy Tynjä
@tommysdk
tynja.com
diabol.se

diabol.se/blog 

github.com/Diabol
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Tommy Tynjä

@tommysdk
Topics
Challenges
Comparison
Options
Solution
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Plugins
stats.jenkins.io
stats.jenkins.io
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
What requirements do we
have on a CI / CD tool?
Run on premise
Infrastructure as code
Deployment support Isolated builds
using containersCustomisable
Scalable Good pipeline visualisation
Community
Reasonable price
Goals
Satisfy our customers
Good ways of working with Jenkins
Comparing CI/CD tools
Jenkins, GoCD, TeamCity,
Concourse, Drone, Bamboo
Comparing CI/CD tools
Jenkins, GoCD, TeamCity,
Concourse, Drone, Bamboo
Open source and good community
Many integrations / plugins exist
We already know it!
Why Jenkins?
Traditional build jobs with
downstream dependencies
🔵 🔆 Deploy
🔵 🔆 Test
🔵 🔆 Build
🔵 🔆 Deploy
🔵 🔆 Integration Test
🔵 🔆 Build
🔵 🔆 Regression Test
🔵 🔆 Static code analysis
Jenkins pipelines
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Blue Ocean Plugin
Blue Ocean Plugin
Blue Ocean Plugin
https://github.com/Diabol/delivery-pipeline-plugin
Delivery Pipeline Plugin
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Jenkinsfile
https://plugins.jenkins.io/workflow-cps-global-lib
Pipeline: Shared Groovy Libraries


ID: workflow-cps-global-lib
https://github.com/Diabol/jenkins-pipeline-shared-library-template
$ tree
├── src
│   └── Example.groovy
├── test
│   └── ExampleTest.groovy
└── vars
└── deliveryPipeline.groovy
$ tree
├── src
│   └── Git.groovy
├── test
│   └── GitTest.groovy
└── vars
└── deliveryPipeline.groovy
$ tree
├── src
│   ├── Build.groovy
│   ├── Deployment.groovy
│   ├── Git.groovy
│   ├── Validation.groovy
│   └── Version.groovy
├── test
│   ├── BuildTest.groovy
│   ├── DeploymentTest.groovy
│   ├── GitTest.groovy
│   ├── ValidationTest.groovy
│   └── VersionTest.groovy
└── vars
└── deliveryPipeline.groovy
Easy to adopt
Convention over configuration
deliveryPipeline {
maintainer = 'Team 1337' 

projectName = 'order-service'

type = 'library' 

language = 'java'
}
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
jenkins-pipeline-dsl-latest
🔵 🔆 Tag
🔵 🔆 Test
🔵 🔆 Compile
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Infrastructure as code?
Not enough!
Short feedback cycles
Continuous Delivery
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
├── jenkins-agent

│ ├── certificates
│ │ └── ...
│   └── Dockerfile
├── jenkins-agent

├── jenkins-master

│ ├── certificates

│ ├── init.groovy.d

│ ├── Dockerfile
│  └── plugins.txt

└── build.gradle
1. Build containers
2. Run tests
3. Upload
(4. Deploy)
Tests
Spock (spockframework.org)
Testcontainers (testcontainers.org)
class PluginTest extends Specification {
@Shared
@ClassRule

JenkinsMasterContainer jenkinsContainer =
new JenkinsMasterContainer()
@Shared
Map<String, String> configuredPlugins =

collectEntriesFromPluginsTxt()
@Shared

List<Plugin> installedPlugins
class PluginTest extends Specification {
@Shared
@ClassRule

JenkinsMasterContainer jenkinsContainer =
new JenkinsMasterContainer()
@Shared
Map<String, String> configuredPlugins =

collectEntriesFromPluginsTxt()
@Shared

List<Plugin> installedPlugins
@Unroll
def 'Plugin is installed: #pluginId'() {
given: 'A configured plugin'
Plugin plugin = installedPlugins.find {
it.shortName == pluginId
}
expect: 'Plugin is present'
plugin
where:
pluginId << configuredPlugins.keySet()
}
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018
init.groovy.d
BitbucketServerEndpoint endpoint =
new BitbucketServerEndpoint(server,

url, manageWebHooks, credentialsId)
Jenkins pipeline for Jenkins
Summary
Challenges
Everything as code
Continuous Delivery of
Continuous Delivery
Thank you!
Tommy Tynjä
@tommysdk
tynja.com
diabol.se

diabol.se/blog 

github.com/Diabol

More Related Content

PPTX
Automated Integration Testing in Java using Arquillian
PDF
The Road to Continuous Delivery - JAX DevOps 2018
PDF
Porque Odeio Branches
PPTX
Trunk Based Development in the Enterprise - Its Relevance and Economics
PPTX
Scala from the Trenches
PDF
CI/CD 101
PPTX
Continuous integration for App developers
PDF
Code review vs pull request
Automated Integration Testing in Java using Arquillian
The Road to Continuous Delivery - JAX DevOps 2018
Porque Odeio Branches
Trunk Based Development in the Enterprise - Its Relevance and Economics
Scala from the Trenches
CI/CD 101
Continuous integration for App developers
Code review vs pull request

What's hot (20)

PDF
Product update Feb 20
PDF
GitLab - Java User Group
PPTX
Test Driven Development on Android (Kotlin Kenya)
PDF
DevOpsDaysRiga 2018: Neil Crawford - Trunk based development, continuous depl...
PDF
Jenkins vs GitLab CI
PPTX
2016 Q1 - WebRTC testing State of The Art
PPTX
Continuos integration with Jenkins for iOS | SuperSpeakers@CodeCamp Iasi, 2014
PDF
Trunk based development
PPTX
How to Work Efficiently in a Hybrid Git-Perforce Environment
PDF
End-to-end performance testing, profiling, and analysis at Redis
PPTX
Selenium Testing your Kubernetes Apps with Machine Learning and Testim
PDF
The Job DSL Plugin: Introduction & What’s New
PPTX
10/29 Austin Ansible MeetUp - AnsibleFest Talk & Extending Ansible
PDF
vodQA Pune (2019) - Jenkins pipeline As code
PDF
Trunk based development for Beginners
PPT
Tech Talk #5 : CI/CD FOR MOBILE DEVELOPMENT - Đinh Ngọc Kiên
PDF
Introducing GitLab (June 2018)
PPTX
Releasing High Quality Packages - Longhorn PHP 2021
PDF
Orchestrating the execution of workflows for media streaming service and even...
PPTX
Effective Code Review (Or How To Alienate Your Coworkers)
Product update Feb 20
GitLab - Java User Group
Test Driven Development on Android (Kotlin Kenya)
DevOpsDaysRiga 2018: Neil Crawford - Trunk based development, continuous depl...
Jenkins vs GitLab CI
2016 Q1 - WebRTC testing State of The Art
Continuos integration with Jenkins for iOS | SuperSpeakers@CodeCamp Iasi, 2014
Trunk based development
How to Work Efficiently in a Hybrid Git-Perforce Environment
End-to-end performance testing, profiling, and analysis at Redis
Selenium Testing your Kubernetes Apps with Machine Learning and Testim
The Job DSL Plugin: Introduction & What’s New
10/29 Austin Ansible MeetUp - AnsibleFest Talk & Extending Ansible
vodQA Pune (2019) - Jenkins pipeline As code
Trunk based development for Beginners
Tech Talk #5 : CI/CD FOR MOBILE DEVELOPMENT - Đinh Ngọc Kiên
Introducing GitLab (June 2018)
Releasing High Quality Packages - Longhorn PHP 2021
Orchestrating the execution of workflows for media streaming service and even...
Effective Code Review (Or How To Alienate Your Coworkers)
Ad

Similar to Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018 (20)

PDF
Jenkins-Resource un documennt ingénierie.pdf
PDF
Introduction to CICD
PPTX
introductiontocicdknolx-220210084710.pptx
PPTX
Ordina Accelerator program 2019 - Jenkins blue ocean pipelines
PPTX
Continuous Delivery with Jenkins
PDF
Using Jenkins as your go-to CI/CD tool
PPTX
CI/CD
PDF
CI CD Pipeline Interview Questions PDF By ScholarHat
PDF
Jenkins User Conference: Building Your Continuous Delivery Toolkit
PDF
PuppetConf 2016: Continuous Delivery and DevOps with Jenkins and Puppet Enter...
PDF
Continuous delivery using jenkins
PPTX
Basic Jenkins Guide.pptx
PDF
Implementing a Continuous Delivery pipeline using OW2 infrastructure, OW2con'...
 
PPTX
Building your Continuous Delivery Toolkit @ JUC SF 2014
PPTX
Continous integration and delivery for single page applications
PDF
Building an Enterprise Continuous Delivery machine around Jenkins
PPTX
Jenkins_PPT_Template_introduction to ci/cd .pptx
PDF
Jenkins: An open-source automation server powering CI/CD Automation
PDF
Continuous Delivery
PDF
Merge hells!! Feature toggles to the rescue - DevOpsDays Madison
Jenkins-Resource un documennt ingénierie.pdf
Introduction to CICD
introductiontocicdknolx-220210084710.pptx
Ordina Accelerator program 2019 - Jenkins blue ocean pipelines
Continuous Delivery with Jenkins
Using Jenkins as your go-to CI/CD tool
CI/CD
CI CD Pipeline Interview Questions PDF By ScholarHat
Jenkins User Conference: Building Your Continuous Delivery Toolkit
PuppetConf 2016: Continuous Delivery and DevOps with Jenkins and Puppet Enter...
Continuous delivery using jenkins
Basic Jenkins Guide.pptx
Implementing a Continuous Delivery pipeline using OW2 infrastructure, OW2con'...
 
Building your Continuous Delivery Toolkit @ JUC SF 2014
Continous integration and delivery for single page applications
Building an Enterprise Continuous Delivery machine around Jenkins
Jenkins_PPT_Template_introduction to ci/cd .pptx
Jenkins: An open-source automation server powering CI/CD Automation
Continuous Delivery
Merge hells!! Feature toggles to the rescue - DevOpsDays Madison
Ad

More from Tommy Tynjä (8)

PDF
A year of mob programming - tips & tricks - Heapcon Belgrade 2018
PDF
Så skapar continuous delivery värde för kunden - Tech World Summit 2018
PDF
A year of mob programming - tips & tricks - PipelineConf London 2018
PDF
A year of mobprogramming - tips & tricks - Devoxx Belgium 2017
PDF
Continuous Delivery of Microservices
PDF
The Road to Continuous Delivery
PDF
The road to Continuous Delivery and beyond
PDF
Next Generation Continuous Delivery
A year of mob programming - tips & tricks - Heapcon Belgrade 2018
Så skapar continuous delivery värde för kunden - Tech World Summit 2018
A year of mob programming - tips & tricks - PipelineConf London 2018
A year of mobprogramming - tips & tricks - Devoxx Belgium 2017
Continuous Delivery of Microservices
The Road to Continuous Delivery
The road to Continuous Delivery and beyond
Next Generation Continuous Delivery

Recently uploaded (20)

PDF
medical staffing services at VALiNTRY
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PDF
Nekopoi APK 2025 free lastest update
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Digital Strategies for Manufacturing Companies
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Digital Systems & Binary Numbers (comprehensive )
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Cost to Outsource Software Development in 2025
PDF
Designing Intelligence for the Shop Floor.pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
medical staffing services at VALiNTRY
Softaken Excel to vCard Converter Software.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Wondershare Filmora 15 Crack With Activation Key [2025
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
Nekopoi APK 2025 free lastest update
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Digital Strategies for Manufacturing Companies
PTS Company Brochure 2025 (1).pdf.......
Digital Systems & Binary Numbers (comprehensive )
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Cost to Outsource Software Development in 2025
Designing Intelligence for the Shop Floor.pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
How to Choose the Right IT Partner for Your Business in Malaysia
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Which alternative to Crystal Reports is best for small or large businesses.pdf
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free

Continuous Delivery with Jenkins: the Good, the Bad and the Ugly - JAX DevOps 2018