SlideShare a Scribd company logo
Getting Started
with DevOps
Ahmed MISBAH
December 19th, 2020
Agenda
1. A little about me
2. DevOps story
3. What is DevOps?
4. DevOps Framework
5. Becoming a DevOps Engineer
6. eDevOps
7. Applying DevOps in Google Summer of Code!
Agenda
1. A little about me
2. DevOps story
3. What is DevOps?
4. DevOps Framework
5. Becoming a DevOps Engineer
6. eDevOps
7. Applying DevOps in Google Summer of Code!
A little about me….
u Currently a Software Architect and team leader
u Delivered many session on DevOps including:
o AMECSE 2016: “Agile Software Development and DevOps”
o AMECSE 2017 and Orange DevTest Days: “The Road to DevOps”
o DevOpsDays Cairo 2019: “How Spinnaker helped us achieve real CD”
o DevOpsDays Cairo 2020: “Implementing FaaS on K8s using Kubeless”
o Both previous session were also delivered at Orange DevTest Days
2020
o ”DevOps for absolute beginners” live on Youtube, December 2020
u Published YouTube videos promoting DevOps practices:
o TDD in IaC
o SMED in Software Development using DevOps tools
o How Serverless Architectures can help startups
o Kubeless live demo
o Generalists vs. Specialists in Agile teams
Agenda
1. A little about me
2. DevOps story
3. What is DevOps?
4. DevOps Framework
5. Becoming a DevOps Engineer
6. eDevOps
7. Applying DevOps in Google Summer of Code!
DevOps Story
Agenda
1. A little about me
2. DevOps story
3. What is DevOps?
4. DevOps Framework
5. Becoming a DevOps Engineer
6. eDevOps
7. Applying DevOps in Google Summer of Code!
What is DevOps?
DevOps is a culture, movement or practice that emphasizes the
collaboration and communication of both Software Developers
and other Information-Technology professionals while
automating the process of software delivery and infrastructure
changes.
What is DevOps?
DevOps in an extension of the agile mindset and
methodologies that is focused on brining customers value
without compromising creativity (development) and
stability (operations)
“DevOps Fundementals Workshop” V1.0 - SECC
The world before DevOps
The world before DevOps –
Agile
The world before DevOps
With DevOps…
DevOps is not….
u simply combining Development and Operations in one
team
u simply a function or title
u just tools and automation
u a separate team
u a one-size-fits-all solution
Agenda
1. A little about me
2. DevOps story
3. What is DevOps?
4. DevOps Framework
5. Becoming a DevOps Engineer
6. eDevOps
7. Applying DevOps in Google Summer of Code!
DevOps Framework Overview
People
• Mindset
Process
•Practices:
oDevOps Pipeline
o5Cs
oAutomation
oIaC
oContainerization
•KPIs
Technology
• DevOps
toolchain
• DevOps
periodic
table
DevOps Framework
u People
o Mindset
u Process
o Practices:
o Pipelines
o 5Cs
o Automation
o IaC
o Containerization
o KPIs
u Technology
o DevOps toolchain
o DevOps periodic table
Mindset
Mindset
Mindset – Lean Thinking
Lean (SWD or Manufacturing) is a systematic method in which
the core idea is to maximize customer value while
minimizing waste
u Value is everything that your customer is willing to pay
money for
u Waste is any action or step in a process that does not add
value to the customer. In other words, waste is any process
that the customer does not want to pay for
u Flow is the principle of creating a value chain with no
interruption in the production process and a state where
each activity is fully in step with every other
Mindset Conclusion
1. Bridging gaps
2. Delivering value to customers
3. Flow
As simple as that!
DevOps Framework
u People
o Mindset
u Process
o Practices:
o DevOps Pipeline
o 5Cs
o Automation
o IaC
o Containerization
o KPIs
u Technology
o DevOps toolchain
o DevOps periodic table
DevOps Pipeline
A DevOps pipeline is a set of practices that the development (Dev) and
operations (Ops) teams implement to build, test, and deploy software
faster and easier. One of the primary purposes of a pipeline is to keep
the software development process organized and focused.
DevOps Pipeline
5Cs
Continuous
Integration
Continuous
Testing
Continuous
Delivery
Continuous
Deployment
Continuous
Monitoring
5Cs of DevOps are a set of practices in software development that are of
repeatable nature and can be automated to increase quality and
productivity.
5Cs and DevOps Pipeline
Automation
Automation is the process of creating software and systems to replace
repeatable processes / activities and reduce manual intervention, thereby
significantly increasing both quality and productivity.
Examples:
u Build (Ant, Maven, Gradle, Sbt, Grunt, Gulp)
u Unit tests (JUnit)
u Code Inspection (SonarQube)
u Packaging (JAR, Docker)
u Deployment (Jenkins, Ansible, Spinnaker)
u System/Functional tests (Cucumber, JBehave, Robot Framework,
Selenium, Appium)
u Non-functional tests (Jmeter, Gatling, OWASP ZAP)
u Provisioning (Ansible, Puppet, Chef, Terraform)
u Documentation (Swagger)
Infrastructure as Code
Infrastructure as Code (IaC) is the process of managing and
provisioning computer data centers through machine-readable
definition files, rather than physical hardware configuration or
interactive configuration tools.
Containerization
Containerization is the process of packaging an application
along with its required libraries, frameworks, and
configuration files together so that it can be run in various
computing environments efficiently.
DevOps Practices Combined
DevOps Framework
u People
o Mindset
u Process
o Practices:
o DevOps Pipeline
o 5Cs
o Automation
o IaC
o Containerization
o KPIs
u Technology
o DevOps toolchain
o DevOps periodic table
KPIs - CALMS Model
• People focus
• Mindset
• Embrace change
Culture
• CI/CD
• Infrastructure as Code (IaC)Automation
• Focus on producing value for the end-user
• ProductivityLean
• Measure everything
• Show improvementMeasurement
• Collaboration
• Communication
• Open information sharing
Sharing
More KPIs
u Mean Time To Production: How long does it take for any newly committed
source code to reach production?
u Deployment Frequency: How often are releases deployed into production?
u Average Lead Time: How long does it take for a new feature to be
developed, built, tested, and deployed into production?
u Deployment Speed: How much time does it take to deploy a new release
into production?
u Production Failure Rate: How often do failures occur in production?
u Mean Time To Recover (MTTR): How long does it take to recover from a
failure?
DevOps Framework
u People
o Mindset
u Process
o Practices:
o DevOps Pipeline
o 5Cs
o Automation
o IaC
o Containerization
o KPIs
u Technology
o DevOps toolchain
o DevOps Periodic Table
DevOps Toolchain
DevOps Toolchain
DevOps Periodic Table
DevOps Toolchain Example
Plan
Code
Build
TestRelease
Deploy
Monitor
Agenda
1. A little about me
2. DevOps story
3. What is DevOps?
4. DevOps Framework
5. Becoming a DevOps Engineer
6. eDevOps
7. Applying DevOps in Google Summer of Code!
Getting Started with DevOps
Core Skills for all functions
Specific Skills per function /
role
Developer
•TDD
•BDD
•Static Code
Analysis
•Serverless
Architectures
•SMED (e.g.
Vagrant)
Tester / SDET
•BDD
•Test
Automation at
all levels and
of all types
•Chaos
Engineering
Cloud Architect
/ Engineer
•Solutions
Architecture
for major
cloud vendors
•Cost
optimization
SRE (DevOps
Engineer)
•IaC
•Configuration
Management
tools (e.g.
Ansible)
•Chaos
Engineering
•Infrastructure
testing tools
(e.g.
ServerSpec)
Getting Started with DevOps
Agenda
1. A little about me
2. DevOps story
3. What is DevOps?
4. DevOps Framework
5. Becoming a DevOps Engineer
6. eDevOps
7. Applying DevOps in Google Summer of Code!
eDevOps
More topics
u NoOps
u Continous Feedback
u Continous Documentation
u Continous Inspection
u Everything as Code
u GitOps
u Infratsructure testing and Chaos Engineering
u AIOps
u MLOps
Agenda
1. A little about me
2. DevOps story
3. What is DevOps?
4. DevOps Framework
5. Becoming a DevOps Engineer
6. eDevOps
7. Applying DevOps in Google Summer of Code!
DevOps Adoption Plan
1. Build the DevOps team
2. Design the DevOps methodology
3. Design the software architecture
4. Design the DevOps Pipeline
5. Start building the DevOps pipeline
6. Start building the software solution
7. Deliver, measure and iterate with improvements
Build the team
1. Choose the members
2. Agree on roles and responsibilities
3. Assign roles to members
My recommendations for team roles:
u Product Owner
u Developers or SDETs
u SREs
u Team must be a cross-functional and self-organizing team.
u Team members should be agile generalists (master of one
or some and jack of all trades)
DevOps methodology
My recommendation is to read the Agile Manifesto and adopt
either eXtreme Programming and / or Kanban
The Software Architecture
My recommendation is to go for:
1. A Cloud-native, 12 Factor application
2. Serverless Architectures using Google Cloud Functions or
classic monolithic or microservice architecture using GKE
DevOps Pipeline
My recommendation is to go for one of two options:
u An ”All Google” pipeline
OR
u A heterogenous pipeline
“All Google” Pipeline
Hetrogenous Pipeline
Plan
Code
Build
TestRelease
Deploy
Monitor
Google Cloud Monitoring
Depending on
programming
language
Hetrogenous Pipeline
Plan
Code
Build
TestRelease
Deploy
Monitor
Google Cloud Monitoring
OR
Depending on
programming
language
Hetrogenous Pipeline
Plan
Code
Build
TestRelease
Deploy
Monitor
Google Cloud Monitoring
OR
Depending on
programming
language
Measure and improve
u Conduct Agile retrospectives
u Measure efficiency of DevOpe framework and pipeline using
CALMS and metrics in slide 35
u Continuously improve!
DevOps Adoption Overview
Thank You
https://twitter.com/AhmedMisbahTech https://www.linkedin.com/in/ahmed-
misbah-msc-251a3a32/
https://www.youtube.com/channel/UCZxEB
qvA1fGKLusLwoadf_w

More Related Content

PPTX
DevOps 101 - an Introduction to DevOps
PDF
What is DevOps | DevOps Introduction | DevOps Training | DevOps Tutorial | Ed...
PPTX
Introduction to DevOps
PDF
DevOps - A Gentle Introduction
PPTX
DevOps introduction
PPTX
PPTX
DevSecOps reference architectures 2018
PPTX
Using Azure DevOps to continuously build, test, and deploy containerized appl...
DevOps 101 - an Introduction to DevOps
What is DevOps | DevOps Introduction | DevOps Training | DevOps Tutorial | Ed...
Introduction to DevOps
DevOps - A Gentle Introduction
DevOps introduction
DevSecOps reference architectures 2018
Using Azure DevOps to continuously build, test, and deploy containerized appl...

What's hot (20)

PPTX
An introduction to DevOps
PPTX
DevOps Foundation
PPTX
About DevOps in simple steps
PPTX
DevOps - Overview - One of the Top Trends in IT Industry
PDF
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
PDF
DevOps Powerpoint Presentation Slides
PPTX
DevOps a pratical approach
PDF
How to implement DevOps in your Organization
PDF
DevOps overview 2019-04-13 Nelkinda April Meetup
PPTX
Devops online training ppt
PPTX
DevOps introduction
PDF
"DevOps > CI+CD "
PDF
DevSecOps What Why and How
PPTX
What is DevOps? | DevOps Introduction | DevOps Tools | DevOps Tutorial For Be...
PPTX
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
PDF
DevOps
PPTX
DevOps Overview
PPTX
DevOps Introduction
PDF
DevOps Lifecycle | Edureka
PDF
DevOps introduction
An introduction to DevOps
DevOps Foundation
About DevOps in simple steps
DevOps - Overview - One of the Top Trends in IT Industry
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
DevOps Powerpoint Presentation Slides
DevOps a pratical approach
How to implement DevOps in your Organization
DevOps overview 2019-04-13 Nelkinda April Meetup
Devops online training ppt
DevOps introduction
"DevOps > CI+CD "
DevSecOps What Why and How
What is DevOps? | DevOps Introduction | DevOps Tools | DevOps Tutorial For Be...
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
DevOps
DevOps Overview
DevOps Introduction
DevOps Lifecycle | Edureka
DevOps introduction
Ad

Similar to Getting Started with DevOps (20)

PDF
DevOps for absolute beginners
PDF
What the heck is DevOps and why do we need it?
PPTX
DevOps Culture transformation in Modern Software Delivery
PDF
DevOps Culture & Methodology Intro
PPTX
AICT_presentation.pptx
PPTX
DevOps 1 (1).pptx
PDF
Dev ops
PPTX
Introduction to DevOps
PPTX
DevOps 101
PDF
SE_UNIT-9.pdf aaaaasasssasassasaaaajdjdj
PPTX
Agile development and operation of complex systems in multitechnology and mul...
PPTX
DevOps Torino Meetup Group Kickoff Meeting - Why a meetup group on DevOps, wh...
PPTX
What_is_DevOps_how_it's_very_useful_in_daily_Life.
PPTX
What is DevOps And How It Is Useful In Real life.
PPTX
ASDC_Unit notes reva University wing yel-4-2.pptx
PDF
Software Development Using DevOps
PDF
What is DevOps All You Need To Know.pdf
PDF
Introduction to DevSecOps. An intuitiv approach
PDF
SaltConf14 - Justin Carmony, Deseret Digital Media - Teaching Devs About DevOps
PPTX
What is DevOps? What is DevOps CoE?
DevOps for absolute beginners
What the heck is DevOps and why do we need it?
DevOps Culture transformation in Modern Software Delivery
DevOps Culture & Methodology Intro
AICT_presentation.pptx
DevOps 1 (1).pptx
Dev ops
Introduction to DevOps
DevOps 101
SE_UNIT-9.pdf aaaaasasssasassasaaaajdjdj
Agile development and operation of complex systems in multitechnology and mul...
DevOps Torino Meetup Group Kickoff Meeting - Why a meetup group on DevOps, wh...
What_is_DevOps_how_it's_very_useful_in_daily_Life.
What is DevOps And How It Is Useful In Real life.
ASDC_Unit notes reva University wing yel-4-2.pptx
Software Development Using DevOps
What is DevOps All You Need To Know.pdf
Introduction to DevSecOps. An intuitiv approach
SaltConf14 - Justin Carmony, Deseret Digital Media - Teaching Devs About DevOps
What is DevOps? What is DevOps CoE?
Ad

More from Ahmed Misbah (20)

PDF
6+1 Technical Tips for Tech Startups (2023 Edition)
PDF
Migrating to Microservices Patterns and Technologies (edition 2023)
PDF
Practical Microservice Architecture (edition 2022).pdf
PDF
Istio as an enabler for migrating to microservices (edition 2022)
PDF
DevOps for absolute beginners (2022 edition)
PDF
TDD Anti-patterns (2022 edition)
PPTX
Implementing FaaS on Kubernetes using Kubeless
PDF
Istio as an Enabler for Migrating Monolithic Applications to Microservices v1.3
PDF
Introduction to TDD
PPTX
Microservice test strategies for applications based on Spring, K8s and Istio
PPTX
Cucumber jvm best practices v3
PPTX
Welcome to the Professional World
PPTX
More topics on Java
PPTX
Career Paths for Software Professionals
PPTX
Effective User Story Writing
PPTX
AndGen+
PPTX
DDT Testing Library for Android
PPTX
Big Data for QAs
PPTX
Software Architecture
PPTX
Software Design
6+1 Technical Tips for Tech Startups (2023 Edition)
Migrating to Microservices Patterns and Technologies (edition 2023)
Practical Microservice Architecture (edition 2022).pdf
Istio as an enabler for migrating to microservices (edition 2022)
DevOps for absolute beginners (2022 edition)
TDD Anti-patterns (2022 edition)
Implementing FaaS on Kubernetes using Kubeless
Istio as an Enabler for Migrating Monolithic Applications to Microservices v1.3
Introduction to TDD
Microservice test strategies for applications based on Spring, K8s and Istio
Cucumber jvm best practices v3
Welcome to the Professional World
More topics on Java
Career Paths for Software Professionals
Effective User Story Writing
AndGen+
DDT Testing Library for Android
Big Data for QAs
Software Architecture
Software Design

Recently uploaded (20)

PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PPTX
ai tools demonstartion for schools and inter college
PPTX
history of c programming in notes for students .pptx
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Digital Strategies for Manufacturing Companies
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
ISO 45001 Occupational Health and Safety Management System
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
ai tools demonstartion for schools and inter college
history of c programming in notes for students .pptx
Odoo Companies in India – Driving Business Transformation.pdf
Odoo POS Development Services by CandidRoot Solutions
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Navsoft: AI-Powered Business Solutions & Custom Software Development
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Understanding Forklifts - TECH EHS Solution
Softaken Excel to vCard Converter Software.pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Design an Analysis of Algorithms II-SECS-1021-03
Which alternative to Crystal Reports is best for small or large businesses.pdf
Digital Strategies for Manufacturing Companies
VVF-Customer-Presentation2025-Ver1.9.pptx
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Wondershare Filmora 15 Crack With Activation Key [2025
How to Migrate SBCGlobal Email to Yahoo Easily
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
ISO 45001 Occupational Health and Safety Management System

Getting Started with DevOps

  • 1. Getting Started with DevOps Ahmed MISBAH December 19th, 2020
  • 2. Agenda 1. A little about me 2. DevOps story 3. What is DevOps? 4. DevOps Framework 5. Becoming a DevOps Engineer 6. eDevOps 7. Applying DevOps in Google Summer of Code!
  • 3. Agenda 1. A little about me 2. DevOps story 3. What is DevOps? 4. DevOps Framework 5. Becoming a DevOps Engineer 6. eDevOps 7. Applying DevOps in Google Summer of Code!
  • 4. A little about me…. u Currently a Software Architect and team leader u Delivered many session on DevOps including: o AMECSE 2016: “Agile Software Development and DevOps” o AMECSE 2017 and Orange DevTest Days: “The Road to DevOps” o DevOpsDays Cairo 2019: “How Spinnaker helped us achieve real CD” o DevOpsDays Cairo 2020: “Implementing FaaS on K8s using Kubeless” o Both previous session were also delivered at Orange DevTest Days 2020 o ”DevOps for absolute beginners” live on Youtube, December 2020 u Published YouTube videos promoting DevOps practices: o TDD in IaC o SMED in Software Development using DevOps tools o How Serverless Architectures can help startups o Kubeless live demo o Generalists vs. Specialists in Agile teams
  • 5. Agenda 1. A little about me 2. DevOps story 3. What is DevOps? 4. DevOps Framework 5. Becoming a DevOps Engineer 6. eDevOps 7. Applying DevOps in Google Summer of Code!
  • 7. Agenda 1. A little about me 2. DevOps story 3. What is DevOps? 4. DevOps Framework 5. Becoming a DevOps Engineer 6. eDevOps 7. Applying DevOps in Google Summer of Code!
  • 8. What is DevOps? DevOps is a culture, movement or practice that emphasizes the collaboration and communication of both Software Developers and other Information-Technology professionals while automating the process of software delivery and infrastructure changes.
  • 9. What is DevOps? DevOps in an extension of the agile mindset and methodologies that is focused on brining customers value without compromising creativity (development) and stability (operations) “DevOps Fundementals Workshop” V1.0 - SECC
  • 11. The world before DevOps – Agile
  • 14. DevOps is not…. u simply combining Development and Operations in one team u simply a function or title u just tools and automation u a separate team u a one-size-fits-all solution
  • 15. Agenda 1. A little about me 2. DevOps story 3. What is DevOps? 4. DevOps Framework 5. Becoming a DevOps Engineer 6. eDevOps 7. Applying DevOps in Google Summer of Code!
  • 16. DevOps Framework Overview People • Mindset Process •Practices: oDevOps Pipeline o5Cs oAutomation oIaC oContainerization •KPIs Technology • DevOps toolchain • DevOps periodic table
  • 17. DevOps Framework u People o Mindset u Process o Practices: o Pipelines o 5Cs o Automation o IaC o Containerization o KPIs u Technology o DevOps toolchain o DevOps periodic table
  • 20. Mindset – Lean Thinking Lean (SWD or Manufacturing) is a systematic method in which the core idea is to maximize customer value while minimizing waste u Value is everything that your customer is willing to pay money for u Waste is any action or step in a process that does not add value to the customer. In other words, waste is any process that the customer does not want to pay for u Flow is the principle of creating a value chain with no interruption in the production process and a state where each activity is fully in step with every other
  • 21. Mindset Conclusion 1. Bridging gaps 2. Delivering value to customers 3. Flow As simple as that!
  • 22. DevOps Framework u People o Mindset u Process o Practices: o DevOps Pipeline o 5Cs o Automation o IaC o Containerization o KPIs u Technology o DevOps toolchain o DevOps periodic table
  • 23. DevOps Pipeline A DevOps pipeline is a set of practices that the development (Dev) and operations (Ops) teams implement to build, test, and deploy software faster and easier. One of the primary purposes of a pipeline is to keep the software development process organized and focused.
  • 25. 5Cs Continuous Integration Continuous Testing Continuous Delivery Continuous Deployment Continuous Monitoring 5Cs of DevOps are a set of practices in software development that are of repeatable nature and can be automated to increase quality and productivity.
  • 26. 5Cs and DevOps Pipeline
  • 27. Automation Automation is the process of creating software and systems to replace repeatable processes / activities and reduce manual intervention, thereby significantly increasing both quality and productivity. Examples: u Build (Ant, Maven, Gradle, Sbt, Grunt, Gulp) u Unit tests (JUnit) u Code Inspection (SonarQube) u Packaging (JAR, Docker) u Deployment (Jenkins, Ansible, Spinnaker) u System/Functional tests (Cucumber, JBehave, Robot Framework, Selenium, Appium) u Non-functional tests (Jmeter, Gatling, OWASP ZAP) u Provisioning (Ansible, Puppet, Chef, Terraform) u Documentation (Swagger)
  • 28. Infrastructure as Code Infrastructure as Code (IaC) is the process of managing and provisioning computer data centers through machine-readable definition files, rather than physical hardware configuration or interactive configuration tools.
  • 29. Containerization Containerization is the process of packaging an application along with its required libraries, frameworks, and configuration files together so that it can be run in various computing environments efficiently.
  • 31. DevOps Framework u People o Mindset u Process o Practices: o DevOps Pipeline o 5Cs o Automation o IaC o Containerization o KPIs u Technology o DevOps toolchain o DevOps periodic table
  • 32. KPIs - CALMS Model • People focus • Mindset • Embrace change Culture • CI/CD • Infrastructure as Code (IaC)Automation • Focus on producing value for the end-user • ProductivityLean • Measure everything • Show improvementMeasurement • Collaboration • Communication • Open information sharing Sharing
  • 33. More KPIs u Mean Time To Production: How long does it take for any newly committed source code to reach production? u Deployment Frequency: How often are releases deployed into production? u Average Lead Time: How long does it take for a new feature to be developed, built, tested, and deployed into production? u Deployment Speed: How much time does it take to deploy a new release into production? u Production Failure Rate: How often do failures occur in production? u Mean Time To Recover (MTTR): How long does it take to recover from a failure?
  • 34. DevOps Framework u People o Mindset u Process o Practices: o DevOps Pipeline o 5Cs o Automation o IaC o Containerization o KPIs u Technology o DevOps toolchain o DevOps Periodic Table
  • 39. Agenda 1. A little about me 2. DevOps story 3. What is DevOps? 4. DevOps Framework 5. Becoming a DevOps Engineer 6. eDevOps 7. Applying DevOps in Google Summer of Code!
  • 41. Core Skills for all functions
  • 42. Specific Skills per function / role Developer •TDD •BDD •Static Code Analysis •Serverless Architectures •SMED (e.g. Vagrant) Tester / SDET •BDD •Test Automation at all levels and of all types •Chaos Engineering Cloud Architect / Engineer •Solutions Architecture for major cloud vendors •Cost optimization SRE (DevOps Engineer) •IaC •Configuration Management tools (e.g. Ansible) •Chaos Engineering •Infrastructure testing tools (e.g. ServerSpec)
  • 44. Agenda 1. A little about me 2. DevOps story 3. What is DevOps? 4. DevOps Framework 5. Becoming a DevOps Engineer 6. eDevOps 7. Applying DevOps in Google Summer of Code!
  • 46. More topics u NoOps u Continous Feedback u Continous Documentation u Continous Inspection u Everything as Code u GitOps u Infratsructure testing and Chaos Engineering u AIOps u MLOps
  • 47. Agenda 1. A little about me 2. DevOps story 3. What is DevOps? 4. DevOps Framework 5. Becoming a DevOps Engineer 6. eDevOps 7. Applying DevOps in Google Summer of Code!
  • 48. DevOps Adoption Plan 1. Build the DevOps team 2. Design the DevOps methodology 3. Design the software architecture 4. Design the DevOps Pipeline 5. Start building the DevOps pipeline 6. Start building the software solution 7. Deliver, measure and iterate with improvements
  • 49. Build the team 1. Choose the members 2. Agree on roles and responsibilities 3. Assign roles to members My recommendations for team roles: u Product Owner u Developers or SDETs u SREs u Team must be a cross-functional and self-organizing team. u Team members should be agile generalists (master of one or some and jack of all trades)
  • 50. DevOps methodology My recommendation is to read the Agile Manifesto and adopt either eXtreme Programming and / or Kanban
  • 51. The Software Architecture My recommendation is to go for: 1. A Cloud-native, 12 Factor application 2. Serverless Architectures using Google Cloud Functions or classic monolithic or microservice architecture using GKE
  • 52. DevOps Pipeline My recommendation is to go for one of two options: u An ”All Google” pipeline OR u A heterogenous pipeline
  • 55. Hetrogenous Pipeline Plan Code Build TestRelease Deploy Monitor Google Cloud Monitoring OR Depending on programming language
  • 56. Hetrogenous Pipeline Plan Code Build TestRelease Deploy Monitor Google Cloud Monitoring OR Depending on programming language
  • 57. Measure and improve u Conduct Agile retrospectives u Measure efficiency of DevOpe framework and pipeline using CALMS and metrics in slide 35 u Continuously improve!