SlideShare a Scribd company logo
Continuous Delivery
with OpenShift
Docker Meetup 31.5.2016
Thomas Philipona
CTO
Agenda
1. OpenShift v3
2. CI / CD
3. Key Concepts
4. OpenShift CI /CD
Pipeline with Jenkins
OpenShift v3
1
OpenShift v3
“next generation PaaS” OpenShift v3 by Red Hat
V3 new implementation based on « de facto » standard technologies
Based on reliable open source concepts
Docker Kubernetes
OpenShift v3
Container Platform as a Service (PaaS)
Multinode platform, Docker container runtime
Docker build platform
Docker registry
One platform runs it all!
Fancy CLI und GUI (self-service)
Container security enabled
Workflows
● Docker build
● Prebuilt image
● Custom builder
● Source To Image
Workflow: Source To Image (S2I)
Git ?
s2i builder image
eg. openshift/ruby-22-centos7
code
code
My App
1.push code to git
2.trigger webhook
3.clone repo
4.evaluate builder
5.assemble image
6.push to registry and deploy
1
2
3
4
5
MyApplicationMyApplicationMyApp
6
Ruby, Java, PHP, NodeJs, ...
CI / CD
2
Continuous Integration
● SCM
● compile and test
● software integration
● reporting
● deployment to test
environment
● extension of CI
● one artifact on all
environments
● fully automated
deployment with a single
click
● prod release with a single
click
● each release is deployed to
production
● rolling deployments
necessary
● blue - green deployments
Continuous Delivery Continuous Deployment
If It Hurts, Do It More Frequently,
and Bring the Pain Forward
Source: Jez Humble, David Farley, Continuous Delivery, Pearson Education, Inc. 2011
CI / CD Workflow Overview
Git
code
Compile, Unit-tests
Integration Tests, Package
Deploy to Dev
Acceptance Tests
Deploy to UAT env
Manual Tests
Deploy to Prod
Key Concepts
3
Maven / Artefactrepository
Maven versioning doesn't work well with continuous delivery
Each commit is a potential release candidate
SNAPSHOT versions do not exist
Maven release plugin is integrated into the Maven lifecycle. All or
nothing
mvn release:prepare mvn release:perform→
Many releases artifactrepository clean up→
Rolling Updates
OpenShift supports rolling updates.
The application notifies the platform when it’s ready for requests.
The routing layer then forwards requests to the new containers.
Automated Database Migration
DB Migrationscripts are part of the deployed application and
executed during startup.
$ php bin/console doctrine:schema:update
$ rake db:migrate
Automated Database Migration
Database knows the current schema version
During application startup / deployment lifecycle hook, the DB
migration is executed
Rolling update
DB must be backward compatible
Concepts: Automated Database Migration
V41 V42 V43
dropColumn
dropColumn
dropTable
dropTable
MyApplicationMyApplicationApp
DB
Concepts: Automated Database Migration
App.v41 App.v42
... oldColumn newColumn ...
guild42 guild42
DB Trigger
OpenShift CI /CD Pipeline with
Jenkins
4
Java Maven Example (1)
Git
code
Jenkins
code
Artefact Repo
artefact
checkout build release deploy
Jenkins
code
Jenkins
artefact
cfg
+ Unit test
+ Integration test
+ Code analyse
Workflow: deploy
1.Jenkins build
mvn clean install
trigger build on OSE
2.custom build
download artefact
build docker image
3.deploy container
Jenkins
artifact
1
2
MyApplicationMyApplicationMyApp
Custom builder
image
3
My App
cfg
Java Maven Example (2)
acceptance tests
Jenkins
test
Jenkins
artefact
cfg
deploy to UAT manual test
Jenkins
artefact
cfg
deploy to Prod
Jenkins Pipeline Plugin
Build jobs written as Groovy scripts.
Build job script is next to source code in git repository
Jenkins provides the environment
● Git / Artifactory / OpenShift Accounts
https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin
Example Build Script
// Stage Checkout
stage 'Checkout'
git url: 'https://gitlab.puzzle.ch/tphilipona/appuio-javaee-
example.git'
// Stage Build
stage 'Build'
sh "${mvnHome}/bin/mvn clean install"
Stage View
Conclusion
5
Key Factors: Automation and Fast Feedback
Customer,
PO
Dev Production
DeploymentIdea, Feature, Bug
Fast, qualified Feedback
Resources
https://docs.openshift.com
Q & A
01.6.2016 in BE
15.6.2016 in ZH
Free APPUiO
OpenShift Techlab
Thank You!

More Related Content

PDF
OPENSHIFT CONTAINER PLATFORM CI/CD Build & Deploy
ODP
DevOps @ OpenShift Online
PPTX
OpenShift Application Development | DO288 | Red Hat OpenShift
PDF
Evénement Docker Paris: Anticipez les nouveaux business model et réduisez vos...
PDF
Automation CI CD with Gitlab, Java, docker on Hidora - Jelastic
PDF
Introduction to GitHub Actions - How to easily automate and integrate with Gi...
PDF
Back to the Future: Containerize Legacy Applications
PPTX
Ultimate DevOps: OpenShift Dedicated With CloudBees Jenkins Platform (Andy Pe...
OPENSHIFT CONTAINER PLATFORM CI/CD Build & Deploy
DevOps @ OpenShift Online
OpenShift Application Development | DO288 | Red Hat OpenShift
Evénement Docker Paris: Anticipez les nouveaux business model et réduisez vos...
Automation CI CD with Gitlab, Java, docker on Hidora - Jelastic
Introduction to GitHub Actions - How to easily automate and integrate with Gi...
Back to the Future: Containerize Legacy Applications
Ultimate DevOps: OpenShift Dedicated With CloudBees Jenkins Platform (Andy Pe...

What's hot (20)

PDF
Multi-cloud Kubernetes BCDR with Velero
PDF
Openbar 7 - Leuven - OpenShift - The Enterprise Container Platform - Piros
PDF
Containerd + buildkit breakout
PDF
Automating CICD Pipeline with GitLab and Docker Containers for Java Applications
PDF
Cloud Native Landscape (CNCF and OCI)
PDF
#bigwhale: An Unexpected Journey into Containerization @ Lockheed Martin - Pa...
PDF
DockerCon SF 2015: Docker in the New York Times Newsroom
PPTX
DockerCon EU 2015: Placing a container on a train at 200mph
PDF
DockerCon SF 2015: Ben Golub's Keynote Day 1
PDF
Docker Meetup - Melbourne 2015 - Kubernetes Deep Dive
PPTX
DEVNET-1183 OpenShift + Kubernetes + Docker
PPTX
Open shift enterprise 3.1 paas on kubernetes
ODP
Openshift presentation
PDF
DCEU 18: App-in-a-Box with Docker Application Packages
PPTX
Webinar: End-to-End CI/CD with GitLab and DC/OS
PDF
Introduction To Flink
PDF
JavaOne 2016: Kubernetes introduction for Java Developers
PDF
How Docker EE is Finnish Railway’s Ticket to App Modernization
PDF
Cloud Native Applications on OpenShift
PDF
How to build your containerization strategy
Multi-cloud Kubernetes BCDR with Velero
Openbar 7 - Leuven - OpenShift - The Enterprise Container Platform - Piros
Containerd + buildkit breakout
Automating CICD Pipeline with GitLab and Docker Containers for Java Applications
Cloud Native Landscape (CNCF and OCI)
#bigwhale: An Unexpected Journey into Containerization @ Lockheed Martin - Pa...
DockerCon SF 2015: Docker in the New York Times Newsroom
DockerCon EU 2015: Placing a container on a train at 200mph
DockerCon SF 2015: Ben Golub's Keynote Day 1
Docker Meetup - Melbourne 2015 - Kubernetes Deep Dive
DEVNET-1183 OpenShift + Kubernetes + Docker
Open shift enterprise 3.1 paas on kubernetes
Openshift presentation
DCEU 18: App-in-a-Box with Docker Application Packages
Webinar: End-to-End CI/CD with GitLab and DC/OS
Introduction To Flink
JavaOne 2016: Kubernetes introduction for Java Developers
How Docker EE is Finnish Railway’s Ticket to App Modernization
Cloud Native Applications on OpenShift
How to build your containerization strategy
Ad

Viewers also liked (20)

PDF
Revista Fundación Carlos Sanz
PDF
The 4 Knights of Content Marketing
PDF
Hapa Japan Festival 2013 Flyer
PPTX
Straffe madammen lunch januari 2015
PPTX
Some thoughts about the gaps across languages and domains through the experi...
DOC
Youtube marketing jokes
DOCX
Gestão atuarial compilado
PDF
corripio
PDF
Sigmund freud obras completas - lopez ballesteros
PDF
Manual dqp
PPTX
Estrategia nal. obesidad 1
PPT
Marketing na Internet
PDF
Red Hat Forum Benelux 2015
PDF
OpenStack @ CERN, by Tim Bell
PDF
Mitos y errores en las relaciones de pareja
PDF
Roteiro de estudo de caso simulação do processo de compras
PPTX
Problemas de aprendizaje
PDF
OpenShift for Java EE Developers
PPTX
Seo proposal for tensator group
PPS
Aplicación de los estudios de Métodos y Tiempos
Revista Fundación Carlos Sanz
The 4 Knights of Content Marketing
Hapa Japan Festival 2013 Flyer
Straffe madammen lunch januari 2015
Some thoughts about the gaps across languages and domains through the experi...
Youtube marketing jokes
Gestão atuarial compilado
corripio
Sigmund freud obras completas - lopez ballesteros
Manual dqp
Estrategia nal. obesidad 1
Marketing na Internet
Red Hat Forum Benelux 2015
OpenStack @ CERN, by Tim Bell
Mitos y errores en las relaciones de pareja
Roteiro de estudo de caso simulação do processo de compras
Problemas de aprendizaje
OpenShift for Java EE Developers
Seo proposal for tensator group
Aplicación de los estudios de Métodos y Tiempos
Ad

Similar to Puzzle ITC Talk @Docker CH meetup CI CD_with_Openshift_0.2 (20)

PDF
Automate App Container Delivery with CI/CD and DevOps
PPTX
CICD with k8s and os
PDF
Dockerized maven
PDF
CI/CD with Openshift and Jenkins
PPTX
DevOps best practices with OpenShift
PDF
Continuous Integration/Deployment with Docker and Jenkins
PDF
Agile NCR 2013- Shekhar Gulati - Open shift platform-for-rapid-and-agile-deve...
PDF
Continuous Integration using Docker & Jenkins
PPTX
DevOps Best Practices with Openshift - DevOpsFusion 2020
PDF
OpenShift As A DevOps Platform
PDF
OpenShift Build Pipelines @ Lightweight Java User Group Meetup
PDF
Maintaining an up to date application stack (in a containerized world)
PDF
CI/CD with OCP
PPTX
Private Cloud Deployment Automation with XebiaLabs and OpenShift
PDF
Transform Digital Business with DevOps
PPTX
Continuous Integration With Jenkins Docker SQL Server
PPTX
Red Hat Openshift Fundamentals.pptx
PDF
JUC Europe 2015: Bringing CD at Cloud-Scale with Jenkins, Docker and "Tiger"
PDF
Practical continuous quality gates for development process
PDF
Javantura v4 - The power of cloud in professional services company - Ivan Krn...
Automate App Container Delivery with CI/CD and DevOps
CICD with k8s and os
Dockerized maven
CI/CD with Openshift and Jenkins
DevOps best practices with OpenShift
Continuous Integration/Deployment with Docker and Jenkins
Agile NCR 2013- Shekhar Gulati - Open shift platform-for-rapid-and-agile-deve...
Continuous Integration using Docker & Jenkins
DevOps Best Practices with Openshift - DevOpsFusion 2020
OpenShift As A DevOps Platform
OpenShift Build Pipelines @ Lightweight Java User Group Meetup
Maintaining an up to date application stack (in a containerized world)
CI/CD with OCP
Private Cloud Deployment Automation with XebiaLabs and OpenShift
Transform Digital Business with DevOps
Continuous Integration With Jenkins Docker SQL Server
Red Hat Openshift Fundamentals.pptx
JUC Europe 2015: Bringing CD at Cloud-Scale with Jenkins, Docker and "Tiger"
Practical continuous quality gates for development process
Javantura v4 - The power of cloud in professional services company - Ivan Krn...

Recently uploaded (20)

PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
A Presentation on Artificial Intelligence
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPT
Teaching material agriculture food technology
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
MYSQL Presentation for SQL database connectivity
Reach Out and Touch Someone: Haptics and Empathic Computing
20250228 LYD VKU AI Blended-Learning.pptx
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Per capita expenditure prediction using model stacking based on satellite ima...
Network Security Unit 5.pdf for BCA BBA.
Diabetes mellitus diagnosis method based random forest with bat algorithm
A Presentation on Artificial Intelligence
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Advanced methodologies resolving dimensionality complications for autism neur...
Building Integrated photovoltaic BIPV_UPV.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
Teaching material agriculture food technology
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
NewMind AI Weekly Chronicles - August'25 Week I
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy

Puzzle ITC Talk @Docker CH meetup CI CD_with_Openshift_0.2

  • 1. Continuous Delivery with OpenShift Docker Meetup 31.5.2016 Thomas Philipona CTO
  • 2. Agenda 1. OpenShift v3 2. CI / CD 3. Key Concepts 4. OpenShift CI /CD Pipeline with Jenkins
  • 4. OpenShift v3 “next generation PaaS” OpenShift v3 by Red Hat V3 new implementation based on « de facto » standard technologies
  • 5. Based on reliable open source concepts Docker Kubernetes
  • 6. OpenShift v3 Container Platform as a Service (PaaS) Multinode platform, Docker container runtime Docker build platform Docker registry One platform runs it all! Fancy CLI und GUI (self-service) Container security enabled
  • 7. Workflows ● Docker build ● Prebuilt image ● Custom builder ● Source To Image
  • 8. Workflow: Source To Image (S2I) Git ? s2i builder image eg. openshift/ruby-22-centos7 code code My App 1.push code to git 2.trigger webhook 3.clone repo 4.evaluate builder 5.assemble image 6.push to registry and deploy 1 2 3 4 5 MyApplicationMyApplicationMyApp 6 Ruby, Java, PHP, NodeJs, ...
  • 10. Continuous Integration ● SCM ● compile and test ● software integration ● reporting ● deployment to test environment ● extension of CI ● one artifact on all environments ● fully automated deployment with a single click ● prod release with a single click ● each release is deployed to production ● rolling deployments necessary ● blue - green deployments Continuous Delivery Continuous Deployment
  • 11. If It Hurts, Do It More Frequently, and Bring the Pain Forward Source: Jez Humble, David Farley, Continuous Delivery, Pearson Education, Inc. 2011
  • 12. CI / CD Workflow Overview Git code Compile, Unit-tests Integration Tests, Package Deploy to Dev Acceptance Tests Deploy to UAT env Manual Tests Deploy to Prod
  • 14. Maven / Artefactrepository Maven versioning doesn't work well with continuous delivery Each commit is a potential release candidate SNAPSHOT versions do not exist Maven release plugin is integrated into the Maven lifecycle. All or nothing mvn release:prepare mvn release:perform→ Many releases artifactrepository clean up→
  • 15. Rolling Updates OpenShift supports rolling updates. The application notifies the platform when it’s ready for requests. The routing layer then forwards requests to the new containers.
  • 16. Automated Database Migration DB Migrationscripts are part of the deployed application and executed during startup. $ php bin/console doctrine:schema:update $ rake db:migrate
  • 17. Automated Database Migration Database knows the current schema version During application startup / deployment lifecycle hook, the DB migration is executed Rolling update DB must be backward compatible
  • 18. Concepts: Automated Database Migration V41 V42 V43 dropColumn dropColumn dropTable dropTable MyApplicationMyApplicationApp DB
  • 19. Concepts: Automated Database Migration App.v41 App.v42 ... oldColumn newColumn ... guild42 guild42 DB Trigger
  • 20. OpenShift CI /CD Pipeline with Jenkins 4
  • 21. Java Maven Example (1) Git code Jenkins code Artefact Repo artefact checkout build release deploy Jenkins code Jenkins artefact cfg + Unit test + Integration test + Code analyse
  • 22. Workflow: deploy 1.Jenkins build mvn clean install trigger build on OSE 2.custom build download artefact build docker image 3.deploy container Jenkins artifact 1 2 MyApplicationMyApplicationMyApp Custom builder image 3 My App cfg
  • 23. Java Maven Example (2) acceptance tests Jenkins test Jenkins artefact cfg deploy to UAT manual test Jenkins artefact cfg deploy to Prod
  • 24. Jenkins Pipeline Plugin Build jobs written as Groovy scripts. Build job script is next to source code in git repository Jenkins provides the environment ● Git / Artifactory / OpenShift Accounts https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin
  • 25. Example Build Script // Stage Checkout stage 'Checkout' git url: 'https://gitlab.puzzle.ch/tphilipona/appuio-javaee- example.git' // Stage Build stage 'Build' sh "${mvnHome}/bin/mvn clean install"
  • 28. Key Factors: Automation and Fast Feedback Customer, PO Dev Production DeploymentIdea, Feature, Bug Fast, qualified Feedback
  • 30. Q & A 01.6.2016 in BE 15.6.2016 in ZH Free APPUiO OpenShift Techlab