SlideShare a Scribd company logo
1 of 78
Download to read offline
ROI For DevOps Culture and Practices
ACCELERATED DELIVERY
A Business Case for DevOps Culture and Practices:

Lean Management, Agile, DevOps, CI/CD, and
Microservices
BUSINESS CASE: AGILE
DEVOPS, CI/CD,
MICROSERVICES
– Jeffrey Immelt, CEO of GE
“Every industry and company that is not bringing
software to the core of their business will be
disrupted.”
2
What We Are After
❖ High performing IT organizations:
❖ 200x more frequent deployments
❖ 24x faster recovery from failure
❖ 3x lower change failure rate
❖ 22% less time on unplanned work
❖ 50% less time remediating security issues
3
DevOps The Big Picture, written by Richard Seroter (Pluralsigt)
Why We Care
❖ Elite DevOps performers:
❖ 2604x faster time to recover from incidents
❖ 46x more frequent code deployments
❖ 1.53x more likely to meet of exceed business goals
❖ 1.8x more likely to recommend their team to others
4
CI/CD: The Big Picture, written by Barry Luijbregts (Pluralsigt)
[
5
Author of best-selling agile development book

Early adopter of TDD, DevOps, Agile, etc. 

Successfully ran development organizations 

Developed open source software used by millions 

• Java Champion 2018
Early adopter and advocate of microservices

• Worked on Vert.x, QBit, Reakt, Groovy, Boon,
etc.
• Speaker on microservices at JavaOne
• Designed/implemented microservices-based
systems that scale to 100M users
RICK HIGHTOWER
[
6
‣ Past experience 

‣ Latest trends

‣ Shoulders of giants
SLIDE DECK BASED ON MANY BOOKS, AND MORE
[
7
‣ How we got here

‣ History of 

• MicroServices

• DevOps / Agile

• CI/CD

• Kubernetes

‣ Business proposition

‣ CD/CD - DevOps practices 

‣ Continuous delivery 

• Continuous integration

• Lean management and monitoring /
KPIs

• SCM / Version Control / GitOps /
Immutable infrastructure

• Trunk-based development

‣Live Demos: Concrete best practices
OUTLINE
8
DevOps is not a task; 

it’s a culture.
DevOps not just the name of a team
❖ DevOps is more than having a team called DevOps
❖ DevOps is a mindset and development culture
❖ Culture of DevOps, Agility, Lean, MVP, etc. is a clear win
❖ Case studies
❖ Continuous learning/Continuous improvement and growth
❖ There are guides, books, practices, and information
❖ It is a journey
Acceleration in Practice
❖ Make customers happy
❖ Deliver more
❖ Less burnout
❖ Grow the value of the
company
❖ Make more money
10
Acceleration in Practice
❖ Empower developers
❖ Docker, MiniKube, Kind, K8s
❖ Create environments on the fly
❖ Eliminate manual processes
❖ Reduce people-intensive tasks
❖ Add quality to the schedule
❖ Test-driven development
❖ Avoid long lead times
❖ Avoid long-lived branches
❖ Hard to merge
❖ Hard to deploy
11
How we got here
History of Microservices,
Agile, and CI/CD 
Brief history of time
How we got here
❖ Web pages that were brochures
❖ eCommerce
❖ Legacy integration
❖ Rush to ‘webify’ businesses
❖ SOA: wrap legacy systems as services to use from the web
❖ Virtualization, Virtualization 2.0, Cloud, Containers, and
now Container orchestration
Microservices: INCEPTION and Natural Evolution
❖ Now you can run a Java Virtual Machine in a Docker image
❖ Which is just a process pretending to be an OS
❖ Which is running in an OS that is running in the cloud
❖ Which is running inside of a virtual machine
❖ Which is running in Linux server that you don’t own that you share with
people whom you don’t know
❖ Servers are not giant refrigerator boxes that you order from Sun and wait three
months for (circa 2000)..… Goal was to run a lot of things on same server
❖ Did you develop code in the 90s with punch cards?
❖ Microservices recognize trend
14
Microservices
❖ Focus is building small, reusable, scalable services
❖ Adopt the Unix single-purpose utility approach to service development
❖ Small and malleable so they can be released more often
❖ Easier to write
❖ Easier to change
❖ Go hand in hand with continuous integration and continuous delivery
❖ Heavily REST-based and message oriented
❖ Focus on business capability
❖ Refocus on object oriented programming roots
❖ Organize code around business domains.
❖ Data and business rules colocated in the same process or set of processes.
What is microservice architecture?
Microservices: Key ingredients
❖ Independently deployable, small, domain-driven
services
❖ Own their data (no shared databases)
❖ Communication through a well-defined wire protocol
usually JSON over HTTP (curl-able interfaces)
❖ Well defined interfaces and minimal functionality
❖ Avoiding cascading failures and synchronous calls -
reactive design for failure
[
17
CDN INVALIDATOR MICROSERVICE – INTELLIJ
[
18
“It’s not the daily
increase but daily
decrease. Hack
away at the
unessential.”
– Bruce Lee
SOA EVOLVED
Microservices: Evolution of SOA
❖ SOA and Microservices have common goals and purposes
❖ Refinement to meet goals of polyglot devices and 3rd
generation virtualization
❖ Cloud, container, container orchestration
❖ Parts of SOA that worked well
❖ Microservices Web technologies based (or streams or messages)
❖ To provide scalability, modular, domain-driven, small, and
continuously deployable cloud-based services
[
20
“Microservices Architecture … perhaps started out as SOA and
applying lessons learned as well as pressure to:
support polyglot devices,
deploy more rapidly
And adopt
architecture liquidity that cloud computing and virtualization/
containerization provide” —Microservices Architecture Paper
SOA VS. MICROSERVICES
[
21
‣ Philosophy behind microservices mirrors Unix

‣ Unix’s inventor, Ken Thompson, defined its philosophy:

• One tool, one job.

‣ Emphasizes building short, simple, clear, modular, and extendable code 

• Easily maintained and repurposed by other developers
MICROSERVICES: UNIX PHILOSOPHY
What is microservice arc
MicroServices: Achieving Resilience
❖ Avoid synchronous calls to avoid cascading failures
❖ Instead embrace:
❖ Streams, queues,
❖ Actor systems
❖ Event loops
❖ Other async calls.
❖ Spend more time with distributed logging/log aggregation w/MDC
❖ Now distributed tracing: Jaeger, Service Mesh
22
MicroServices: Monitoring and KPIs
❖ Customer/User experience KPIs
❖ Debugging (requests per second, # threads, #
connections, failed auth, expired tokens, etc.)
❖ Circuit breaker (monitor health, restarts, act/react based
on KPIs)
❖ Cloud orchestration (monitor load, spin up instances)
❖ Health checks and observable KPIs
23
MicroServices: Continuous Deployment
❖ Microservices are continuously deployable services
❖ Focus of microservices is on breaking applications into small (micro),
reusable services that might be useful to other services or other
applications.
❖ ‘micro’ part of microservices comes to denote small
❖ Services can be deployed independently.
❖ Can be tweaked and then redeployed independently.
❖ Microservice vs monolith when deploying
What is microservice a
Evolution of Agile Development
DevOps, Agile,
TDD, CI/CD
Brief history of time
Devops: Lean, Scrum, XP, Agile, TDD, CI/CD, 12 factor
❖ TDD, CI and CI/CD
❖ Test Driven Development and Agile
❖ XP, Agile, Scrum
❖ CI/CD (Jenkins and the tools that came before)
❖ CI/CD needs automated testing
❖ DevOps aka DevSecOps
❖ Heroku and the birth of 12 factor deployment, DevOps, KPIs, SRE
❖ YBYOI vs. SRE vs. DevOps and where do you fit?
❖ SRE: Observability, Log aggregation, KPIs/Metrics, Distributed/Trace logging
❖ What is GitOps?
❖ What is immutable infrastructure?
❖ What is cloud native?
[
27
KUBERNETES
Kubernetes (K8s)
❖ Services, stateful sets, namespaces, tags, ingress, egress
❖ Helm/Kustomize for packaging an app or set of related MicroServices and deploy to K8s
❖ Multi-cloud support and just cloud support
❖ Monitoring built-in (or at least easily pluggable)
❖ Easy to ramp up (or easier)
❖ Supports flexible deployment models
❖ Integrates with Cloud providers services or runs standalone (on prem or cloud)
❖ Container Orchestration: Yarn, Mesos, Marathon, Nomad, Borg, ECS and now
Kubernetes
❖ What came before and now: Heroku/PaaS/IAAS/EC2, Docker, Docker Swarm, Mesos/
Marathon, Nomad, ECS, EKS, etc. –– K8s is the current mindshare champ.
28
No Margin. No Mission.
Business case:
Winning the race
Why we want to do it? Why it is
important!
Organizational performance
❖ High performers 2x the rate will exceed organizational performance goals as low performers:
❖ 2x profitability
❖ 2x productivity
❖ 2x market share
❖ 2x number of customers
❖ High performers twice as likely to exceed non-commercial performance goals as low performers
❖ 2x better quantity of products and services
❖ 2x operating efficiency
❖ 2x customer satisfaction
❖ 2x quality of products/services
❖ 2x achieving organizational/mission goals
❖ 50% increase in market capitalization compared to low performers!
30
Culture
❖ Bad delivery performance major contributor to burnout
❖ Deployment pain and poor software delivery practices cause organizational burnout
❖ Good technical practices predict continuous delivery
❖ DevOps Culture: Improve organizational culture, job satisfaction, delivery performance,
less burnout, less deployment pain, and less time spent on rework!
❖ High performers spend 50% less time remediating security issues than low performers
❖ Trunk-based Development (like Github flow)
❖ High performers have shortest integration times and branch lifetimes
❖ Branch life and integration typically lasting hours or a day
❖ Low performers have longest integration times and branch lifetimes
❖ Branch life and integration typically lasting days or weeks
31
[
32
DEVOPS ACCELERATING DELIVERY
Source: Forsgren PhD, Nicole, Jez Humble, Gene Kim, Accelerate. IT Revolution Press, Kindle Edition.
Software delivery performance
❖ Delivery performance improves organizational performance and quality/
customer satisfaction
❖ Delivery performance is driven by investment in DevOps
❖ To improve overall software delivery performance Improve these
❖ deploy frequency, lead time, mean time to restore (MTTR), and change fail
percentage
❖ Lead time improves with good version control and automated testing
❖ MTTR improves with good version control and monitoring
❖ Deploy frequency improves with continuous delivery
❖ Version control best practices needed for continuous delivery
Continuous delivery
❖ The ability to deliver
❖ Build quality in
❖ Work in small batches
❖ Automate repetitive tasks including
❖ testing & deployments
❖ Pursue continuous improvement
❖ Ownership
❖ Comprehensive configuration management
❖ Continuous integration
❖ Continuous testing
You can’t skip steps.
There is investment up
front.
Today’s speed up can
be tomorrows painted
yourself
In a corner.
What are the steps
How we get there
What must we ensure to hit these
amazing outcomes!
Accelerate DevOps
❖ Continuous delivery
❖ Architecture
❖ Product and process
❖ Lean Management and monitoring
❖ Cultural
Continuous delivery capabilities
❖ Implement continuous delivery / continuous deployment
❖ Version control all production artifacts
❖ Automate your deployment pipeline
❖ Implement continuous integration
❖ Use trunk-based development methods (like Github flow
instead of git flow)
❖ Implement test automation
❖ Shift left on security
[
38
Culture eats
strategy for
breakfast.
– Peter Drucker
CULTURE
Culture Capabilities
❖ Support a generative culture
❖ Encourage and support learning
❖ Encourage collaboration
❖ Make work as meaningful as possible
❖ Support and encourage transformational leadership
[
40
What gets
measured gets
improved.
– Peter Drucker
MEASUREMENT
Lean management and Monitoring Capabilities
❖ Lightweight change approval process
❖ Monitor application and system KPIs to inform business decisions
❖ Proactively check system health
❖ Preemptively detect and mitigate problems
❖ Improve process and work within WIP limits
❖ Need visible dashboards to monitor/communicate WIP, quality,
applications and systems perf
❖ Continuous improvement
Example Monitoring
❖ Hygieia
❖ Productivity dashboards
❖ Jenkins dashboards
❖ Runtime KPIs
❖ Customer KPIs
❖ Developer KPIs
❖ Grafana, Kibana, Prometheus, InfluxDB, StatsD, etc.
[
43
JENKINS BUILD SYSTEM
[
44
CODE COVERAGE DASHBOARD
[
45
PROMETHEUS – TRACKING KPIS
[
46
KUBERNETES DASHBOARD
[
47
HYGIEIA
Lean Management
❖ Process: Small Batches
❖ Decompose into features that allow for rapid development
❖ MVP - prototype with just enough features to proved business value or enable validated
learning
❖ Quickly gather customer requirements (A/B testing, customer satisfaction surveys, etc.)
❖ Team experimentation
❖ Lean Management
❖ Change approval
❖ Proactive notification
❖ Monitoring and KPIs
❖ WIP limits, visualizing work
Delivery Vs. Deployment
Continuous Delivery
Software can be deployed to production at any time
Continuous Deployment
Software is automatically deployed to production all the
time
49
Version control – SCM
❖ GitOps - keeping application code, system configuration,
application configuration, and scripts for automating
build and configuration in version control.
❖ Factors together predict IT performance
❖ Key component of continuous delivery
❖ Immutable infrastructure
❖ GitOps - keeping system and application config in git
(versioned) correlates high with delivery performance
50
Deployment Automation
❖ Deployment automation
❖ Containers, config, immutable infrastructure
❖ Comprehensive configuration management (automation
scripts), continuous integration and continuous testing
❖ Key metric of GitOps is how many diffs exists in system
config from git to deploy
51
Continuous Integration Needs
❖ Continuous integration
❖ Relies on SCM and Deployment automation
❖ Good version control, GitOps, Immutable Infrastructure
❖ Relies on automated tests
❖ Unit
❖ Integration
❖ Acceptance
❖ Functional
❖ Performance
❖ Synthetic
❖ Code coverage
❖ Static analysis
52
Trunk-based development
❖ Trunk-based development
❖ Like GitHub Flow but shorter lived branches
❖ Fewer active branches that never outlive a sprint
❖ Branch-off master per feature, bug fix, etc.
❖ More PRs more often
❖ No code freezes; integration periods less than a day
❖ Polar opposite of git flow
❖ Easy to see WIP
53
Shift left on security
❖ Integrating security into design and testing phases
❖ Security reviews of applications, including the infosec
team in design and demo process
❖ Using pre-approved security libraries and packages,
and testing security features as part of automated
testing suite
54
Concrete steps
Knowing the road
Best practices applied
Prefer Microservices…
❖ Monoliths can speed up MVP and prototypes but at a cost
❖ Hockey Stick
❖ J-Curve
❖ Monoliths make make CI/CD slower
❖ Monoliths make automated tests suites harder to build and they are needed for CI/CD
❖ Smaller monoliths and SOA is a move in the right direction, but monoliths should be
considered technical debt
❖ Refactoring to microservices is a journey
❖ Adoption is a Journey
❖ Fits the CI/CD well
❖ Fits small batch well (Lean Management)
Embrace Observability from the start
❖ Log aggregation
❖ Time series data base
❖ Log all KPIs for clusters
❖ Log all KPIs for applications and services
❖ Alerting
❖ Know when and how to employ distributed tracing
❖ Distributed/Trace logging
❖ Service Mesh
[
58
Cloud Native DevOps with Kubernetes
John Arundel and Justin Domingus

“The goal of an observability team
is not to collect logs, metrics or
traces. It is to build a culture of
engineering based on facts and
feedback, and then spread that
culture within the broader
organization.”
– Brian Knox (Digital Gear)
RECOMMENDED READING
View on Web
What is a PR? And how to ensure quality with it
❖ A PR is a pull request
❖ PR gives other developers a chance to review code before it
committed to master
❖ PR via small batch (why small? JIRA story or even a task or two)
❖ With GitHub and WebHooks you can block PRs from merging
❖ Code coverage met, build works, unit tests run, other checks
via Jenkins
❖ Reviewed and approved by at least two people
59
[
60
‣ Unit tests

‣ Perf testing JMH

‣ Functional tests

• At the HTTP layer

• At the Spring Boot layer 

‣ Acceptance tests

‣ Smoke integration tests

‣ Full integration tests

‣ Synthetic testing

‣ Code Coverage (sonarqube)

‣ Security/Vulnerability dependency
license check

• Aqua, Fortify

‣ Full integration perf testing Aqua, Fortify

‣ Full integration perf testing
TESTS TO CREATE: TDD
[
61
‣ CI/CD

‣ Deploy often (daily or more)

‣ Test often (after every checkin run all automated tests)

‣ Block PRs from merging until they pass tests

‣ Block PRs until they are reviewed

‣ Block PRs until they reach a certain code coverage 

‣ You can't do CI/CD without automated testing

‣ Testing allows you to move quickly with confidence
CI/CD TO ENFORCE QUALITY
Embrace small batch work
❖ Goal of three PRs per week
❖ Goal of one to two tasks from Jira per PR
❖ Use Jira # in commits and PR comments
❖ Break stories and features up into tasks
❖ Check in interim stories
❖ Use feature flags if it is hard to break up a feature or
story
Using Docker, Helm, Kubernetes
❖ Uber dev tools
❖ Persistent cluster set up
❖ Helm install Kubernetes
❖ Easy to integrate locally
❖ Docker, docker-deploy, helm, etc.
❖ Local integration possible and repeatable
❖ Same Docker containers in integration, development and prod
63
Example Automated deployment
❖ Merging into master triggers a deploy to integration and sends a Team message
❖ Approval from Product Manager pushes code to Prod or Demo
❖ Checking into main branch from PR (Trunk based development, i.e., GitHub flow)
❖ Artifacts and scripts for deployment checked into git and should not be modified
(GitOps)
❖ Puts code staging area to be checked by Product Manager into containers and
deployed to cluster (some ephemeral some not)
❖ Once checked by Infosec and Product Manager:
❖ Canary Deploys to 3 to 5% of traffic and is monitored (end goal) (Service Mesh,
Itsio)
❖ Then more and more as it is monitored and is ok
[
65
DEVELOPMENT PROCESS
Developer Feature Work
CI/CD Job
Groom a Jira Feature
Create Feature
Branch from Master
Work on Feature
Commit and Push
WIP
Create Feature PR
Respond to Peer
Reviews
Respond to Failed
Tests
Sync from Master Merge to Master
Build and Test
Deploy
[
66
CI/CD PROCESS
CI/CD Deployment
Developer Feature Work
Tag Release
Deploy to Integration
Run Integration Tests
Jenkins Demo
Workflow
Jenkins Approval
Workflow
Deploy to Demo
Environment
Product Manager
Ensure Changes
Approve Changes w/
Jenkins Workflow
CI/CD Build
Run Build and Unit
Tests
Ensure Build and Unit
Tests
Ensure Code
Coverage
Ensure Semantic
Version
Ensure Release Notes
Deploy to Ephemeral
Integration Env.
Run Integration Tests
Ensure Security
Checks
Ensure Two Peer
Reviews
Ready to Merge
Merge to Master Create Feature PR
Demo
❖ Jenkins
❖ Minikube/Kind
❖ Spring Boot
❖ Konfigure
❖ Kubernetes
Conclusion
Main Takeaways
❖ You can’t afford not to transform
❖ Transformation requires a deep understanding of practices
❖ ROI is there
❖ Faster to market, less burnout, more scalable, higher market cap, faster recovery, etc.
❖ Having a team called DevOps is not doing DevOps per se
❖ Continuous learning/Continuous improvement and growth
❖ Everyone gets into the DevOps mindset around TDD and integration tests
❖ Deploy small iterations continuously- Start by striving for daily deployments
❖ Automated deployment pipelines
❖ TDD and behavior driven development a MUST
❖ Kubernetes, Docker, Feature flags, Trunk based development and Microservices support these efforts
❖ DevOps is not a task; it is a culture
Appendix
Matt Damon slides
[
71
1. Microservices by Martin Fowler and James Lewis
2. Microservices Architecture by Chris Richardson
3. Micro services – Java, the Unix Way by James Lewis
4. Microservices, or How I Learned To Stop Making Monoliths and Love Conway’s Law by Cliff Moon
5. Micro service architecure by Fred George
6. Microservices are not a free lunch by Benjamin Wootton
7. Antifragility and Microservices by Russ Miles
8. The Unix Philosophy
9. Conway’s Law
10. Amazon Architecture
11. Migrating to microservices by Adrian Cockroft
12. Microservices with Spring Boot
13. Microservices for the Grumpy Neckbeard
14. Microservices definition on Wikipedia
15. Microservices and DevOps by Adrian Cockcroft
16. Building and Deploying Microservices - Bart Blommaerts
17. Microservices on the JVM - Alexander Heusingfeld
18, Microservices Shaun Abrams
19. Microservices Rick Hightower
20. Microservices Monitoring Rick Hightower
21. Microservices vs. SOA Rick Hightower
22. Microservices and Docker Rick Hightower
REFERENCES
[
72
‣ Not a new thing

‣ Not necessarily cool or hip

‣ Obvious next step in evolution

‣ Web, cloud, mobile (polyglot devices), server virtualization

‣ OS containerization, container orchestration, multi-core servers

‣ Cheaper and cheaper RAM

‣ 64 bit computing

‣ 10GB Ethernet, 100GB Ethernet, etc.
MICROSERVICES ADDRESS INDUSTRY EVOLUTION
[
73
QUALITY - UNPLANNED WORK
Source, Forsgren PhD, Nicole. Jez Humble, Gene Kim, Accelerate . IT Revolution Press. Kindle Edition.
[
74
‣ Gather and implement customer feedback 

‣ Make the flow of work through the system visible 

‣ Work in small batches 

‣ Foster and enable team experimentation
PRODUCT AND PROCESS CAPABILITIES
[
75
‣ Use loosely coupled architecture 

• Release new services on demand without outages

‣ Empower the team to select tools; trust team to pick the best tools
ARCHITECTURAL CAPABILITIES TO ACCELERATE
[
76
‣ Loosely coupled, well-encapsulated architecture drives IT performance. 

• 2017 dataset biggest contributor to continuous delivery was loosely coupled, well-
encapsulated architecture
ARCHITECTURE
[
77
‣ Experimental approach to product development highly correlates with continuous
delivery 

‣ Lean product development capabilities predict improvements in organizational culture
like reduced burnout higher software delivery performance and overall organizational
performance
LEAN PRODUCT MANAGEMENT CAPABILITIES
[
78
1. Microservices by Martin Fowler and James
Lewis

2. Microservices Architecture by Chris
Richardson

3. Micro services – Java, the Unix Way by
James Lewis

4. Microservices, or How I Learned To Stop
Making Monoliths and Love Conway’s Law
by Cliff Moon

5. Micro service architecure by Fred George

6. Microservices are not a free lunch by
Benjamin Wootton

7. Antifragility and Microservices by Russ
Miles

8. The Unix Philosophy

9. Conway’s Law

10. Amazon Architecture

11. Migrating to microservices by Adrian
Cockroft

12. Microservices with Spring Boot 

13. Microservices for the Grumpy Neckbeard

14. Microservices definition on Wikipedia

15. Microservices and DevOps by Adrian
Cockcroft

16. Building and Deploying Microservices -
Bart Blommaerts

17. Microservices on the JVM - Alexander
Heusingfeld

18. Microservices Shaun Abrams
ADDITIONAL READING

More Related Content

What's hot

F5 Synthesis Toronto February 2014 Roadshow
F5 Synthesis Toronto February 2014 RoadshowF5 Synthesis Toronto February 2014 Roadshow
F5 Synthesis Toronto February 2014 Roadshowpatmisasi
 
Designing microservices platforms with nats
Designing microservices platforms with natsDesigning microservices platforms with nats
Designing microservices platforms with natsChanaka Fernando
 
Azure reference architectures
Azure reference architecturesAzure reference architectures
Azure reference architecturesMasashi Narumoto
 
Developing Enterprise Applications for the Cloud, from Monolith to Microservice
Developing Enterprise Applications for the Cloud, from Monolith to MicroserviceDeveloping Enterprise Applications for the Cloud, from Monolith to Microservice
Developing Enterprise Applications for the Cloud, from Monolith to MicroserviceJack-Junjie Cai
 
[WSO2Con EU 2017] Container-native Architecture
[WSO2Con EU 2017] Container-native Architecture[WSO2Con EU 2017] Container-native Architecture
[WSO2Con EU 2017] Container-native ArchitectureWSO2
 
In-depth Troubleshooting on NetScaler using Command Line Tools
In-depth Troubleshooting on NetScaler using Command Line ToolsIn-depth Troubleshooting on NetScaler using Command Line Tools
In-depth Troubleshooting on NetScaler using Command Line ToolsDavid McGeough
 
XenDesktop and XenApp - 2015 summary & bit of future
XenDesktop and XenApp - 2015 summary & bit of futureXenDesktop and XenApp - 2015 summary & bit of future
XenDesktop and XenApp - 2015 summary & bit of futureMarketingArrowECS_CZ
 
[WSO2Con EU 2017] How a Large Organization Weighted on a WSO2 Integration Pla...
[WSO2Con EU 2017] How a Large Organization Weighted on a WSO2 Integration Pla...[WSO2Con EU 2017] How a Large Organization Weighted on a WSO2 Integration Pla...
[WSO2Con EU 2017] How a Large Organization Weighted on a WSO2 Integration Pla...WSO2
 
Understanding network and service virtualization
Understanding network and service virtualizationUnderstanding network and service virtualization
Understanding network and service virtualizationSDN Hub
 
VMworld 2016: Advanced Network Services with NSX
VMworld 2016: Advanced Network Services with NSXVMworld 2016: Advanced Network Services with NSX
VMworld 2016: Advanced Network Services with NSXVMworld
 
Software Defined Networking: Network Virtualization
Software Defined Networking: Network VirtualizationSoftware Defined Networking: Network Virtualization
Software Defined Networking: Network VirtualizationNetCraftsmen
 
Cloud native Continuous Delivery
Cloud native Continuous DeliveryCloud native Continuous Delivery
Cloud native Continuous DeliveryChristian Deger
 
VMware 2015: Next Horizon for Cloud Networking and Security
VMware 2015: Next Horizon for Cloud Networking and SecurityVMware 2015: Next Horizon for Cloud Networking and Security
VMware 2015: Next Horizon for Cloud Networking and SecurityVMworld
 
Service Discovery and Registration in a Microservices Architecture
Service Discovery and Registration in a Microservices ArchitectureService Discovery and Registration in a Microservices Architecture
Service Discovery and Registration in a Microservices ArchitecturePLUMgrid
 
From Relational Database Management to Big Data: Solutions for Data Migration...
From Relational Database Management to Big Data: Solutions for Data Migration...From Relational Database Management to Big Data: Solutions for Data Migration...
From Relational Database Management to Big Data: Solutions for Data Migration...Cognizant
 
Introduction to microservices Jornada Microservices
Introduction to microservices Jornada MicroservicesIntroduction to microservices Jornada Microservices
Introduction to microservices Jornada MicroservicesRoan Brasil Monteiro
 
Complex End-to-End Testing
Complex End-to-End TestingComplex End-to-End Testing
Complex End-to-End TestingErika Barron
 
VMware Horizon Customer Presentation EN
VMware Horizon Customer Presentation ENVMware Horizon Customer Presentation EN
VMware Horizon Customer Presentation ENDaron Walker
 

What's hot (20)

Citrix Day 2014: NetScaler 10.5
Citrix Day 2014: NetScaler 10.5Citrix Day 2014: NetScaler 10.5
Citrix Day 2014: NetScaler 10.5
 
F5 Synthesis Toronto February 2014 Roadshow
F5 Synthesis Toronto February 2014 RoadshowF5 Synthesis Toronto February 2014 Roadshow
F5 Synthesis Toronto February 2014 Roadshow
 
Designing microservices platforms with nats
Designing microservices platforms with natsDesigning microservices platforms with nats
Designing microservices platforms with nats
 
Azure reference architectures
Azure reference architecturesAzure reference architectures
Azure reference architectures
 
Developing Enterprise Applications for the Cloud, from Monolith to Microservice
Developing Enterprise Applications for the Cloud, from Monolith to MicroserviceDeveloping Enterprise Applications for the Cloud, from Monolith to Microservice
Developing Enterprise Applications for the Cloud, from Monolith to Microservice
 
[WSO2Con EU 2017] Container-native Architecture
[WSO2Con EU 2017] Container-native Architecture[WSO2Con EU 2017] Container-native Architecture
[WSO2Con EU 2017] Container-native Architecture
 
In-depth Troubleshooting on NetScaler using Command Line Tools
In-depth Troubleshooting on NetScaler using Command Line ToolsIn-depth Troubleshooting on NetScaler using Command Line Tools
In-depth Troubleshooting on NetScaler using Command Line Tools
 
XenDesktop and XenApp - 2015 summary & bit of future
XenDesktop and XenApp - 2015 summary & bit of futureXenDesktop and XenApp - 2015 summary & bit of future
XenDesktop and XenApp - 2015 summary & bit of future
 
[WSO2Con EU 2017] How a Large Organization Weighted on a WSO2 Integration Pla...
[WSO2Con EU 2017] How a Large Organization Weighted on a WSO2 Integration Pla...[WSO2Con EU 2017] How a Large Organization Weighted on a WSO2 Integration Pla...
[WSO2Con EU 2017] How a Large Organization Weighted on a WSO2 Integration Pla...
 
Microservices
MicroservicesMicroservices
Microservices
 
Understanding network and service virtualization
Understanding network and service virtualizationUnderstanding network and service virtualization
Understanding network and service virtualization
 
VMworld 2016: Advanced Network Services with NSX
VMworld 2016: Advanced Network Services with NSXVMworld 2016: Advanced Network Services with NSX
VMworld 2016: Advanced Network Services with NSX
 
Software Defined Networking: Network Virtualization
Software Defined Networking: Network VirtualizationSoftware Defined Networking: Network Virtualization
Software Defined Networking: Network Virtualization
 
Cloud native Continuous Delivery
Cloud native Continuous DeliveryCloud native Continuous Delivery
Cloud native Continuous Delivery
 
VMware 2015: Next Horizon for Cloud Networking and Security
VMware 2015: Next Horizon for Cloud Networking and SecurityVMware 2015: Next Horizon for Cloud Networking and Security
VMware 2015: Next Horizon for Cloud Networking and Security
 
Service Discovery and Registration in a Microservices Architecture
Service Discovery and Registration in a Microservices ArchitectureService Discovery and Registration in a Microservices Architecture
Service Discovery and Registration in a Microservices Architecture
 
From Relational Database Management to Big Data: Solutions for Data Migration...
From Relational Database Management to Big Data: Solutions for Data Migration...From Relational Database Management to Big Data: Solutions for Data Migration...
From Relational Database Management to Big Data: Solutions for Data Migration...
 
Introduction to microservices Jornada Microservices
Introduction to microservices Jornada MicroservicesIntroduction to microservices Jornada Microservices
Introduction to microservices Jornada Microservices
 
Complex End-to-End Testing
Complex End-to-End TestingComplex End-to-End Testing
Complex End-to-End Testing
 
VMware Horizon Customer Presentation EN
VMware Horizon Customer Presentation ENVMware Horizon Customer Presentation EN
VMware Horizon Customer Presentation EN
 

Similar to Accelerate Delivery: Business Case for Agile DevOps, CI/CD and Microservices

Service Mesh Talk for CTO Forum
Service Mesh Talk for CTO ForumService Mesh Talk for CTO Forum
Service Mesh Talk for CTO ForumRick Hightower
 
Accelerate Delivery: Business case for Agile DevOps, CI/CD and Microservices
Accelerate Delivery: Business case for Agile DevOps, CI/CD and MicroservicesAccelerate Delivery: Business case for Agile DevOps, CI/CD and Microservices
Accelerate Delivery: Business case for Agile DevOps, CI/CD and MicroservicesRick Hightower
 
DevOps Operations Challenges
DevOps Operations ChallengesDevOps Operations Challenges
DevOps Operations ChallengesVijaya K
 
DevOps Culture transformation in Modern Software Delivery
DevOps Culture transformation in Modern Software DeliveryDevOps Culture transformation in Modern Software Delivery
DevOps Culture transformation in Modern Software DeliveryNajib Radzuan
 
Diving Into Docker
Diving Into Docker Diving Into Docker
Diving Into Docker XebiaLabs
 
DevOps for Network Engineers
DevOps for Network EngineersDevOps for Network Engineers
DevOps for Network Engineersstefan vallin
 
DevOps Culture & Methodology Intro
DevOps Culture & Methodology IntroDevOps Culture & Methodology Intro
DevOps Culture & Methodology IntroNajib Radzuan
 
Service Mesh CTO Forum (Draft 3)
Service Mesh CTO Forum (Draft 3)Service Mesh CTO Forum (Draft 3)
Service Mesh CTO Forum (Draft 3)Rick Hightower
 
Sviluppare velocemente applicazioni sicure con SUSE CaaS Platform e SUSE Manager
Sviluppare velocemente applicazioni sicure con SUSE CaaS Platform e SUSE ManagerSviluppare velocemente applicazioni sicure con SUSE CaaS Platform e SUSE Manager
Sviluppare velocemente applicazioni sicure con SUSE CaaS Platform e SUSE ManagerSUSE Italy
 
Continuous Delivery: why ? where to start ? how to scale ?
Continuous Delivery: why ? where to start ? how to scale ?Continuous Delivery: why ? where to start ? how to scale ?
Continuous Delivery: why ? where to start ? how to scale ?Jean-Philippe Briend
 
DevOps and the DBA- 24 Hours of Pass
DevOps and the DBA-  24 Hours of PassDevOps and the DBA-  24 Hours of Pass
DevOps and the DBA- 24 Hours of PassKellyn Pot'Vin-Gorman
 
Containers - Transforming the data centre as we know it 2016
Containers - Transforming the data centre as we know it 2016Containers - Transforming the data centre as we know it 2016
Containers - Transforming the data centre as we know it 2016Keith Lynch
 
Optimizing the Ops in DevOps
Optimizing the Ops in DevOpsOptimizing the Ops in DevOps
Optimizing the Ops in DevOpsGordon Haff
 
Practical Microservice Architecture (edition 2022).pdf
Practical Microservice Architecture (edition 2022).pdfPractical Microservice Architecture (edition 2022).pdf
Practical Microservice Architecture (edition 2022).pdfAhmed Misbah
 
Network Reliability Engineering and DevNetOps - Presented at ONS March 2018
Network Reliability Engineering and DevNetOps - Presented at ONS March 2018Network Reliability Engineering and DevNetOps - Presented at ONS March 2018
Network Reliability Engineering and DevNetOps - Presented at ONS March 2018James Kelly
 
Business and IT agility through DevOps and microservice architecture powered ...
Business and IT agility through DevOps and microservice architecture powered ...Business and IT agility through DevOps and microservice architecture powered ...
Business and IT agility through DevOps and microservice architecture powered ...Lucas Jellema
 
Back To Basics
Back To BasicsBack To Basics
Back To Basicskamalikamj
 
No IT Left Behind - Connecting the Software-Defined Data Center to Multi-Moda...
No IT Left Behind - Connecting the Software-Defined Data Center to Multi-Moda...No IT Left Behind - Connecting the Software-Defined Data Center to Multi-Moda...
No IT Left Behind - Connecting the Software-Defined Data Center to Multi-Moda...Intelligent Software Solutions
 
Microservices at Scale: How to Reduce Overhead and Increase Developer Product...
Microservices at Scale: How to Reduce Overhead and Increase Developer Product...Microservices at Scale: How to Reduce Overhead and Increase Developer Product...
Microservices at Scale: How to Reduce Overhead and Increase Developer Product...DevOps.com
 

Similar to Accelerate Delivery: Business Case for Agile DevOps, CI/CD and Microservices (20)

Service Mesh Talk for CTO Forum
Service Mesh Talk for CTO ForumService Mesh Talk for CTO Forum
Service Mesh Talk for CTO Forum
 
Accelerate Delivery: Business case for Agile DevOps, CI/CD and Microservices
Accelerate Delivery: Business case for Agile DevOps, CI/CD and MicroservicesAccelerate Delivery: Business case for Agile DevOps, CI/CD and Microservices
Accelerate Delivery: Business case for Agile DevOps, CI/CD and Microservices
 
DevOps Operations Challenges
DevOps Operations ChallengesDevOps Operations Challenges
DevOps Operations Challenges
 
DevOps Culture transformation in Modern Software Delivery
DevOps Culture transformation in Modern Software DeliveryDevOps Culture transformation in Modern Software Delivery
DevOps Culture transformation in Modern Software Delivery
 
Diving Into Docker
Diving Into Docker Diving Into Docker
Diving Into Docker
 
DevOps for Network Engineers
DevOps for Network EngineersDevOps for Network Engineers
DevOps for Network Engineers
 
DevOps Culture & Methodology Intro
DevOps Culture & Methodology IntroDevOps Culture & Methodology Intro
DevOps Culture & Methodology Intro
 
Service Mesh CTO Forum (Draft 3)
Service Mesh CTO Forum (Draft 3)Service Mesh CTO Forum (Draft 3)
Service Mesh CTO Forum (Draft 3)
 
Sviluppare velocemente applicazioni sicure con SUSE CaaS Platform e SUSE Manager
Sviluppare velocemente applicazioni sicure con SUSE CaaS Platform e SUSE ManagerSviluppare velocemente applicazioni sicure con SUSE CaaS Platform e SUSE Manager
Sviluppare velocemente applicazioni sicure con SUSE CaaS Platform e SUSE Manager
 
Continuous Delivery: why ? where to start ? how to scale ?
Continuous Delivery: why ? where to start ? how to scale ?Continuous Delivery: why ? where to start ? how to scale ?
Continuous Delivery: why ? where to start ? how to scale ?
 
DevOps and the DBA- 24 Hours of Pass
DevOps and the DBA-  24 Hours of PassDevOps and the DBA-  24 Hours of Pass
DevOps and the DBA- 24 Hours of Pass
 
Webinar : Microservices and Containerization
Webinar : Microservices and ContainerizationWebinar : Microservices and Containerization
Webinar : Microservices and Containerization
 
Containers - Transforming the data centre as we know it 2016
Containers - Transforming the data centre as we know it 2016Containers - Transforming the data centre as we know it 2016
Containers - Transforming the data centre as we know it 2016
 
Optimizing the Ops in DevOps
Optimizing the Ops in DevOpsOptimizing the Ops in DevOps
Optimizing the Ops in DevOps
 
Practical Microservice Architecture (edition 2022).pdf
Practical Microservice Architecture (edition 2022).pdfPractical Microservice Architecture (edition 2022).pdf
Practical Microservice Architecture (edition 2022).pdf
 
Network Reliability Engineering and DevNetOps - Presented at ONS March 2018
Network Reliability Engineering and DevNetOps - Presented at ONS March 2018Network Reliability Engineering and DevNetOps - Presented at ONS March 2018
Network Reliability Engineering and DevNetOps - Presented at ONS March 2018
 
Business and IT agility through DevOps and microservice architecture powered ...
Business and IT agility through DevOps and microservice architecture powered ...Business and IT agility through DevOps and microservice architecture powered ...
Business and IT agility through DevOps and microservice architecture powered ...
 
Back To Basics
Back To BasicsBack To Basics
Back To Basics
 
No IT Left Behind - Connecting the Software-Defined Data Center to Multi-Moda...
No IT Left Behind - Connecting the Software-Defined Data Center to Multi-Moda...No IT Left Behind - Connecting the Software-Defined Data Center to Multi-Moda...
No IT Left Behind - Connecting the Software-Defined Data Center to Multi-Moda...
 
Microservices at Scale: How to Reduce Overhead and Increase Developer Product...
Microservices at Scale: How to Reduce Overhead and Increase Developer Product...Microservices at Scale: How to Reduce Overhead and Increase Developer Product...
Microservices at Scale: How to Reduce Overhead and Increase Developer Product...
 

More from Rick Hightower

JParse Fast JSON Parser
JParse Fast JSON ParserJParse Fast JSON Parser
JParse Fast JSON ParserRick Hightower
 
Accelerate using DevOps and CI/CD.
Accelerate using DevOps and CI/CD.Accelerate using DevOps and CI/CD.
Accelerate using DevOps and CI/CD.Rick Hightower
 
High-speed, Reactive Microservices 2017
High-speed, Reactive Microservices 2017High-speed, Reactive Microservices 2017
High-speed, Reactive Microservices 2017Rick Hightower
 
Reactive Java: Promises and Streams with Reakt (JavaOne Talk 2016)
Reactive Java:  Promises and Streams with Reakt (JavaOne Talk 2016)Reactive Java:  Promises and Streams with Reakt (JavaOne Talk 2016)
Reactive Java: Promises and Streams with Reakt (JavaOne Talk 2016)Rick Hightower
 
Reactive Java: Promises and Streams with Reakt (JavaOne talk 2016)
Reactive Java: Promises and Streams with Reakt  (JavaOne talk 2016)Reactive Java: Promises and Streams with Reakt  (JavaOne talk 2016)
Reactive Java: Promises and Streams with Reakt (JavaOne talk 2016)Rick Hightower
 
High-Speed Reactive Microservices - trials and tribulations
High-Speed Reactive Microservices - trials and tribulationsHigh-Speed Reactive Microservices - trials and tribulations
High-Speed Reactive Microservices - trials and tribulationsRick Hightower
 
High-Speed Reactive Microservices
High-Speed Reactive MicroservicesHigh-Speed Reactive Microservices
High-Speed Reactive MicroservicesRick Hightower
 
Netty Notes Part 3 - Channel Pipeline and EventLoops
Netty Notes Part 3 - Channel Pipeline and EventLoopsNetty Notes Part 3 - Channel Pipeline and EventLoops
Netty Notes Part 3 - Channel Pipeline and EventLoopsRick Hightower
 
Netty Notes Part 2 - Transports and Buffers
Netty Notes Part 2 - Transports and BuffersNetty Notes Part 2 - Transports and Buffers
Netty Notes Part 2 - Transports and BuffersRick Hightower
 
WebSocket MicroService vs. REST Microservice
WebSocket MicroService vs. REST MicroserviceWebSocket MicroService vs. REST Microservice
WebSocket MicroService vs. REST MicroserviceRick Hightower
 
Consul: Microservice Enabling Microservices and Reactive Programming
Consul: Microservice Enabling Microservices and Reactive ProgrammingConsul: Microservice Enabling Microservices and Reactive Programming
Consul: Microservice Enabling Microservices and Reactive ProgrammingRick Hightower
 
The Java Microservice Library
The Java Microservice LibraryThe Java Microservice Library
The Java Microservice LibraryRick Hightower
 
MongoDB quickstart for Java, PHP, and Python developers
MongoDB quickstart for Java, PHP, and Python developersMongoDB quickstart for Java, PHP, and Python developers
MongoDB quickstart for Java, PHP, and Python developersRick Hightower
 
Mongo DB for Java, Python and PHP Developers
Mongo DB for Java, Python and PHP DevelopersMongo DB for Java, Python and PHP Developers
Mongo DB for Java, Python and PHP DevelopersRick Hightower
 

More from Rick Hightower (16)

JParse Fast JSON Parser
JParse Fast JSON ParserJParse Fast JSON Parser
JParse Fast JSON Parser
 
Accelerate using DevOps and CI/CD.
Accelerate using DevOps and CI/CD.Accelerate using DevOps and CI/CD.
Accelerate using DevOps and CI/CD.
 
High-speed, Reactive Microservices 2017
High-speed, Reactive Microservices 2017High-speed, Reactive Microservices 2017
High-speed, Reactive Microservices 2017
 
Reactive Java: Promises and Streams with Reakt (JavaOne Talk 2016)
Reactive Java:  Promises and Streams with Reakt (JavaOne Talk 2016)Reactive Java:  Promises and Streams with Reakt (JavaOne Talk 2016)
Reactive Java: Promises and Streams with Reakt (JavaOne Talk 2016)
 
Reactive Java: Promises and Streams with Reakt (JavaOne talk 2016)
Reactive Java: Promises and Streams with Reakt  (JavaOne talk 2016)Reactive Java: Promises and Streams with Reakt  (JavaOne talk 2016)
Reactive Java: Promises and Streams with Reakt (JavaOne talk 2016)
 
High-Speed Reactive Microservices - trials and tribulations
High-Speed Reactive Microservices - trials and tribulationsHigh-Speed Reactive Microservices - trials and tribulations
High-Speed Reactive Microservices - trials and tribulations
 
High-Speed Reactive Microservices
High-Speed Reactive MicroservicesHigh-Speed Reactive Microservices
High-Speed Reactive Microservices
 
Netty Notes Part 3 - Channel Pipeline and EventLoops
Netty Notes Part 3 - Channel Pipeline and EventLoopsNetty Notes Part 3 - Channel Pipeline and EventLoops
Netty Notes Part 3 - Channel Pipeline and EventLoops
 
Netty Notes Part 2 - Transports and Buffers
Netty Notes Part 2 - Transports and BuffersNetty Notes Part 2 - Transports and Buffers
Netty Notes Part 2 - Transports and Buffers
 
Notes on Netty baics
Notes on Netty baicsNotes on Netty baics
Notes on Netty baics
 
WebSocket MicroService vs. REST Microservice
WebSocket MicroService vs. REST MicroserviceWebSocket MicroService vs. REST Microservice
WebSocket MicroService vs. REST Microservice
 
Consul: Microservice Enabling Microservices and Reactive Programming
Consul: Microservice Enabling Microservices and Reactive ProgrammingConsul: Microservice Enabling Microservices and Reactive Programming
Consul: Microservice Enabling Microservices and Reactive Programming
 
The Java Microservice Library
The Java Microservice LibraryThe Java Microservice Library
The Java Microservice Library
 
Java JSON Benchmark
Java JSON BenchmarkJava JSON Benchmark
Java JSON Benchmark
 
MongoDB quickstart for Java, PHP, and Python developers
MongoDB quickstart for Java, PHP, and Python developersMongoDB quickstart for Java, PHP, and Python developers
MongoDB quickstart for Java, PHP, and Python developers
 
Mongo DB for Java, Python and PHP Developers
Mongo DB for Java, Python and PHP DevelopersMongo DB for Java, Python and PHP Developers
Mongo DB for Java, Python and PHP Developers
 

Recently uploaded

Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 

Recently uploaded (20)

Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 

Accelerate Delivery: Business Case for Agile DevOps, CI/CD and Microservices

  • 1. ROI For DevOps Culture and Practices ACCELERATED DELIVERY A Business Case for DevOps Culture and Practices: Lean Management, Agile, DevOps, CI/CD, and Microservices BUSINESS CASE: AGILE DEVOPS, CI/CD, MICROSERVICES
  • 2. – Jeffrey Immelt, CEO of GE “Every industry and company that is not bringing software to the core of their business will be disrupted.” 2
  • 3. What We Are After ❖ High performing IT organizations: ❖ 200x more frequent deployments ❖ 24x faster recovery from failure ❖ 3x lower change failure rate ❖ 22% less time on unplanned work ❖ 50% less time remediating security issues 3 DevOps The Big Picture, written by Richard Seroter (Pluralsigt)
  • 4. Why We Care ❖ Elite DevOps performers: ❖ 2604x faster time to recover from incidents ❖ 46x more frequent code deployments ❖ 1.53x more likely to meet of exceed business goals ❖ 1.8x more likely to recommend their team to others 4 CI/CD: The Big Picture, written by Barry Luijbregts (Pluralsigt)
  • 5. [ 5 Author of best-selling agile development book Early adopter of TDD, DevOps, Agile, etc. Successfully ran development organizations Developed open source software used by millions • Java Champion 2018 Early adopter and advocate of microservices • Worked on Vert.x, QBit, Reakt, Groovy, Boon, etc. • Speaker on microservices at JavaOne • Designed/implemented microservices-based systems that scale to 100M users RICK HIGHTOWER
  • 6. [ 6 ‣ Past experience ‣ Latest trends ‣ Shoulders of giants SLIDE DECK BASED ON MANY BOOKS, AND MORE
  • 7. [ 7 ‣ How we got here ‣ History of • MicroServices • DevOps / Agile • CI/CD • Kubernetes ‣ Business proposition ‣ CD/CD - DevOps practices ‣ Continuous delivery • Continuous integration • Lean management and monitoring / KPIs • SCM / Version Control / GitOps / Immutable infrastructure • Trunk-based development ‣Live Demos: Concrete best practices OUTLINE
  • 8. 8 DevOps is not a task; it’s a culture.
  • 9. DevOps not just the name of a team ❖ DevOps is more than having a team called DevOps ❖ DevOps is a mindset and development culture ❖ Culture of DevOps, Agility, Lean, MVP, etc. is a clear win ❖ Case studies ❖ Continuous learning/Continuous improvement and growth ❖ There are guides, books, practices, and information ❖ It is a journey
  • 10. Acceleration in Practice ❖ Make customers happy ❖ Deliver more ❖ Less burnout ❖ Grow the value of the company ❖ Make more money 10
  • 11. Acceleration in Practice ❖ Empower developers ❖ Docker, MiniKube, Kind, K8s ❖ Create environments on the fly ❖ Eliminate manual processes ❖ Reduce people-intensive tasks ❖ Add quality to the schedule ❖ Test-driven development ❖ Avoid long lead times ❖ Avoid long-lived branches ❖ Hard to merge ❖ Hard to deploy 11
  • 12. How we got here History of Microservices, Agile, and CI/CD  Brief history of time
  • 13. How we got here ❖ Web pages that were brochures ❖ eCommerce ❖ Legacy integration ❖ Rush to ‘webify’ businesses ❖ SOA: wrap legacy systems as services to use from the web ❖ Virtualization, Virtualization 2.0, Cloud, Containers, and now Container orchestration
  • 14. Microservices: INCEPTION and Natural Evolution ❖ Now you can run a Java Virtual Machine in a Docker image ❖ Which is just a process pretending to be an OS ❖ Which is running in an OS that is running in the cloud ❖ Which is running inside of a virtual machine ❖ Which is running in Linux server that you don’t own that you share with people whom you don’t know ❖ Servers are not giant refrigerator boxes that you order from Sun and wait three months for (circa 2000)..… Goal was to run a lot of things on same server ❖ Did you develop code in the 90s with punch cards? ❖ Microservices recognize trend 14
  • 15. Microservices ❖ Focus is building small, reusable, scalable services ❖ Adopt the Unix single-purpose utility approach to service development ❖ Small and malleable so they can be released more often ❖ Easier to write ❖ Easier to change ❖ Go hand in hand with continuous integration and continuous delivery ❖ Heavily REST-based and message oriented ❖ Focus on business capability ❖ Refocus on object oriented programming roots ❖ Organize code around business domains. ❖ Data and business rules colocated in the same process or set of processes. What is microservice architecture?
  • 16. Microservices: Key ingredients ❖ Independently deployable, small, domain-driven services ❖ Own their data (no shared databases) ❖ Communication through a well-defined wire protocol usually JSON over HTTP (curl-able interfaces) ❖ Well defined interfaces and minimal functionality ❖ Avoiding cascading failures and synchronous calls - reactive design for failure
  • 18. [ 18 “It’s not the daily increase but daily decrease. Hack away at the unessential.” – Bruce Lee SOA EVOLVED
  • 19. Microservices: Evolution of SOA ❖ SOA and Microservices have common goals and purposes ❖ Refinement to meet goals of polyglot devices and 3rd generation virtualization ❖ Cloud, container, container orchestration ❖ Parts of SOA that worked well ❖ Microservices Web technologies based (or streams or messages) ❖ To provide scalability, modular, domain-driven, small, and continuously deployable cloud-based services
  • 20. [ 20 “Microservices Architecture … perhaps started out as SOA and applying lessons learned as well as pressure to: support polyglot devices, deploy more rapidly And adopt architecture liquidity that cloud computing and virtualization/ containerization provide” —Microservices Architecture Paper SOA VS. MICROSERVICES
  • 21. [ 21 ‣ Philosophy behind microservices mirrors Unix ‣ Unix’s inventor, Ken Thompson, defined its philosophy: • One tool, one job. ‣ Emphasizes building short, simple, clear, modular, and extendable code • Easily maintained and repurposed by other developers MICROSERVICES: UNIX PHILOSOPHY What is microservice arc
  • 22. MicroServices: Achieving Resilience ❖ Avoid synchronous calls to avoid cascading failures ❖ Instead embrace: ❖ Streams, queues, ❖ Actor systems ❖ Event loops ❖ Other async calls. ❖ Spend more time with distributed logging/log aggregation w/MDC ❖ Now distributed tracing: Jaeger, Service Mesh 22
  • 23. MicroServices: Monitoring and KPIs ❖ Customer/User experience KPIs ❖ Debugging (requests per second, # threads, # connections, failed auth, expired tokens, etc.) ❖ Circuit breaker (monitor health, restarts, act/react based on KPIs) ❖ Cloud orchestration (monitor load, spin up instances) ❖ Health checks and observable KPIs 23
  • 24. MicroServices: Continuous Deployment ❖ Microservices are continuously deployable services ❖ Focus of microservices is on breaking applications into small (micro), reusable services that might be useful to other services or other applications. ❖ ‘micro’ part of microservices comes to denote small ❖ Services can be deployed independently. ❖ Can be tweaked and then redeployed independently. ❖ Microservice vs monolith when deploying What is microservice a
  • 25. Evolution of Agile Development DevOps, Agile, TDD, CI/CD Brief history of time
  • 26. Devops: Lean, Scrum, XP, Agile, TDD, CI/CD, 12 factor ❖ TDD, CI and CI/CD ❖ Test Driven Development and Agile ❖ XP, Agile, Scrum ❖ CI/CD (Jenkins and the tools that came before) ❖ CI/CD needs automated testing ❖ DevOps aka DevSecOps ❖ Heroku and the birth of 12 factor deployment, DevOps, KPIs, SRE ❖ YBYOI vs. SRE vs. DevOps and where do you fit? ❖ SRE: Observability, Log aggregation, KPIs/Metrics, Distributed/Trace logging ❖ What is GitOps? ❖ What is immutable infrastructure? ❖ What is cloud native?
  • 28. Kubernetes (K8s) ❖ Services, stateful sets, namespaces, tags, ingress, egress ❖ Helm/Kustomize for packaging an app or set of related MicroServices and deploy to K8s ❖ Multi-cloud support and just cloud support ❖ Monitoring built-in (or at least easily pluggable) ❖ Easy to ramp up (or easier) ❖ Supports flexible deployment models ❖ Integrates with Cloud providers services or runs standalone (on prem or cloud) ❖ Container Orchestration: Yarn, Mesos, Marathon, Nomad, Borg, ECS and now Kubernetes ❖ What came before and now: Heroku/PaaS/IAAS/EC2, Docker, Docker Swarm, Mesos/ Marathon, Nomad, ECS, EKS, etc. –– K8s is the current mindshare champ. 28
  • 29. No Margin. No Mission. Business case: Winning the race Why we want to do it? Why it is important!
  • 30. Organizational performance ❖ High performers 2x the rate will exceed organizational performance goals as low performers: ❖ 2x profitability ❖ 2x productivity ❖ 2x market share ❖ 2x number of customers ❖ High performers twice as likely to exceed non-commercial performance goals as low performers ❖ 2x better quantity of products and services ❖ 2x operating efficiency ❖ 2x customer satisfaction ❖ 2x quality of products/services ❖ 2x achieving organizational/mission goals ❖ 50% increase in market capitalization compared to low performers! 30
  • 31. Culture ❖ Bad delivery performance major contributor to burnout ❖ Deployment pain and poor software delivery practices cause organizational burnout ❖ Good technical practices predict continuous delivery ❖ DevOps Culture: Improve organizational culture, job satisfaction, delivery performance, less burnout, less deployment pain, and less time spent on rework! ❖ High performers spend 50% less time remediating security issues than low performers ❖ Trunk-based Development (like Github flow) ❖ High performers have shortest integration times and branch lifetimes ❖ Branch life and integration typically lasting hours or a day ❖ Low performers have longest integration times and branch lifetimes ❖ Branch life and integration typically lasting days or weeks 31
  • 32. [ 32 DEVOPS ACCELERATING DELIVERY Source: Forsgren PhD, Nicole, Jez Humble, Gene Kim, Accelerate. IT Revolution Press, Kindle Edition.
  • 33. Software delivery performance ❖ Delivery performance improves organizational performance and quality/ customer satisfaction ❖ Delivery performance is driven by investment in DevOps ❖ To improve overall software delivery performance Improve these ❖ deploy frequency, lead time, mean time to restore (MTTR), and change fail percentage ❖ Lead time improves with good version control and automated testing ❖ MTTR improves with good version control and monitoring ❖ Deploy frequency improves with continuous delivery ❖ Version control best practices needed for continuous delivery
  • 34. Continuous delivery ❖ The ability to deliver ❖ Build quality in ❖ Work in small batches ❖ Automate repetitive tasks including ❖ testing & deployments ❖ Pursue continuous improvement ❖ Ownership ❖ Comprehensive configuration management ❖ Continuous integration ❖ Continuous testing You can’t skip steps. There is investment up front. Today’s speed up can be tomorrows painted yourself In a corner.
  • 35. What are the steps How we get there What must we ensure to hit these amazing outcomes!
  • 36. Accelerate DevOps ❖ Continuous delivery ❖ Architecture ❖ Product and process ❖ Lean Management and monitoring ❖ Cultural
  • 37. Continuous delivery capabilities ❖ Implement continuous delivery / continuous deployment ❖ Version control all production artifacts ❖ Automate your deployment pipeline ❖ Implement continuous integration ❖ Use trunk-based development methods (like Github flow instead of git flow) ❖ Implement test automation ❖ Shift left on security
  • 39. Culture Capabilities ❖ Support a generative culture ❖ Encourage and support learning ❖ Encourage collaboration ❖ Make work as meaningful as possible ❖ Support and encourage transformational leadership
  • 40. [ 40 What gets measured gets improved. – Peter Drucker MEASUREMENT
  • 41. Lean management and Monitoring Capabilities ❖ Lightweight change approval process ❖ Monitor application and system KPIs to inform business decisions ❖ Proactively check system health ❖ Preemptively detect and mitigate problems ❖ Improve process and work within WIP limits ❖ Need visible dashboards to monitor/communicate WIP, quality, applications and systems perf ❖ Continuous improvement
  • 42. Example Monitoring ❖ Hygieia ❖ Productivity dashboards ❖ Jenkins dashboards ❖ Runtime KPIs ❖ Customer KPIs ❖ Developer KPIs ❖ Grafana, Kibana, Prometheus, InfluxDB, StatsD, etc.
  • 48. Lean Management ❖ Process: Small Batches ❖ Decompose into features that allow for rapid development ❖ MVP - prototype with just enough features to proved business value or enable validated learning ❖ Quickly gather customer requirements (A/B testing, customer satisfaction surveys, etc.) ❖ Team experimentation ❖ Lean Management ❖ Change approval ❖ Proactive notification ❖ Monitoring and KPIs ❖ WIP limits, visualizing work
  • 49. Delivery Vs. Deployment Continuous Delivery Software can be deployed to production at any time Continuous Deployment Software is automatically deployed to production all the time 49
  • 50. Version control – SCM ❖ GitOps - keeping application code, system configuration, application configuration, and scripts for automating build and configuration in version control. ❖ Factors together predict IT performance ❖ Key component of continuous delivery ❖ Immutable infrastructure ❖ GitOps - keeping system and application config in git (versioned) correlates high with delivery performance 50
  • 51. Deployment Automation ❖ Deployment automation ❖ Containers, config, immutable infrastructure ❖ Comprehensive configuration management (automation scripts), continuous integration and continuous testing ❖ Key metric of GitOps is how many diffs exists in system config from git to deploy 51
  • 52. Continuous Integration Needs ❖ Continuous integration ❖ Relies on SCM and Deployment automation ❖ Good version control, GitOps, Immutable Infrastructure ❖ Relies on automated tests ❖ Unit ❖ Integration ❖ Acceptance ❖ Functional ❖ Performance ❖ Synthetic ❖ Code coverage ❖ Static analysis 52
  • 53. Trunk-based development ❖ Trunk-based development ❖ Like GitHub Flow but shorter lived branches ❖ Fewer active branches that never outlive a sprint ❖ Branch-off master per feature, bug fix, etc. ❖ More PRs more often ❖ No code freezes; integration periods less than a day ❖ Polar opposite of git flow ❖ Easy to see WIP 53
  • 54. Shift left on security ❖ Integrating security into design and testing phases ❖ Security reviews of applications, including the infosec team in design and demo process ❖ Using pre-approved security libraries and packages, and testing security features as part of automated testing suite 54
  • 55. Concrete steps Knowing the road Best practices applied
  • 56. Prefer Microservices… ❖ Monoliths can speed up MVP and prototypes but at a cost ❖ Hockey Stick ❖ J-Curve ❖ Monoliths make make CI/CD slower ❖ Monoliths make automated tests suites harder to build and they are needed for CI/CD ❖ Smaller monoliths and SOA is a move in the right direction, but monoliths should be considered technical debt ❖ Refactoring to microservices is a journey ❖ Adoption is a Journey ❖ Fits the CI/CD well ❖ Fits small batch well (Lean Management)
  • 57. Embrace Observability from the start ❖ Log aggregation ❖ Time series data base ❖ Log all KPIs for clusters ❖ Log all KPIs for applications and services ❖ Alerting ❖ Know when and how to employ distributed tracing ❖ Distributed/Trace logging ❖ Service Mesh
  • 58. [ 58 Cloud Native DevOps with Kubernetes John Arundel and Justin Domingus “The goal of an observability team is not to collect logs, metrics or traces. It is to build a culture of engineering based on facts and feedback, and then spread that culture within the broader organization.” – Brian Knox (Digital Gear) RECOMMENDED READING View on Web
  • 59. What is a PR? And how to ensure quality with it ❖ A PR is a pull request ❖ PR gives other developers a chance to review code before it committed to master ❖ PR via small batch (why small? JIRA story or even a task or two) ❖ With GitHub and WebHooks you can block PRs from merging ❖ Code coverage met, build works, unit tests run, other checks via Jenkins ❖ Reviewed and approved by at least two people 59
  • 60. [ 60 ‣ Unit tests ‣ Perf testing JMH ‣ Functional tests • At the HTTP layer • At the Spring Boot layer ‣ Acceptance tests ‣ Smoke integration tests ‣ Full integration tests
 ‣ Synthetic testing ‣ Code Coverage (sonarqube) ‣ Security/Vulnerability dependency license check • Aqua, Fortify ‣ Full integration perf testing Aqua, Fortify ‣ Full integration perf testing TESTS TO CREATE: TDD
  • 61. [ 61 ‣ CI/CD ‣ Deploy often (daily or more) ‣ Test often (after every checkin run all automated tests) ‣ Block PRs from merging until they pass tests ‣ Block PRs until they are reviewed ‣ Block PRs until they reach a certain code coverage ‣ You can't do CI/CD without automated testing ‣ Testing allows you to move quickly with confidence CI/CD TO ENFORCE QUALITY
  • 62. Embrace small batch work ❖ Goal of three PRs per week ❖ Goal of one to two tasks from Jira per PR ❖ Use Jira # in commits and PR comments ❖ Break stories and features up into tasks ❖ Check in interim stories ❖ Use feature flags if it is hard to break up a feature or story
  • 63. Using Docker, Helm, Kubernetes ❖ Uber dev tools ❖ Persistent cluster set up ❖ Helm install Kubernetes ❖ Easy to integrate locally ❖ Docker, docker-deploy, helm, etc. ❖ Local integration possible and repeatable ❖ Same Docker containers in integration, development and prod 63
  • 64. Example Automated deployment ❖ Merging into master triggers a deploy to integration and sends a Team message ❖ Approval from Product Manager pushes code to Prod or Demo ❖ Checking into main branch from PR (Trunk based development, i.e., GitHub flow) ❖ Artifacts and scripts for deployment checked into git and should not be modified (GitOps) ❖ Puts code staging area to be checked by Product Manager into containers and deployed to cluster (some ephemeral some not) ❖ Once checked by Infosec and Product Manager: ❖ Canary Deploys to 3 to 5% of traffic and is monitored (end goal) (Service Mesh, Itsio) ❖ Then more and more as it is monitored and is ok
  • 65. [ 65 DEVELOPMENT PROCESS Developer Feature Work CI/CD Job Groom a Jira Feature Create Feature Branch from Master Work on Feature Commit and Push WIP Create Feature PR Respond to Peer Reviews Respond to Failed Tests Sync from Master Merge to Master Build and Test Deploy
  • 66. [ 66 CI/CD PROCESS CI/CD Deployment Developer Feature Work Tag Release Deploy to Integration Run Integration Tests Jenkins Demo Workflow Jenkins Approval Workflow Deploy to Demo Environment Product Manager Ensure Changes Approve Changes w/ Jenkins Workflow CI/CD Build Run Build and Unit Tests Ensure Build and Unit Tests Ensure Code Coverage Ensure Semantic Version Ensure Release Notes Deploy to Ephemeral Integration Env. Run Integration Tests Ensure Security Checks Ensure Two Peer Reviews Ready to Merge Merge to Master Create Feature PR
  • 67. Demo ❖ Jenkins ❖ Minikube/Kind ❖ Spring Boot ❖ Konfigure ❖ Kubernetes
  • 69. Main Takeaways ❖ You can’t afford not to transform ❖ Transformation requires a deep understanding of practices ❖ ROI is there ❖ Faster to market, less burnout, more scalable, higher market cap, faster recovery, etc. ❖ Having a team called DevOps is not doing DevOps per se ❖ Continuous learning/Continuous improvement and growth ❖ Everyone gets into the DevOps mindset around TDD and integration tests ❖ Deploy small iterations continuously- Start by striving for daily deployments ❖ Automated deployment pipelines ❖ TDD and behavior driven development a MUST ❖ Kubernetes, Docker, Feature flags, Trunk based development and Microservices support these efforts ❖ DevOps is not a task; it is a culture
  • 71. [ 71 1. Microservices by Martin Fowler and James Lewis 2. Microservices Architecture by Chris Richardson 3. Micro services – Java, the Unix Way by James Lewis 4. Microservices, or How I Learned To Stop Making Monoliths and Love Conway’s Law by Cliff Moon 5. Micro service architecure by Fred George 6. Microservices are not a free lunch by Benjamin Wootton 7. Antifragility and Microservices by Russ Miles 8. The Unix Philosophy 9. Conway’s Law 10. Amazon Architecture 11. Migrating to microservices by Adrian Cockroft 12. Microservices with Spring Boot 13. Microservices for the Grumpy Neckbeard 14. Microservices definition on Wikipedia 15. Microservices and DevOps by Adrian Cockcroft 16. Building and Deploying Microservices - Bart Blommaerts 17. Microservices on the JVM - Alexander Heusingfeld 18, Microservices Shaun Abrams 19. Microservices Rick Hightower 20. Microservices Monitoring Rick Hightower 21. Microservices vs. SOA Rick Hightower 22. Microservices and Docker Rick Hightower REFERENCES
  • 72. [ 72 ‣ Not a new thing ‣ Not necessarily cool or hip ‣ Obvious next step in evolution ‣ Web, cloud, mobile (polyglot devices), server virtualization ‣ OS containerization, container orchestration, multi-core servers ‣ Cheaper and cheaper RAM ‣ 64 bit computing ‣ 10GB Ethernet, 100GB Ethernet, etc. MICROSERVICES ADDRESS INDUSTRY EVOLUTION
  • 73. [ 73 QUALITY - UNPLANNED WORK Source, Forsgren PhD, Nicole. Jez Humble, Gene Kim, Accelerate . IT Revolution Press. Kindle Edition.
  • 74. [ 74 ‣ Gather and implement customer feedback ‣ Make the flow of work through the system visible ‣ Work in small batches ‣ Foster and enable team experimentation PRODUCT AND PROCESS CAPABILITIES
  • 75. [ 75 ‣ Use loosely coupled architecture • Release new services on demand without outages ‣ Empower the team to select tools; trust team to pick the best tools ARCHITECTURAL CAPABILITIES TO ACCELERATE
  • 76. [ 76 ‣ Loosely coupled, well-encapsulated architecture drives IT performance. • 2017 dataset biggest contributor to continuous delivery was loosely coupled, well- encapsulated architecture ARCHITECTURE
  • 77. [ 77 ‣ Experimental approach to product development highly correlates with continuous delivery ‣ Lean product development capabilities predict improvements in organizational culture like reduced burnout higher software delivery performance and overall organizational performance LEAN PRODUCT MANAGEMENT CAPABILITIES
  • 78. [ 78 1. Microservices by Martin Fowler and James Lewis 2. Microservices Architecture by Chris Richardson 3. Micro services – Java, the Unix Way by James Lewis 4. Microservices, or How I Learned To Stop Making Monoliths and Love Conway’s Law by Cliff Moon 5. Micro service architecure by Fred George 6. Microservices are not a free lunch by Benjamin Wootton 7. Antifragility and Microservices by Russ Miles 8. The Unix Philosophy 9. Conway’s Law 10. Amazon Architecture 11. Migrating to microservices by Adrian Cockroft 12. Microservices with Spring Boot 13. Microservices for the Grumpy Neckbeard 14. Microservices definition on Wikipedia 15. Microservices and DevOps by Adrian Cockcroft 16. Building and Deploying Microservices - Bart Blommaerts 17. Microservices on the JVM - Alexander Heusingfeld 18. Microservices Shaun Abrams ADDITIONAL READING