SlideShare a Scribd company logo
1 of 30
Jenkins User Conference   New York, May 17 2012   #jenkinsconf


        Advanced Continuous Deployment
        with Jenkins

                     Andrew Phillips


                              http://www.xebialabs.com
Jenkins User Conference   New York, May 17 2012   #jenkinsconf


        Advanced Continuous Deployment
        with Jenkins

                     with special thanks to

                     Benoit Moussaud
                       @bmoussaud
Jenkins User Conference    New York, May 17 2012   #jenkinsconf



    Continuous Integration

•
    Emerged at the end of the ‘90s as one
    of the XP practices
•
    By continuously building and testing software
    quality should improve
•
    Tests often limited to unit tests (e.g. JUnit)
•
    Sometimes also functional tests (e.g. Selenium)
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



      CI Shortcomings

•
     Deployment to the target platform often
     not part of the CI cycle
➔
     Deployment procedures not tested!
➔
     Application not tested on ultimate target
     platform!
Jenkins User Conference        New York, May 17 2012   #jenkinsconf



      Enter Continuous Deployment


•
     Strictest definition: Every (tagged) version goes
     to production
      ●
          Used by LinkedIn amongst others.
•
     Less strict: Include deployment in the CI cycle to
     test the deployed artifacts on the target platform
Jenkins User Conference      New York, May 17 2012   #jenkinsconf



      With Continuous Deployment...
•
     Smoke tests
      •
          Landing page
      •
          Line of Life
•
     Functional tests on target platform (e.g. Selenium)
      •
          Content of the landing page
      •
          Typical run
•
     Performance tests (e.g. JMeter)
      •
          Response time of the landing page
      •
          Response time of the simple / complex path
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  Continuous Deployment Flow
Jenkins User Conference     New York, May 17 2012   #jenkinsconf



      Continuous Deployment Flow
•
     Dev Team
      •
          Full nightly build
      •
          Tag package as “released”/”ready”
•
     Acceptance/QA
      •
          Deploy “released” package to Test environment
      •
          Perform tests
      •
          If OK, tag package as “accepted”
•
     Production/Ops
      •
          Deploy “accepted” packages to Production
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  The “Dev Commandments”


For each version of the application, we shall
provide one single package containing all the
artifacts and resource definitions
The package shall be independent of the target
environment
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  The “Ops Commandments”


We shall provide fully configured infrastructure
items (hosts, application servers, web servers,
databases etc.) grouped by environment
We shall associate configured environment
variable values to all environments
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



      DIY with Jenkins


•
     Maven / Ant
•
     Cargo / SSH plugins
•
     Middleware scripting
•
     Maven profiles
•
     or...?
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



      Challenges


•
     Middleware-specific manual effort
•
     Exposed security credentials
•
     How to secure pipeline to later-stage
     environments ?
•
     How to separate deployment and build audits?
•
     Time Machine (what was the state of my
     environment at a certain time)?
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  Continuous Deployment with
  Deployit
Jenkins User Conference      New York, May 17 2012   #jenkinsconf



      Continuous Deployment Flow
•
     Dev Team
      •
          Jenkins CI drives Deployit
      •
          Creates package, publishes to Deployit and triggers
          deployment to the development environment
•
     Acceptance/QA
      •
          Uses UI to deploy selected tested version to QA
      •
          Tags the version as “accepted” if all tests pass
•
     Production/Ops
      •
          Automates deployment of accepted versions to
          production environments via CLI
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



      Continuous Deployment Flow




•
     Dev → Test → QA → Prod pipeline conditions are
     checked by Deployit
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  Deployit Jenkins Plugin
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  Deployit Jenkins Plugin: Package
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  Deployit Jenkins Plugin: Deploy
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  The Unified Deployment Model
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  Deployit Architecture
Jenkins User Conference   New York, May 17 2012   #jenkinsconf




             Live Demo
Jenkins User Conference          New York, May 17 2012   #jenkinsconf



      Security & Audit

•
     Lock down access to target systems:
     only Deployit needs to know the credentials
•
     Control deployment capabilities
          •
              permissions to deploy this on that
•
     Track deployment activities
      •
              who deployed what where and when?
•
     Audit past events
      •
              what happened during that deployment x months ago?
Jenkins User Conference    New York, May 17 2012   #jenkinsconf



         One Best Practice
         for Application Deployments
•
    Targets
     •
         Java Middleware (incl. Tomcat, WebSphere, JBoss,
         WebLogic)
     •
         .NET & IIS
     •
         System: Files & Folders
     •
         Database: SQL (incl. rollback)
     •
         Web Servers: PHP, images, video, JavaScript
     •
         Load Balancers
•
    Supports heterogeneous packages & environments
Jenkins User Conference        New York, May 17 2012   #jenkinsconf



    Forging your Deployment
    Patterns

•
    Server side
•
    Configure
     •
         Application level: Manifest
     •
         Environment level: Dictionaries
     •
         Global level: deployit-default.properties
Jenkins User Conference              New York, May 17 2012   #jenkinsconf



    Forging your Deployment
    Patterns
•
    Extend
    •
        Plugins
         •   Extend existing types, e.g. google.TomcatDataSource
         •   Modify existing types
    •
        Generic plugin
         •   Create your own model
         •   Support additional middleware platforms
    •
        Command plugin
         •   Levarage existing scripts
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  Advanced Continuous
  Deployment Best Practices


1. Build complete packages
2. “Dev commandments”
3. “Ops commandments”
4. Lock down credentials
5. Forge & share your deployment patterns
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



      An aside: Visuwall
•
     ‘Live’ Build Wall
      •
          Build time
      •
          Test coverage
      •
          LOC
      •
          …
•
     Connectors for
      •
          Jenkins
      •
          Deployit
      •
          …
•
     http://awired.github.com/visuwall/
Jenkins User Conference   New York, May 17 2012   #jenkinsconf



  Thank you!




   and...
Jenkins User Conference   New York, May 17 2012   #jenkinsconf
Jenkins User Conference     New York, May 17 2012   #jenkinsconf


        Get in touch!


                  Andrew Phillips

                          aphillips (at) xebialabs (dot) com
                                  http://www.xebialabs.com

More Related Content

What's hot

Automated Deployment Pipeline using Jenkins, Puppet, Mcollective and AWS
Automated Deployment Pipeline using Jenkins, Puppet, Mcollective and AWSAutomated Deployment Pipeline using Jenkins, Puppet, Mcollective and AWS
Automated Deployment Pipeline using Jenkins, Puppet, Mcollective and AWS
Bamdad Dashtban
 
AWS Summit Tel Aviv - Enterprise Track - Enterprise Apps & Hybrid
AWS Summit Tel Aviv - Enterprise Track - Enterprise Apps & HybridAWS Summit Tel Aviv - Enterprise Track - Enterprise Apps & Hybrid
AWS Summit Tel Aviv - Enterprise Track - Enterprise Apps & Hybrid
Amazon Web Services
 

What's hot (20)

How Nuxeo uses the open-source continuous integration server Jenkins
How Nuxeo uses the open-source continuous integration server JenkinsHow Nuxeo uses the open-source continuous integration server Jenkins
How Nuxeo uses the open-source continuous integration server Jenkins
 
Building a Service Delivery Platform - JCICPH 2014
Building a Service Delivery Platform - JCICPH 2014Building a Service Delivery Platform - JCICPH 2014
Building a Service Delivery Platform - JCICPH 2014
 
Pimp your Continuous Delivery Pipeline with Jenkins workflow (W-JAX 14)
Pimp your Continuous Delivery Pipeline with Jenkins workflow (W-JAX 14)Pimp your Continuous Delivery Pipeline with Jenkins workflow (W-JAX 14)
Pimp your Continuous Delivery Pipeline with Jenkins workflow (W-JAX 14)
 
Docker Enables DevOps
Docker Enables DevOpsDocker Enables DevOps
Docker Enables DevOps
 
Standardizing Jenkins with CloudBees Jenkins Team
Standardizing Jenkins with CloudBees Jenkins TeamStandardizing Jenkins with CloudBees Jenkins Team
Standardizing Jenkins with CloudBees Jenkins Team
 
Continuous Delivery with Jenkins Workflow
Continuous Delivery with Jenkins WorkflowContinuous Delivery with Jenkins Workflow
Continuous Delivery with Jenkins Workflow
 
Rundeck + Nexus (from Nexus Live on June 5, 2014)
Rundeck + Nexus (from Nexus Live on June 5, 2014)Rundeck + Nexus (from Nexus Live on June 5, 2014)
Rundeck + Nexus (from Nexus Live on June 5, 2014)
 
Who *is* Jenkins?
Who *is* Jenkins?Who *is* Jenkins?
Who *is* Jenkins?
 
Anatomy of a Build Pipeline
Anatomy of a Build PipelineAnatomy of a Build Pipeline
Anatomy of a Build Pipeline
 
Scaling Jenkins Enterprise Wide
Scaling Jenkins Enterprise WideScaling Jenkins Enterprise Wide
Scaling Jenkins Enterprise Wide
 
2016 Docker Palo Alto - CD with ECS and Jenkins
2016 Docker Palo Alto -  CD with ECS and Jenkins2016 Docker Palo Alto -  CD with ECS and Jenkins
2016 Docker Palo Alto - CD with ECS and Jenkins
 
Docker and Devops
Docker and DevopsDocker and Devops
Docker and Devops
 
Building a CICD pipeline for deploying to containers
Building a CICD pipeline for deploying to containersBuilding a CICD pipeline for deploying to containers
Building a CICD pipeline for deploying to containers
 
SD DevOps Meet-up - Jenkins 2.0 and Pipeline-as-Code
SD DevOps Meet-up - Jenkins 2.0 and Pipeline-as-CodeSD DevOps Meet-up - Jenkins 2.0 and Pipeline-as-Code
SD DevOps Meet-up - Jenkins 2.0 and Pipeline-as-Code
 
Large scale automation with jenkins
Large scale automation with jenkinsLarge scale automation with jenkins
Large scale automation with jenkins
 
All Things Jenkins and Cloud Foundry (Cloud Foundry Summit 2014)
 All Things Jenkins and Cloud Foundry (Cloud Foundry Summit 2014) All Things Jenkins and Cloud Foundry (Cloud Foundry Summit 2014)
All Things Jenkins and Cloud Foundry (Cloud Foundry Summit 2014)
 
Automated Deployment Pipeline using Jenkins, Puppet, Mcollective and AWS
Automated Deployment Pipeline using Jenkins, Puppet, Mcollective and AWSAutomated Deployment Pipeline using Jenkins, Puppet, Mcollective and AWS
Automated Deployment Pipeline using Jenkins, Puppet, Mcollective and AWS
 
Jenkins - From Continuous Integration to Continuous Delivery
Jenkins - From Continuous Integration to Continuous DeliveryJenkins - From Continuous Integration to Continuous Delivery
Jenkins - From Continuous Integration to Continuous Delivery
 
AWS Summit Tel Aviv - Enterprise Track - Enterprise Apps & Hybrid
AWS Summit Tel Aviv - Enterprise Track - Enterprise Apps & HybridAWS Summit Tel Aviv - Enterprise Track - Enterprise Apps & Hybrid
AWS Summit Tel Aviv - Enterprise Track - Enterprise Apps & Hybrid
 
At Your Service: Using Jenkins in Operations
At Your Service: Using Jenkins in OperationsAt Your Service: Using Jenkins in Operations
At Your Service: Using Jenkins in Operations
 

Similar to JUC NY - Advanced Continuous Deployment with Jenkins

Jenkins User Conference: Building Your Continuous Delivery Toolkit
Jenkins User Conference: Building Your Continuous Delivery ToolkitJenkins User Conference: Building Your Continuous Delivery Toolkit
Jenkins User Conference: Building Your Continuous Delivery Toolkit
XebiaLabs
 
QA in DevOps: Transformation thru Automation via Jenkins
QA in DevOps:  Transformation thru Automation via JenkinsQA in DevOps:  Transformation thru Automation via Jenkins
QA in DevOps: Transformation thru Automation via Jenkins
Tatyana Kravtsov
 
The challenge - testing the oVirt project
The challenge - testing the oVirt projectThe challenge - testing the oVirt project
The challenge - testing the oVirt project
Eyal Edri
 

Similar to JUC NY - Advanced Continuous Deployment with Jenkins (20)

JUC NYC 2012: Yale Build and Deployment with Jenkins
JUC NYC 2012: Yale Build and Deployment with JenkinsJUC NYC 2012: Yale Build and Deployment with Jenkins
JUC NYC 2012: Yale Build and Deployment with Jenkins
 
Jenkins 1
Jenkins 1Jenkins 1
Jenkins 1
 
Continuous Delivery Using Jenkins
Continuous Delivery Using JenkinsContinuous Delivery Using Jenkins
Continuous Delivery Using Jenkins
 
JUC Europe 2015: From Virtual Machines to Containers: Achieving Continuous In...
JUC Europe 2015: From Virtual Machines to Containers: Achieving Continuous In...JUC Europe 2015: From Virtual Machines to Containers: Achieving Continuous In...
JUC Europe 2015: From Virtual Machines to Containers: Achieving Continuous In...
 
From Virtual Machines to Containers
From Virtual Machines to ContainersFrom Virtual Machines to Containers
From Virtual Machines to Containers
 
Jenkins User Conference: Building Your Continuous Delivery Toolkit
Jenkins User Conference: Building Your Continuous Delivery ToolkitJenkins User Conference: Building Your Continuous Delivery Toolkit
Jenkins User Conference: Building Your Continuous Delivery Toolkit
 
Jenkins Plugin Development With Gradle And Groovy
Jenkins Plugin Development With Gradle And GroovyJenkins Plugin Development With Gradle And Groovy
Jenkins Plugin Development With Gradle And Groovy
 
JUC Europe 2015: Plugin Development with Gradle and Groovy
JUC Europe 2015: Plugin Development with Gradle and GroovyJUC Europe 2015: Plugin Development with Gradle and Groovy
JUC Europe 2015: Plugin Development with Gradle and Groovy
 
What is Jenkins | Jenkins Tutorial for Beginners | Edureka
What is Jenkins | Jenkins Tutorial for Beginners | EdurekaWhat is Jenkins | Jenkins Tutorial for Beginners | Edureka
What is Jenkins | Jenkins Tutorial for Beginners | Edureka
 
Best Practices for Mission-Critical Jenkins
Best Practices for Mission-Critical JenkinsBest Practices for Mission-Critical Jenkins
Best Practices for Mission-Critical Jenkins
 
Building your Continuous Delivery Toolkit @ JUC SF 2014
Building your Continuous Delivery Toolkit @ JUC SF 2014Building your Continuous Delivery Toolkit @ JUC SF 2014
Building your Continuous Delivery Toolkit @ JUC SF 2014
 
JUC Europe 2015: How to Optimize Automated Testing with Everyone's Favorite B...
JUC Europe 2015: How to Optimize Automated Testing with Everyone's Favorite B...JUC Europe 2015: How to Optimize Automated Testing with Everyone's Favorite B...
JUC Europe 2015: How to Optimize Automated Testing with Everyone's Favorite B...
 
QA in DevOps: Transformation thru Automation via Jenkins
QA in DevOps:  Transformation thru Automation via JenkinsQA in DevOps:  Transformation thru Automation via Jenkins
QA in DevOps: Transformation thru Automation via Jenkins
 
The challenge - testing the oVirt project
The challenge - testing the oVirt projectThe challenge - testing the oVirt project
The challenge - testing the oVirt project
 
TYPO3 Camp Stuttgart 2015 - Continuous Delivery with Open Source Tools
TYPO3 Camp Stuttgart 2015 - Continuous Delivery with Open Source ToolsTYPO3 Camp Stuttgart 2015 - Continuous Delivery with Open Source Tools
TYPO3 Camp Stuttgart 2015 - Continuous Delivery with Open Source Tools
 
Going literate in Amadeus JUC Berlin June 25th 2014
Going literate in Amadeus JUC Berlin June 25th 2014Going literate in Amadeus JUC Berlin June 25th 2014
Going literate in Amadeus JUC Berlin June 25th 2014
 
Louisville Software Engineering Meet Up: Continuous Integration Using Jenkins
Louisville Software Engineering Meet Up: Continuous Integration Using JenkinsLouisville Software Engineering Meet Up: Continuous Integration Using Jenkins
Louisville Software Engineering Meet Up: Continuous Integration Using Jenkins
 
Jenkins data mining on the command line - Jenkins User Conference NYC 2012
Jenkins data mining on the command line - Jenkins User Conference NYC 2012Jenkins data mining on the command line - Jenkins User Conference NYC 2012
Jenkins data mining on the command line - Jenkins User Conference NYC 2012
 
JUC Europe 2015: Jenkins-Based Continuous Integration for Heterogeneous Hardw...
JUC Europe 2015: Jenkins-Based Continuous Integration for Heterogeneous Hardw...JUC Europe 2015: Jenkins-Based Continuous Integration for Heterogeneous Hardw...
JUC Europe 2015: Jenkins-Based Continuous Integration for Heterogeneous Hardw...
 
Seven Habits of Highly Effective Jenkins Users (2014 edition!)
Seven Habits of Highly Effective Jenkins Users (2014 edition!)Seven Habits of Highly Effective Jenkins Users (2014 edition!)
Seven Habits of Highly Effective Jenkins Users (2014 edition!)
 

More from XebiaLabs

More from XebiaLabs (20)

Metrics That Matter: How to Measure Digital Transformation Success
Metrics That Matter: How to Measure Digital Transformation SuccessMetrics That Matter: How to Measure Digital Transformation Success
Metrics That Matter: How to Measure Digital Transformation Success
 
Infrastructure as Code in Large Scale Organizations
Infrastructure as Code in Large Scale OrganizationsInfrastructure as Code in Large Scale Organizations
Infrastructure as Code in Large Scale Organizations
 
Accelerate Your Digital Transformation: How to Achieve Business Agility with ...
Accelerate Your Digital Transformation: How to Achieve Business Agility with ...Accelerate Your Digital Transformation: How to Achieve Business Agility with ...
Accelerate Your Digital Transformation: How to Achieve Business Agility with ...
 
Don't Let Technology Slow Down Your Digital Transformation
Don't Let Technology Slow Down Your Digital Transformation Don't Let Technology Slow Down Your Digital Transformation
Don't Let Technology Slow Down Your Digital Transformation
 
Deliver More Customer Value with Value Stream Management
Deliver More Customer Value with Value Stream ManagementDeliver More Customer Value with Value Stream Management
Deliver More Customer Value with Value Stream Management
 
Building a Software Chain of Custody: A Guide for CTOs, CIOs, and Enterprise ...
Building a Software Chain of Custody: A Guide for CTOs, CIOs, and Enterprise ...Building a Software Chain of Custody: A Guide for CTOs, CIOs, and Enterprise ...
Building a Software Chain of Custody: A Guide for CTOs, CIOs, and Enterprise ...
 
XebiaLabs: DevOps 2020 with Gene Kim
XebiaLabs: DevOps 2020 with Gene KimXebiaLabs: DevOps 2020 with Gene Kim
XebiaLabs: DevOps 2020 with Gene Kim
 
From Chaos to Compliance: The New Digital Governance for DevOps
From Chaos to Compliance: The New Digital Governance for DevOpsFrom Chaos to Compliance: The New Digital Governance for DevOps
From Chaos to Compliance: The New Digital Governance for DevOps
 
Supercharge Your Digital Transformation by Establishing a DevOps Platform
Supercharge Your Digital Transformation by Establishing a DevOps PlatformSupercharge Your Digital Transformation by Establishing a DevOps Platform
Supercharge Your Digital Transformation by Establishing a DevOps Platform
 
Build a Bridge Between CI/CD and ITSM w/ Quint Technology
Build a Bridge Between CI/CD and ITSM w/ Quint TechnologyBuild a Bridge Between CI/CD and ITSM w/ Quint Technology
Build a Bridge Between CI/CD and ITSM w/ Quint Technology
 
Make Software Audit Nightmares a Thing of the Past
Make Software Audit Nightmares a Thing of the PastMake Software Audit Nightmares a Thing of the Past
Make Software Audit Nightmares a Thing of the Past
 
Is Your DevOps Ready for the Cloud?
Is Your DevOps Ready for the Cloud?Is Your DevOps Ready for the Cloud?
Is Your DevOps Ready for the Cloud?
 
Compliance und Sicherheit im Rahmen von Software-Deployments
Compliance und Sicherheit im Rahmen von Software-DeploymentsCompliance und Sicherheit im Rahmen von Software-Deployments
Compliance und Sicherheit im Rahmen von Software-Deployments
 
All Roads Lead to DevOps
All Roads Lead to DevOpsAll Roads Lead to DevOps
All Roads Lead to DevOps
 
Reaching Cloud Utopia: How to Create a Single Pipeline for Hybrid Deployments
Reaching Cloud Utopia: How to Create a Single Pipeline for Hybrid DeploymentsReaching Cloud Utopia: How to Create a Single Pipeline for Hybrid Deployments
Reaching Cloud Utopia: How to Create a Single Pipeline for Hybrid Deployments
 
Avoid Troubled Waters: Building a Bridge Between ServiceNow and CI/CD
Avoid Troubled Waters: Building a Bridge Between ServiceNow and CI/CDAvoid Troubled Waters: Building a Bridge Between ServiceNow and CI/CD
Avoid Troubled Waters: Building a Bridge Between ServiceNow and CI/CD
 
Shift Left and Automate: How to Bake Compliance and Security into Your Softwa...
Shift Left and Automate: How to Bake Compliance and Security into Your Softwa...Shift Left and Automate: How to Bake Compliance and Security into Your Softwa...
Shift Left and Automate: How to Bake Compliance and Security into Your Softwa...
 
2019 DevOps Predictions
2019 DevOps Predictions2019 DevOps Predictions
2019 DevOps Predictions
 
Building a Bridge Between CI/CD and ITSM
Building a Bridge Between CI/CD and ITSMBuilding a Bridge Between CI/CD and ITSM
Building a Bridge Between CI/CD and ITSM
 
DevOps Hits Adolescence – what’s next?
DevOps Hits Adolescence – what’s next?DevOps Hits Adolescence – what’s next?
DevOps Hits Adolescence – what’s next?
 

Recently uploaded

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Recently uploaded (20)

"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 

JUC NY - Advanced Continuous Deployment with Jenkins

  • 1. Jenkins User Conference New York, May 17 2012 #jenkinsconf Advanced Continuous Deployment with Jenkins Andrew Phillips http://www.xebialabs.com
  • 2. Jenkins User Conference New York, May 17 2012 #jenkinsconf Advanced Continuous Deployment with Jenkins with special thanks to Benoit Moussaud @bmoussaud
  • 3. Jenkins User Conference New York, May 17 2012 #jenkinsconf Continuous Integration • Emerged at the end of the ‘90s as one of the XP practices • By continuously building and testing software quality should improve • Tests often limited to unit tests (e.g. JUnit) • Sometimes also functional tests (e.g. Selenium)
  • 4. Jenkins User Conference New York, May 17 2012 #jenkinsconf CI Shortcomings • Deployment to the target platform often not part of the CI cycle ➔ Deployment procedures not tested! ➔ Application not tested on ultimate target platform!
  • 5. Jenkins User Conference New York, May 17 2012 #jenkinsconf Enter Continuous Deployment • Strictest definition: Every (tagged) version goes to production ● Used by LinkedIn amongst others. • Less strict: Include deployment in the CI cycle to test the deployed artifacts on the target platform
  • 6. Jenkins User Conference New York, May 17 2012 #jenkinsconf With Continuous Deployment... • Smoke tests • Landing page • Line of Life • Functional tests on target platform (e.g. Selenium) • Content of the landing page • Typical run • Performance tests (e.g. JMeter) • Response time of the landing page • Response time of the simple / complex path
  • 7. Jenkins User Conference New York, May 17 2012 #jenkinsconf Continuous Deployment Flow
  • 8. Jenkins User Conference New York, May 17 2012 #jenkinsconf Continuous Deployment Flow • Dev Team • Full nightly build • Tag package as “released”/”ready” • Acceptance/QA • Deploy “released” package to Test environment • Perform tests • If OK, tag package as “accepted” • Production/Ops • Deploy “accepted” packages to Production
  • 9. Jenkins User Conference New York, May 17 2012 #jenkinsconf The “Dev Commandments” For each version of the application, we shall provide one single package containing all the artifacts and resource definitions The package shall be independent of the target environment
  • 10. Jenkins User Conference New York, May 17 2012 #jenkinsconf The “Ops Commandments” We shall provide fully configured infrastructure items (hosts, application servers, web servers, databases etc.) grouped by environment We shall associate configured environment variable values to all environments
  • 11. Jenkins User Conference New York, May 17 2012 #jenkinsconf DIY with Jenkins • Maven / Ant • Cargo / SSH plugins • Middleware scripting • Maven profiles • or...?
  • 12. Jenkins User Conference New York, May 17 2012 #jenkinsconf Challenges • Middleware-specific manual effort • Exposed security credentials • How to secure pipeline to later-stage environments ? • How to separate deployment and build audits? • Time Machine (what was the state of my environment at a certain time)?
  • 13. Jenkins User Conference New York, May 17 2012 #jenkinsconf Continuous Deployment with Deployit
  • 14. Jenkins User Conference New York, May 17 2012 #jenkinsconf Continuous Deployment Flow • Dev Team • Jenkins CI drives Deployit • Creates package, publishes to Deployit and triggers deployment to the development environment • Acceptance/QA • Uses UI to deploy selected tested version to QA • Tags the version as “accepted” if all tests pass • Production/Ops • Automates deployment of accepted versions to production environments via CLI
  • 15. Jenkins User Conference New York, May 17 2012 #jenkinsconf Continuous Deployment Flow • Dev → Test → QA → Prod pipeline conditions are checked by Deployit
  • 16. Jenkins User Conference New York, May 17 2012 #jenkinsconf Deployit Jenkins Plugin
  • 17. Jenkins User Conference New York, May 17 2012 #jenkinsconf Deployit Jenkins Plugin: Package
  • 18. Jenkins User Conference New York, May 17 2012 #jenkinsconf Deployit Jenkins Plugin: Deploy
  • 19. Jenkins User Conference New York, May 17 2012 #jenkinsconf The Unified Deployment Model
  • 20. Jenkins User Conference New York, May 17 2012 #jenkinsconf Deployit Architecture
  • 21. Jenkins User Conference New York, May 17 2012 #jenkinsconf Live Demo
  • 22. Jenkins User Conference New York, May 17 2012 #jenkinsconf Security & Audit • Lock down access to target systems: only Deployit needs to know the credentials • Control deployment capabilities • permissions to deploy this on that • Track deployment activities • who deployed what where and when? • Audit past events • what happened during that deployment x months ago?
  • 23. Jenkins User Conference New York, May 17 2012 #jenkinsconf One Best Practice for Application Deployments • Targets • Java Middleware (incl. Tomcat, WebSphere, JBoss, WebLogic) • .NET & IIS • System: Files & Folders • Database: SQL (incl. rollback) • Web Servers: PHP, images, video, JavaScript • Load Balancers • Supports heterogeneous packages & environments
  • 24. Jenkins User Conference New York, May 17 2012 #jenkinsconf Forging your Deployment Patterns • Server side • Configure • Application level: Manifest • Environment level: Dictionaries • Global level: deployit-default.properties
  • 25. Jenkins User Conference New York, May 17 2012 #jenkinsconf Forging your Deployment Patterns • Extend • Plugins • Extend existing types, e.g. google.TomcatDataSource • Modify existing types • Generic plugin • Create your own model • Support additional middleware platforms • Command plugin • Levarage existing scripts
  • 26. Jenkins User Conference New York, May 17 2012 #jenkinsconf Advanced Continuous Deployment Best Practices 1. Build complete packages 2. “Dev commandments” 3. “Ops commandments” 4. Lock down credentials 5. Forge & share your deployment patterns
  • 27. Jenkins User Conference New York, May 17 2012 #jenkinsconf An aside: Visuwall • ‘Live’ Build Wall • Build time • Test coverage • LOC • … • Connectors for • Jenkins • Deployit • … • http://awired.github.com/visuwall/
  • 28. Jenkins User Conference New York, May 17 2012 #jenkinsconf Thank you! and...
  • 29. Jenkins User Conference New York, May 17 2012 #jenkinsconf
  • 30. Jenkins User Conference New York, May 17 2012 #jenkinsconf Get in touch! Andrew Phillips aphillips (at) xebialabs (dot) com http://www.xebialabs.com