SlideShare a Scribd company logo
1 of 6
Technology Trends
DevOps
What is DevOps ...2
Why DevOps ...2
History of DevOps ...3
DevOps Practices ...3
DevOps Lifecycle ...5
Summary ... 6
December 2016
What is DevOps ?
The Problem In A
Nutshell
 Everything needs
software.
 Software runs on a server
to become a service.
 Delivering a service from
inception to its users is
too slow and error-prone.
 There are internal friction
points that make this the
case.
 This loses you money.
(Delay = loss)
2
DevOps is the combination of cultural philosophies, practices, and tools that
increases an organization’s ability to deliver applications and services at high
velocity: evolving and improving products at a faster pace than organizations
using traditional software development and infrastructure management
processes. This speed enables organizations to better serve their customers and
compete more effectively in the market.
Why DevOps ?
Software and the Internet have transformed the world and its industries,
from shopping to entertainment to banking. Software no longer merely
supports a business; rather it becomes an integral component of every part
of a business. Companies interact with their customers through software
delivered as online services or applications and on all sorts of devices. They
also use software to increase operational efficiencies by transforming every
part of the value chain, such as logistics, communications, and operations.
In a similar way that physical goods companies transformed how they
design, build, and deliver products using industrial automation throughout
the 20th century, companies in today’s world must transform how they
build and deliver software.
DevOps is the practice of operations and development engineers participating together in the
entire service lifecycle, from design through the development process to production support.
DevOps Practices
3
There are a few key practices that help organizations innovate faster through automating and streamlining the software
development and infrastructure management processes. Most of these practices are accomplished with proper tooling.
One fundamental practice is to perform very frequent but small updates. This is how organizations innovate faster for their
customers. These updates are usually more incremental in nature than the occasional updates performed under traditional
release practices. Frequent but small updates make each deployment less risky. They help teams address bugs faster
because teams can identify the last deployment that caused the error. Although the cadence and size of updates will vary,
organizations using a DevOps model deploy updates much more often than organizations using traditional software
development practices.
Organizations might also use a microservices architecture to make their applications more flexible and enable quicker
innovation. The microservices architecture decouples large, complex systems into simple, independent projects.
Applications are broken into many individual components (services) with each service scoped to a single purpose or function
and operated independently of its peer services and the application as a whole. This architecture reduces the coordination
overhead of updating applications, and when each service is paired with small, agile teams who take ownership of each
service, organizations can move more quickly.
History of DevOps
The DevOps movement started to coalesce some time between 2007 - 2008, when IT operations
and software development communities got vocal about what they felt was a fatal level of
dysfunction in the industry. They railed against the traditional software development model,
which called for those who write the code to be organizationally and functionally apart from
those who deploy and support that code.
Developers and IT/Ops professionals had separate (and often competing) objectives, separate
department leadership, separate key performance indicators by which they were judged, and
often worked on separate floors or even separate buildings. The result was siloed teams
concerned only with their own fiefdoms, long hours, botched releases, and unhappy customers.
You’re using agile methodologies for planning and development, but still struggling to get that
code out the door without a bunch of drama. You’ve heard a few things about DevOps and the
seemingly magical effect it can have on teams and think “I want some of that magic.”
The bad news is that DevOps isn’t magic, and transformations don’t happen overnight. The good
news is that you don’t have to wait for upper management to roll out a large-scale initiative. By
understanding the pillars of DevOps and making small, incremental changes, your team can
embark on the DevOps journey right away. Let’s start with the CALMS framework.
“But,” you might ask, “how is
the DevOps Lifecycle
different?” It can be summed
up with the acronym C.A.L.M.S.
 C – Culture
 A – Automation
 L – Lean
 M – Measurement
 S – Sharing
4
Continuous Integration
Developers regularly merge their code changes into a central repository, after which automated builds and
tests are run. The key goals of continuous integration are to find and address bugs quicker, improve software
quality, and reduce the time it takes to validate and release new software updates.
Continuous Delivery
Code changes are automatically built, tested, and prepared for a release to production. It expands upon
continuous integration by deploying all code changes to a testing environment and/or a production
environment after the build stage. When continuous delivery is implemented properly, developers will always
have a deployment-ready build artifact that has passed through a standardized test process.
Microservices
Build a single application as a set of small services. Each service runs in its own process and communicates
with other services through a well-defined interface using a lightweight mechanism, typically an HTTP-based
application programming interface (API). Microservices are built around business capabilities; each service is
scoped to a single purpose. You can use different frameworks or programming languages to write
microservices and deploy them independently, as a single service, or as a group of services.
Infrastructure is provisioned and managed using code and software development techniques, such as version
control and continuous integration. The cloud’s API-driven model enables developers and system
administrators to interact with infrastructure programmatically, and at scale, instead of needing to manually
set up and configure resources. Thus, engineers can interface with infrastructure using code-based tools and
treat infrastructure in a manner similar to how they treat application code. Because they are defined by code,
infrastructure and servers can quickly be deployed using standardized patterns, updated with the latest
patches and versions, or duplicated in repeatable ways.
Infrastructure as Code
Communication and Collaboration
Organizations monitor metrics and logs to see how application and infrastructure performance impacts the
experience of their product’s end user. By capturing, categorizing, and then analyzing data and logs
generated by applications and infrastructure, organizations understand how changes or updates impact
users, shedding insights into the root causes of problems or unexpected changes. Active monitoring
becomes increasingly important as services must be available 24/7 and as application and infrastructure
update frequency increases. Creating alerts or performing real-time analysis of this data also helps
organizations more proactively monitor their services.
Monitoring and Logging
Increased communication and collaboration in an organization is one of the key cultural aspects of DevOps.
The use of DevOps tooling and automation of the software delivery process establishes collaboration by
physically bringing together the workflows and responsibilities of development and operations. Building on
top of that, these teams set strong cultural norms around information sharing and facilitating
communication through the use of chat applications, issue or project tracking systems, and wikis. This helps
speed up communication across developers, operations, and even other teams like marketing or sales,
allowing all parts of the organization to align more closely on goals and projects.
5
Together, these practices
help organizations deliver
faster, more reliable
updates to their customers.
Here is an overviewof
important DevOps
practices.
Utilizing a DevOps lifecycle,
products can be continuously
deployed in a feedback loop
through:
 Infrastructure Automation
 Configuration Management
 Deployment Automation
 Infrastructure Monitoring
 Log Management
 Application and Performance
Management
Technical benefits:
Continuous software delivery
Less complex problems to fix
Faster resolution of problems
Business benefits:
Faster delivery of features
More stable operating
environments
More time available to add value
(rather than fix/maintain)
The DevOps Lifecycle Looks Like
1. Check in code
2. Pull code changes for build
3. Run tests (continuous integration server to generate builds and arrange
releases): Test individual models, run integration tests, and run user acceptance
tests.
4. Store artifacts and build repository (repository for storing artifacts, results,
and releases)
5. Deploy and release (release automation product to deploy apps)
6. Configure environment
7. Update databases
8. Update apps
9. Push to users – who receive tested app updates frequently and without
interruption
10. Application and Network Performance Monitoring (preventive safeguard)
Rinse and repeat
What are DevOps Skills
Our respondents identified the top three skill areas for DevOps staff:
 Coding or scripting
 Process re-engineering
 Communicating and collaborating with others
These skills all point to a growing recognition that software isn’t written in the old
way anymore. Where software used to be written from scratch in a highly complex
and lengthy process, creating new products is now often a matter of choosing open
source components and stitching them together with code. The complexity of
today’s software lies less in the authoring, and more in ensuring that the new
software will work across a diverse set of operating systems and platforms right
away. Likewise, testing and deployment are now done much more frequently. That
is, they can be more frequent — if developers communicate early and regularly
with the operations team, and if ops people bring their knowledge of the
production environment to design of testing and staging environments.
DevOps is also characterized by operations staff making use many of
the same techniques as developers for their systems work.
6
Summary
DevOps isn't a tool or a product. It's an approach to operations. By uniting development and operations teams
to automate and standardize processes for infrastructure deployment, you get faster innovation, accelerated
time to market, improved deployment quality, better operational efficiency, and more time to focus on your
core business goals.
 Faster release of apps with automation of integrated build, test and deployment process
 Increase developer and operational efficiency by managing your infrastructure as code
 Improve customer experience with immediate feedback loops and continuous improvement
DevOps Values believe the fundamental DevOps values are effectively captured in the Agile
Manifesto with perhaps one slight emendation to focus on the overall service or software
fully delivered to the customer instead of simply “working software.”
References:
Gartner,IDC, Amazon, Wikipedia, HP, Microsoft and several technology vendors and
research companies.

More Related Content

What's hot

DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
Simplilearn
 

What's hot (20)

Dev ops != Dev+Ops
Dev ops != Dev+OpsDev ops != Dev+Ops
Dev ops != Dev+Ops
 
Understanding DevOps
Understanding DevOpsUnderstanding DevOps
Understanding DevOps
 
What is DevOps | DevOps Introduction | DevOps Training | DevOps Tutorial | Ed...
What is DevOps | DevOps Introduction | DevOps Training | DevOps Tutorial | Ed...What is DevOps | DevOps Introduction | DevOps Training | DevOps Tutorial | Ed...
What is DevOps | DevOps Introduction | DevOps Training | DevOps Tutorial | Ed...
 
Devops ppt
Devops pptDevops ppt
Devops ppt
 
Devops online training ppt
Devops online training pptDevops online training ppt
Devops online training ppt
 
DevOps vs Agile | DevOps Tutorial For Beginners | DevOps Training | Edureka
DevOps vs Agile | DevOps Tutorial For Beginners | DevOps Training | EdurekaDevOps vs Agile | DevOps Tutorial For Beginners | DevOps Training | Edureka
DevOps vs Agile | DevOps Tutorial For Beginners | DevOps Training | Edureka
 
DevOps - A Gentle Introduction
DevOps - A Gentle IntroductionDevOps - A Gentle Introduction
DevOps - A Gentle Introduction
 
Introduction to DevOps
Introduction to DevOpsIntroduction to DevOps
Introduction to DevOps
 
DevOps
DevOpsDevOps
DevOps
 
DevOps and Tools
DevOps and ToolsDevOps and Tools
DevOps and Tools
 
DevOps Offerings at WhiteHedge
DevOps Offerings at WhiteHedge  DevOps Offerings at WhiteHedge
DevOps Offerings at WhiteHedge
 
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 
CI/CD Best Practices for Your DevOps Journey
CI/CD Best  Practices for Your DevOps JourneyCI/CD Best  Practices for Your DevOps Journey
CI/CD Best Practices for Your DevOps Journey
 
DevOps concepts, tools, and technologies v1.0
DevOps concepts, tools, and technologies v1.0DevOps concepts, tools, and technologies v1.0
DevOps concepts, tools, and technologies v1.0
 
CI/CD (DevOps) 101
CI/CD (DevOps) 101CI/CD (DevOps) 101
CI/CD (DevOps) 101
 
Introduction to DevOps
Introduction to DevOpsIntroduction to DevOps
Introduction to DevOps
 
Introducing DevOps, IT Sharing Session 20 Nov 2017
Introducing DevOps, IT Sharing Session 20 Nov 2017Introducing DevOps, IT Sharing Session 20 Nov 2017
Introducing DevOps, IT Sharing Session 20 Nov 2017
 
DevOps and AWS
DevOps and AWSDevOps and AWS
DevOps and AWS
 
DevOps explained
DevOps explainedDevOps explained
DevOps explained
 

Viewers also liked (8)

ITILCertificate.AXELOS
ITILCertificate.AXELOSITILCertificate.AXELOS
ITILCertificate.AXELOS
 
PSM I
PSM IPSM I
PSM I
 
TOGAFcertificate_90354
TOGAFcertificate_90354TOGAFcertificate_90354
TOGAFcertificate_90354
 
Sosyal Medya Marka Yönetimi
Sosyal Medya Marka YönetimiSosyal Medya Marka Yönetimi
Sosyal Medya Marka Yönetimi
 
İş Sürekliliği
İş Sürekliliğiİş Sürekliliği
İş Sürekliliği
 
Bulut Bilişim El Kitabı
Bulut Bilişim El KitabıBulut Bilişim El Kitabı
Bulut Bilişim El Kitabı
 
RETAIL BASICS
RETAIL BASICS  RETAIL BASICS
RETAIL BASICS
 
Bulutbilisim sunum
Bulutbilisim sunumBulutbilisim sunum
Bulutbilisim sunum
 

Similar to DevOps

Road to DevOps ROI
Road to DevOps ROIRoad to DevOps ROI
Road to DevOps ROI
Cloudmunch
 

Similar to DevOps (20)

Devops
DevopsDevops
Devops
 
Devops Explained & Best Practices
Devops Explained & Best PracticesDevops Explained & Best Practices
Devops Explained & Best Practices
 
The Pivotal Role of DevOps in the IT Industry.docx
The Pivotal Role of DevOps in the IT Industry.docxThe Pivotal Role of DevOps in the IT Industry.docx
The Pivotal Role of DevOps in the IT Industry.docx
 
Introduction to DevOps
Introduction to DevOpsIntroduction to DevOps
Introduction to DevOps
 
An Ultimate Guide to DevOps – Principles, How it works, and Real-life Examples
An Ultimate Guide to DevOps – Principles, How it works, and Real-life ExamplesAn Ultimate Guide to DevOps – Principles, How it works, and Real-life Examples
An Ultimate Guide to DevOps – Principles, How it works, and Real-life Examples
 
What is DevOps' process?
What is DevOps' process?What is DevOps' process?
What is DevOps' process?
 
An Ultimate 10 Point DevOps Checklist for your Organization.pdf
An Ultimate 10 Point DevOps Checklist for your Organization.pdfAn Ultimate 10 Point DevOps Checklist for your Organization.pdf
An Ultimate 10 Point DevOps Checklist for your Organization.pdf
 
The Role of DevOps in Modern Software Development.pdf
The Role of DevOps in Modern Software Development.pdfThe Role of DevOps in Modern Software Development.pdf
The Role of DevOps in Modern Software Development.pdf
 
Devops ppt copy
Devops ppt   copyDevops ppt   copy
Devops ppt copy
 
probe-into-the-key-components-and-tools-of-devops-lifecycle
probe-into-the-key-components-and-tools-of-devops-lifecycleprobe-into-the-key-components-and-tools-of-devops-lifecycle
probe-into-the-key-components-and-tools-of-devops-lifecycle
 
The Role of DevOps Consulting in Modern Software Development
The Role of DevOps Consulting in Modern Software DevelopmentThe Role of DevOps Consulting in Modern Software Development
The Role of DevOps Consulting in Modern Software Development
 
Collaborative DevOps Approach_ Empowering Software Development.pdf
Collaborative DevOps Approach_ Empowering Software Development.pdfCollaborative DevOps Approach_ Empowering Software Development.pdf
Collaborative DevOps Approach_ Empowering Software Development.pdf
 
Understanding the Role of DevOps in Modern Software Development.pdf
Understanding the Role of DevOps in Modern Software Development.pdfUnderstanding the Role of DevOps in Modern Software Development.pdf
Understanding the Role of DevOps in Modern Software Development.pdf
 
6 Proven Tips for Effective DevOps Collaboration and Communication
6 Proven Tips for Effective DevOps Collaboration and Communication6 Proven Tips for Effective DevOps Collaboration and Communication
6 Proven Tips for Effective DevOps Collaboration and Communication
 
What Is DevOps and How Does It?
What Is DevOps and How Does It?What Is DevOps and How Does It?
What Is DevOps and How Does It?
 
What is Devops?
What is Devops?What is Devops?
What is Devops?
 
The Benefits of DevOps.pdf
The Benefits of DevOps.pdfThe Benefits of DevOps.pdf
The Benefits of DevOps.pdf
 
DevOps culture, concepte , philosophie and practices
DevOps culture, concepte , philosophie and practicesDevOps culture, concepte , philosophie and practices
DevOps culture, concepte , philosophie and practices
 
DevOps Automation: Boosting Efficiency and Productivity
DevOps Automation: Boosting Efficiency and ProductivityDevOps Automation: Boosting Efficiency and Productivity
DevOps Automation: Boosting Efficiency and Productivity
 
Road to DevOps ROI
Road to DevOps ROIRoad to DevOps ROI
Road to DevOps ROI
 

Recently uploaded

Recently uploaded (20)

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
 
[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
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 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
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
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
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
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
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 

DevOps

  • 1. Technology Trends DevOps What is DevOps ...2 Why DevOps ...2 History of DevOps ...3 DevOps Practices ...3 DevOps Lifecycle ...5 Summary ... 6 December 2016
  • 2. What is DevOps ? The Problem In A Nutshell  Everything needs software.  Software runs on a server to become a service.  Delivering a service from inception to its users is too slow and error-prone.  There are internal friction points that make this the case.  This loses you money. (Delay = loss) 2 DevOps is the combination of cultural philosophies, practices, and tools that increases an organization’s ability to deliver applications and services at high velocity: evolving and improving products at a faster pace than organizations using traditional software development and infrastructure management processes. This speed enables organizations to better serve their customers and compete more effectively in the market. Why DevOps ? Software and the Internet have transformed the world and its industries, from shopping to entertainment to banking. Software no longer merely supports a business; rather it becomes an integral component of every part of a business. Companies interact with their customers through software delivered as online services or applications and on all sorts of devices. They also use software to increase operational efficiencies by transforming every part of the value chain, such as logistics, communications, and operations. In a similar way that physical goods companies transformed how they design, build, and deliver products using industrial automation throughout the 20th century, companies in today’s world must transform how they build and deliver software. DevOps is the practice of operations and development engineers participating together in the entire service lifecycle, from design through the development process to production support.
  • 3. DevOps Practices 3 There are a few key practices that help organizations innovate faster through automating and streamlining the software development and infrastructure management processes. Most of these practices are accomplished with proper tooling. One fundamental practice is to perform very frequent but small updates. This is how organizations innovate faster for their customers. These updates are usually more incremental in nature than the occasional updates performed under traditional release practices. Frequent but small updates make each deployment less risky. They help teams address bugs faster because teams can identify the last deployment that caused the error. Although the cadence and size of updates will vary, organizations using a DevOps model deploy updates much more often than organizations using traditional software development practices. Organizations might also use a microservices architecture to make their applications more flexible and enable quicker innovation. The microservices architecture decouples large, complex systems into simple, independent projects. Applications are broken into many individual components (services) with each service scoped to a single purpose or function and operated independently of its peer services and the application as a whole. This architecture reduces the coordination overhead of updating applications, and when each service is paired with small, agile teams who take ownership of each service, organizations can move more quickly. History of DevOps The DevOps movement started to coalesce some time between 2007 - 2008, when IT operations and software development communities got vocal about what they felt was a fatal level of dysfunction in the industry. They railed against the traditional software development model, which called for those who write the code to be organizationally and functionally apart from those who deploy and support that code. Developers and IT/Ops professionals had separate (and often competing) objectives, separate department leadership, separate key performance indicators by which they were judged, and often worked on separate floors or even separate buildings. The result was siloed teams concerned only with their own fiefdoms, long hours, botched releases, and unhappy customers. You’re using agile methodologies for planning and development, but still struggling to get that code out the door without a bunch of drama. You’ve heard a few things about DevOps and the seemingly magical effect it can have on teams and think “I want some of that magic.” The bad news is that DevOps isn’t magic, and transformations don’t happen overnight. The good news is that you don’t have to wait for upper management to roll out a large-scale initiative. By understanding the pillars of DevOps and making small, incremental changes, your team can embark on the DevOps journey right away. Let’s start with the CALMS framework. “But,” you might ask, “how is the DevOps Lifecycle different?” It can be summed up with the acronym C.A.L.M.S.  C – Culture  A – Automation  L – Lean  M – Measurement  S – Sharing
  • 4. 4 Continuous Integration Developers regularly merge their code changes into a central repository, after which automated builds and tests are run. The key goals of continuous integration are to find and address bugs quicker, improve software quality, and reduce the time it takes to validate and release new software updates. Continuous Delivery Code changes are automatically built, tested, and prepared for a release to production. It expands upon continuous integration by deploying all code changes to a testing environment and/or a production environment after the build stage. When continuous delivery is implemented properly, developers will always have a deployment-ready build artifact that has passed through a standardized test process. Microservices Build a single application as a set of small services. Each service runs in its own process and communicates with other services through a well-defined interface using a lightweight mechanism, typically an HTTP-based application programming interface (API). Microservices are built around business capabilities; each service is scoped to a single purpose. You can use different frameworks or programming languages to write microservices and deploy them independently, as a single service, or as a group of services. Infrastructure is provisioned and managed using code and software development techniques, such as version control and continuous integration. The cloud’s API-driven model enables developers and system administrators to interact with infrastructure programmatically, and at scale, instead of needing to manually set up and configure resources. Thus, engineers can interface with infrastructure using code-based tools and treat infrastructure in a manner similar to how they treat application code. Because they are defined by code, infrastructure and servers can quickly be deployed using standardized patterns, updated with the latest patches and versions, or duplicated in repeatable ways. Infrastructure as Code Communication and Collaboration Organizations monitor metrics and logs to see how application and infrastructure performance impacts the experience of their product’s end user. By capturing, categorizing, and then analyzing data and logs generated by applications and infrastructure, organizations understand how changes or updates impact users, shedding insights into the root causes of problems or unexpected changes. Active monitoring becomes increasingly important as services must be available 24/7 and as application and infrastructure update frequency increases. Creating alerts or performing real-time analysis of this data also helps organizations more proactively monitor their services. Monitoring and Logging Increased communication and collaboration in an organization is one of the key cultural aspects of DevOps. The use of DevOps tooling and automation of the software delivery process establishes collaboration by physically bringing together the workflows and responsibilities of development and operations. Building on top of that, these teams set strong cultural norms around information sharing and facilitating communication through the use of chat applications, issue or project tracking systems, and wikis. This helps speed up communication across developers, operations, and even other teams like marketing or sales, allowing all parts of the organization to align more closely on goals and projects.
  • 5. 5 Together, these practices help organizations deliver faster, more reliable updates to their customers. Here is an overviewof important DevOps practices. Utilizing a DevOps lifecycle, products can be continuously deployed in a feedback loop through:  Infrastructure Automation  Configuration Management  Deployment Automation  Infrastructure Monitoring  Log Management  Application and Performance Management Technical benefits: Continuous software delivery Less complex problems to fix Faster resolution of problems Business benefits: Faster delivery of features More stable operating environments More time available to add value (rather than fix/maintain) The DevOps Lifecycle Looks Like 1. Check in code 2. Pull code changes for build 3. Run tests (continuous integration server to generate builds and arrange releases): Test individual models, run integration tests, and run user acceptance tests. 4. Store artifacts and build repository (repository for storing artifacts, results, and releases) 5. Deploy and release (release automation product to deploy apps) 6. Configure environment 7. Update databases 8. Update apps 9. Push to users – who receive tested app updates frequently and without interruption 10. Application and Network Performance Monitoring (preventive safeguard) Rinse and repeat What are DevOps Skills Our respondents identified the top three skill areas for DevOps staff:  Coding or scripting  Process re-engineering  Communicating and collaborating with others These skills all point to a growing recognition that software isn’t written in the old way anymore. Where software used to be written from scratch in a highly complex and lengthy process, creating new products is now often a matter of choosing open source components and stitching them together with code. The complexity of today’s software lies less in the authoring, and more in ensuring that the new software will work across a diverse set of operating systems and platforms right away. Likewise, testing and deployment are now done much more frequently. That is, they can be more frequent — if developers communicate early and regularly with the operations team, and if ops people bring their knowledge of the production environment to design of testing and staging environments. DevOps is also characterized by operations staff making use many of the same techniques as developers for their systems work.
  • 6. 6 Summary DevOps isn't a tool or a product. It's an approach to operations. By uniting development and operations teams to automate and standardize processes for infrastructure deployment, you get faster innovation, accelerated time to market, improved deployment quality, better operational efficiency, and more time to focus on your core business goals.  Faster release of apps with automation of integrated build, test and deployment process  Increase developer and operational efficiency by managing your infrastructure as code  Improve customer experience with immediate feedback loops and continuous improvement DevOps Values believe the fundamental DevOps values are effectively captured in the Agile Manifesto with perhaps one slight emendation to focus on the overall service or software fully delivered to the customer instead of simply “working software.” References: Gartner,IDC, Amazon, Wikipedia, HP, Microsoft and several technology vendors and research companies.