SlideShare a Scribd company logo
View DevOps course details at www.edureka.co/devops
Enhance Your Agility with DevOps
Slide 2 www.edureka.co/devops
Objectives
At the end of this module, you will be able to understand -
 DevOps and its importance
 DevOps Life cycle
 Configuration Management Using Puppet
 Demo using Puppet to install Apache web server.
 Continuous Integration Using Jenkins
 Demo using Jenkins
Slide 3 www.edureka.co/devops
What is DevOps
DevOps is a mindset that enables communication, collaboration and integration between
Software developers, Quality Engineers and Information Technology ( Operations ) professionals to enable rapid
evolution of products or services.
Slide 4 www.edureka.co/devops
Development & Operation (DevOps)
“Dev” is used as a shorthand for developers in
particular, but in practice it is even wider and it
means that “all the people involved in
developing the product,” that include the
product, QA and other disciplines.
“Ops” is a blanket term for systems
engineers/Administrators, Release engineers,
DBAs, Network engineers, Security
professionals and various other sub-disciplines
and job titles”
Slide 5 www.edureka.co/devops
Development & Operation (DevOps)
DEVOPS
Development
(Software
Engineering)
Quality
Assurances
Technical
Operations
Slide 6 www.edureka.co/devops
Roles of Developers :
 Develop/modify applications
 Try new technologies
Roles of Operations :
 Build, Deploy and release
 Performance and availability
 Create or enhance services
Development & Operations
Slide 7Slide 7Slide 7 www.edureka.co/devops
Why DevOps?
Customers Requirements
Dev and
Testing Team
Operations
Gap Between
Developers and
Operations
Slide 8Slide 8Slide 8 www.edureka.co/devops
Why DevOps?
Development
Operations
Change
» Developers introduce changes
» They try to implement every new
techniques introduced
» Change is the enemy for Operations
» Changes can lead to instability
Slide 9Slide 9Slide 9 www.edureka.co/devops
Dev Tools Ops Tools
» Difficult to integrate tools
» Less interest in learning each others tools
» Different implementation of similar tools
Why DevOps?
Slide 10Slide 10Slide 10 www.edureka.co/devops
During Deployment
Sends out artifacts based on
requirements
Manually hacks the scripts received and
changes the config files to reflect changes
in production which could potentially lead
to an issue.
Development Operations
Why DevOps?
Slide 11Slide 11Slide 11 www.edureka.co/devops
All the artifacts are fine, the error
is because of some other issue.
QA was given wrong setup.
Developer gave faulty artifacts
Development
Operations
Day 1: Loss of Work
Why DevOps?
Slide 12Slide 12Slide 12 www.edureka.co/devops
After deployment, QA sees some
anomalies and raises defects
Day 3: After Deployment
Operations
Developer realizes that correct
DB was not deployed
Development
Why DevOps?
Slide 13 www.edureka.co/devops
DevOps as a Solution
Instead of seeing these two groups as silos who pass things along but don’t really work together, DevOps
recognizes the interdependencies of software development and IT operations and helps an organization to produce
software and IT services more rapidly, with frequent iterations.
DevOps bridges the gap between agile software development and operations
Slide 14 www.edureka.co/devops
DevOps Skills
DevOps Tools – Ability to administer and customize them
Scripting/Automation Skills – Demonstrates the traditional scripting skills to IT operations
Coding Skill – Should possess developer skills in using automation
Process re-engineering Skills – Reflects the holistic view of IT and development as a single system, instead
of two different functions
Skills Products
Linux/Unix Commands & Administration
Shell Scripting Bash, Sed/Awk
Coding Perl, Python, Ruby
Configuration Management Puppet, SaltStack, Chef
Bare Metal Configuration Cobbler, Foreman, PXE, DHCP, DNS
DevOps Skill Matrix
Slide 15 www.edureka.co/devops
DevOps Cycle
Slide 16 www.edureka.co/devops
Provisioning Configuration Integration
Load Balancer
WebServer WebServer
DB Master
DB Slave DB Slave
Load Balancer
WebServer WebServer
DB Master
DB Slave DB Slave
DevOps Life Cycle
Slide 17 www.edureka.co/devops
DevOps Tools
 Tools for DevOps can be categorized based on the layer of Automation you choose
 Each layer has its own tools to build Automation
Infrastructure Automation 1. Cobbler
2. Foreman
3. Crowbar
Configuration Management 1. Puppet
2. SaltStack
3. Chef
Continuous Integration/Deployment 1. Jenkins
2. SVN, Git, Perforce
3. Ant, Maven
Monitoring 1. Nagios, NewRelic, Sensu, Zabbix
2. Custom Tools
Slide 18 www.edureka.co/devops
Revision control System 1. Git
2. Cvs
3. Subversion
Software Configuration Management 1. Clearcase
2. Perforce
3. Accurev
Virtualization management Software 1. Vcentre
2. Hyper-V
DevOps Tools (Contd.)
Slide 19Slide 19Slide 19 www.edureka.co/devops
Integration Engineer Cloud Specialist
Automation Engineer Release Engineer
DevOps Roles
Slide 20 www.edureka.co/devops
Work of a System administrator:
» Install servers
» configure them
» maintain them
» Update the configuration periodically
Why Puppet?
Slide 21 www.edureka.co/devops
Why Puppet?
It is tough to scale without
automation in place.
Slide 22 www.edureka.co/devops
Puppet is a configuration management tool that is used for deploying, configuring, managing servers.
Features:
Why Puppet?
It controls all the steps, right from the bootstrapping to the end of Server life
Can define configuration at the node level
Can group them according to roles
Example: WebSevers, DB Servers.
Maintains consistency across nodes
Example: if a change is done locally, it is rolled back to the original configuration
Slide 23 www.edureka.co/devops
Puppet works on the Master Server model
Puppet Master: This machine contains all the
configuration for different hosts. Puppet master
runs as a daemon on this master server.
Puppet Agent: Daemon which runs on each node
and talks to the master on a regular interval.
The connection between these two machines is
made in a secure encrypted channel with the help
of SSL
How Puppet Works?
Slide 24 www.edureka.co/devops
Following are the steps for Puppet configuration:
1. Clients connects to master and master identifies the configuration according to client type.
2. Master builds the Configuration that needs to be applied to a host, compiles it and makes it ready
3. Clients pull the Configuration and apply them on the respective nodes
Puppet Configuration
Slide 25 www.edureka.co/devops
Puppet works on the Master Server model
Puppet Master: This machine contains all the
configuration for different hosts. Puppet master
runs as a daemon on this master server.
Puppet Agent: Daemon which runs on each node
and talks to the master on a regular interval.
The connection between these two machines is
made in a secure encrypted channel with the help
of SSL
How Puppet Works?
Slide 26 www.edureka.co/devops
Following are the steps for Puppet configuration:
1. Clients connects to master and master identifies the configuration according to client type.
2. Master builds the Configuration that needs to be applied to a host, compiles it and makes it ready
3. Clients pull the Configuration and apply them on the respective nodes
Puppet Configuration
Slide 27 www.edureka.co/devops
Demo on Puppet
Slide 28 www.edureka.co/devops
“Continuous Integration is a software development practice where members of a team integrate their
work frequently, usually each person integrates at least daily - leading to multiple integrations per day.
Each integration is verified by an automated build (including test) to detect integration errors as quickly
as possible”
– Martin Fowler
Continuous Integration
Slide 29 www.edureka.co/devops
At a regular frequency (ideally at every commit), the system is:
Integrated
All changes up until that point are combined into the project
Built
The code is compiled into an executable or package
Tested
Automated test suites are run
Archived
Versioned and stored so it can be distributed as is, if desired
Deployed
Loaded onto a system where the developers can interact with it
Continuous Integration
Slide 30 www.edureka.co/devops
 Code Repositories
SVN, Mercurial, Git
 Continuous Build Systems
Jenkins, Bamboo, Cruise Control
 Test Frameworks
Junit, Cucumber, CppUnit
 Artifact Repositories
Nexus, Artifactory
Continuous Integration - Tools
Slide 31 www.edureka.co/devops
 Jenkins provide continuous Integration services for software development. It’s container
is based on Tomcat and can work with various revision control systems like SVN, CVS,
Git, etc.
 This originally started as Hudson and then after Oracle’s claim, the name Jenkins was
coined
 It includes a feature-rich web user interface that provides the ability to trigger builds,
customize builds, manage resources, manage plugins, and many other features
Jenkins
Slide 32 www.edureka.co/devops
 Builds can be started by:
» Commit in a version control system
» Scheduling via a cron-like mechanism
» Building when other builds have completed or by requesting a specific build URL
Jenkins (Contd.)
Slide 33 www.edureka.co/devops
Components of Build
Slide 34 www.edureka.co/devops
Components of Build
Slide 35 www.edureka.co/devops
Demo on Jenkins
Slide 36 www.edureka.co/apache-spark-scala-training
LIVE Online Class
Class Recording in LMS
24/7 Post Class Support
Module Wise Quiz
Project Work
Verifiable Certificate
Course Features
Slide 37 www.edureka.co/apache-spark-scala-training
Questions
Slide 38 www.edureka.co/devops
 Module 1
» Introduction to DevOps and its Necessities
 Module 2
» Understand Common Infrastructure Servers
 Module 3
» Implement Automated Installations and Deployments
 Module 4
» Understand Performance tuning aspects and basic
Security for Infrastructure
Course Topics
 Module 5
» Basics of Bash/Python Scripting
 Module 6
» Basics of Virtualization and it's Concepts
 Module 7
» Monitoring And Logging
 Module 8
» Useful DevOps Tools & Commands
Slide 39 www.edureka.co/apache-spark-scala-training

More Related Content

PPTX
Ci jenkins maven svn
DOCX
Muraliupdatedpersona150716
PDF
Continuous integration / deployment with Jenkins
PDF
Top DevOps tools
PDF
Yama quick start english version
PPT
Presentation 1 open source tools in continuous integration environment v1.0
PPTX
PDF
Agile Bodensee - Testautomation & Continuous Delivery Workshop
Ci jenkins maven svn
Muraliupdatedpersona150716
Continuous integration / deployment with Jenkins
Top DevOps tools
Yama quick start english version
Presentation 1 open source tools in continuous integration environment v1.0
Agile Bodensee - Testautomation & Continuous Delivery Workshop

What's hot (19)

PPTX
Delivery Pipeline as Code: using Jenkins 2.0 Pipeline
PDF
Agile Software Development & Tools
PDF
Build server
PPTX
Docker - A Quick Introduction Guide
PDF
OpenCms Days 2012 - How to manage an OpenCms project using Agile and continuo...
PPTX
Introduction to Containers & Diving a little deeper into the benefits of Con...
PDF
Continuous delivery-with-maven
PPTX
Kubernetes: A Top Notch Automation Solution
PDF
Dev ops tutorial for beginners what is devops & devops tools
PPTX
Devops interview questions 1 www.bigclasses.com
PDF
IBM Connect 2014 BP204: It's Not Infernal: Dante's Nine Circles of XPages Heaven
PDF
Jenkins Meetup Pune
PDF
Automated Deployment with Maven - going the whole nine yards
PPTX
Microservices in academic environment
PDF
Enabling Business Agility with SUSE CaaS Platform
PDF
Building and Deploying a Static Application using Jenkins and Docker in AWS
PDF
Project Apash
PPTX
Continuous Delivery Applied (Agile Richmond)
Delivery Pipeline as Code: using Jenkins 2.0 Pipeline
Agile Software Development & Tools
Build server
Docker - A Quick Introduction Guide
OpenCms Days 2012 - How to manage an OpenCms project using Agile and continuo...
Introduction to Containers & Diving a little deeper into the benefits of Con...
Continuous delivery-with-maven
Kubernetes: A Top Notch Automation Solution
Dev ops tutorial for beginners what is devops & devops tools
Devops interview questions 1 www.bigclasses.com
IBM Connect 2014 BP204: It's Not Infernal: Dante's Nine Circles of XPages Heaven
Jenkins Meetup Pune
Automated Deployment with Maven - going the whole nine yards
Microservices in academic environment
Enabling Business Agility with SUSE CaaS Platform
Building and Deploying a Static Application using Jenkins and Docker in AWS
Project Apash
Continuous Delivery Applied (Agile Richmond)
Ad

Similar to Enhance your Agility with DevOps (20)

PDF
Devops : Automate Your Infrastructure with Puppet
PDF
Continuous Integration With Jenkins
PDF
DevOps-Redefining your IT Strategy-28thJan15
PDF
Webinar: DevOps - Redefining your IT Strategy
PDF
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
PDF
DevOps-Ebook
PDF
CICD_BestPractices.pdf
PPTX
varun JENKINS.pptx
PDF
Best devops course syllabus pdf 2025.pdf
PDF
Linux Interview Questions PDF By ScholarHat
PDF
The DevOps Paradigm
PDF
The DevOps paradigm - the evolution of IT professionals and opensource toolkit
PPT
Part 2 improving your software development v1.0
PPTX
How Azure DevOps can boost your organization's productivity
PPTX
Tour of Azure DevOps
PDF
PuppetConf 2016: Continuous Delivery and DevOps with Jenkins and Puppet Enter...
PPTX
Azure DevOps in Action
PDF
DevOps Days Boston 2017: Developer first workflows for Kubernetes
PPTX
DevOps-CI_CD_JAVA_JAVA______Jenkins.pptx
PPTX
DevOps Interview Questions Part - 1 | Devops Interview Questions And Answers ...
Devops : Automate Your Infrastructure with Puppet
Continuous Integration With Jenkins
DevOps-Redefining your IT Strategy-28thJan15
Webinar: DevOps - Redefining your IT Strategy
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
DevOps-Ebook
CICD_BestPractices.pdf
varun JENKINS.pptx
Best devops course syllabus pdf 2025.pdf
Linux Interview Questions PDF By ScholarHat
The DevOps Paradigm
The DevOps paradigm - the evolution of IT professionals and opensource toolkit
Part 2 improving your software development v1.0
How Azure DevOps can boost your organization's productivity
Tour of Azure DevOps
PuppetConf 2016: Continuous Delivery and DevOps with Jenkins and Puppet Enter...
Azure DevOps in Action
DevOps Days Boston 2017: Developer first workflows for Kubernetes
DevOps-CI_CD_JAVA_JAVA______Jenkins.pptx
DevOps Interview Questions Part - 1 | Devops Interview Questions And Answers ...
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
PDF
Top 5 Trending Business Intelligence Tools | Edureka
PDF
Tableau Tutorial for Data Science | Edureka
PDF
Python Programming Tutorial | Edureka
PDF
Top 5 PMP Certifications | Edureka
PDF
Top Maven Interview Questions in 2020 | Edureka
PDF
Linux Mint Tutorial | Edureka
PDF
How to Deploy Java Web App in AWS| Edureka
PDF
Importance of Digital Marketing | Edureka
PDF
RPA in 2020 | Edureka
PDF
Email Notifications in Jenkins | Edureka
PDF
EA Algorithm in Machine Learning | Edureka
PDF
Cognitive AI Tutorial | Edureka
PDF
AWS Cloud Practitioner Tutorial | Edureka
PDF
Blue Prism Top Interview Questions | Edureka
PDF
Big Data on AWS Tutorial | Edureka
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
PDF
Kubernetes Installation on Ubuntu | Edureka
PDF
Introduction to DevOps | Edureka
What to learn during the 21 days Lockdown | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
Tableau Tutorial for Data Science | Edureka
Python Programming Tutorial | Edureka
Top 5 PMP Certifications | Edureka
Top Maven Interview Questions in 2020 | Edureka
Linux Mint Tutorial | Edureka
How to Deploy Java Web App in AWS| Edureka
Importance of Digital Marketing | Edureka
RPA in 2020 | Edureka
Email Notifications in Jenkins | Edureka
EA Algorithm in Machine Learning | Edureka
Cognitive AI Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
Blue Prism Top Interview Questions | Edureka
Big Data on AWS Tutorial | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Kubernetes Installation on Ubuntu | Edureka
Introduction to DevOps | Edureka

Recently uploaded (20)

PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
A Presentation on Artificial Intelligence
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Machine learning based COVID-19 study performance prediction
PDF
cuic standard and advanced reporting.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Modernizing your data center with Dell and AMD
PDF
Electronic commerce courselecture one. Pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Encapsulation theory and applications.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
The Rise and Fall of 3GPP – Time for a Sabbatical?
A Presentation on Artificial Intelligence
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Network Security Unit 5.pdf for BCA BBA.
Machine learning based COVID-19 study performance prediction
cuic standard and advanced reporting.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Modernizing your data center with Dell and AMD
Electronic commerce courselecture one. Pdf
The AUB Centre for AI in Media Proposal.docx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Per capita expenditure prediction using model stacking based on satellite ima...
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Empathic Computing: Creating Shared Understanding
Diabetes mellitus diagnosis method based random forest with bat algorithm
Encapsulation theory and applications.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing

Enhance your Agility with DevOps

  • 1. View DevOps course details at www.edureka.co/devops Enhance Your Agility with DevOps
  • 2. Slide 2 www.edureka.co/devops Objectives At the end of this module, you will be able to understand -  DevOps and its importance  DevOps Life cycle  Configuration Management Using Puppet  Demo using Puppet to install Apache web server.  Continuous Integration Using Jenkins  Demo using Jenkins
  • 3. Slide 3 www.edureka.co/devops What is DevOps DevOps is a mindset that enables communication, collaboration and integration between Software developers, Quality Engineers and Information Technology ( Operations ) professionals to enable rapid evolution of products or services.
  • 4. Slide 4 www.edureka.co/devops Development & Operation (DevOps) “Dev” is used as a shorthand for developers in particular, but in practice it is even wider and it means that “all the people involved in developing the product,” that include the product, QA and other disciplines. “Ops” is a blanket term for systems engineers/Administrators, Release engineers, DBAs, Network engineers, Security professionals and various other sub-disciplines and job titles”
  • 5. Slide 5 www.edureka.co/devops Development & Operation (DevOps) DEVOPS Development (Software Engineering) Quality Assurances Technical Operations
  • 6. Slide 6 www.edureka.co/devops Roles of Developers :  Develop/modify applications  Try new technologies Roles of Operations :  Build, Deploy and release  Performance and availability  Create or enhance services Development & Operations
  • 7. Slide 7Slide 7Slide 7 www.edureka.co/devops Why DevOps? Customers Requirements Dev and Testing Team Operations Gap Between Developers and Operations
  • 8. Slide 8Slide 8Slide 8 www.edureka.co/devops Why DevOps? Development Operations Change » Developers introduce changes » They try to implement every new techniques introduced » Change is the enemy for Operations » Changes can lead to instability
  • 9. Slide 9Slide 9Slide 9 www.edureka.co/devops Dev Tools Ops Tools » Difficult to integrate tools » Less interest in learning each others tools » Different implementation of similar tools Why DevOps?
  • 10. Slide 10Slide 10Slide 10 www.edureka.co/devops During Deployment Sends out artifacts based on requirements Manually hacks the scripts received and changes the config files to reflect changes in production which could potentially lead to an issue. Development Operations Why DevOps?
  • 11. Slide 11Slide 11Slide 11 www.edureka.co/devops All the artifacts are fine, the error is because of some other issue. QA was given wrong setup. Developer gave faulty artifacts Development Operations Day 1: Loss of Work Why DevOps?
  • 12. Slide 12Slide 12Slide 12 www.edureka.co/devops After deployment, QA sees some anomalies and raises defects Day 3: After Deployment Operations Developer realizes that correct DB was not deployed Development Why DevOps?
  • 13. Slide 13 www.edureka.co/devops DevOps as a Solution Instead of seeing these two groups as silos who pass things along but don’t really work together, DevOps recognizes the interdependencies of software development and IT operations and helps an organization to produce software and IT services more rapidly, with frequent iterations. DevOps bridges the gap between agile software development and operations
  • 14. Slide 14 www.edureka.co/devops DevOps Skills DevOps Tools – Ability to administer and customize them Scripting/Automation Skills – Demonstrates the traditional scripting skills to IT operations Coding Skill – Should possess developer skills in using automation Process re-engineering Skills – Reflects the holistic view of IT and development as a single system, instead of two different functions Skills Products Linux/Unix Commands & Administration Shell Scripting Bash, Sed/Awk Coding Perl, Python, Ruby Configuration Management Puppet, SaltStack, Chef Bare Metal Configuration Cobbler, Foreman, PXE, DHCP, DNS DevOps Skill Matrix
  • 16. Slide 16 www.edureka.co/devops Provisioning Configuration Integration Load Balancer WebServer WebServer DB Master DB Slave DB Slave Load Balancer WebServer WebServer DB Master DB Slave DB Slave DevOps Life Cycle
  • 17. Slide 17 www.edureka.co/devops DevOps Tools  Tools for DevOps can be categorized based on the layer of Automation you choose  Each layer has its own tools to build Automation Infrastructure Automation 1. Cobbler 2. Foreman 3. Crowbar Configuration Management 1. Puppet 2. SaltStack 3. Chef Continuous Integration/Deployment 1. Jenkins 2. SVN, Git, Perforce 3. Ant, Maven Monitoring 1. Nagios, NewRelic, Sensu, Zabbix 2. Custom Tools
  • 18. Slide 18 www.edureka.co/devops Revision control System 1. Git 2. Cvs 3. Subversion Software Configuration Management 1. Clearcase 2. Perforce 3. Accurev Virtualization management Software 1. Vcentre 2. Hyper-V DevOps Tools (Contd.)
  • 19. Slide 19Slide 19Slide 19 www.edureka.co/devops Integration Engineer Cloud Specialist Automation Engineer Release Engineer DevOps Roles
  • 20. Slide 20 www.edureka.co/devops Work of a System administrator: » Install servers » configure them » maintain them » Update the configuration periodically Why Puppet?
  • 21. Slide 21 www.edureka.co/devops Why Puppet? It is tough to scale without automation in place.
  • 22. Slide 22 www.edureka.co/devops Puppet is a configuration management tool that is used for deploying, configuring, managing servers. Features: Why Puppet? It controls all the steps, right from the bootstrapping to the end of Server life Can define configuration at the node level Can group them according to roles Example: WebSevers, DB Servers. Maintains consistency across nodes Example: if a change is done locally, it is rolled back to the original configuration
  • 23. Slide 23 www.edureka.co/devops Puppet works on the Master Server model Puppet Master: This machine contains all the configuration for different hosts. Puppet master runs as a daemon on this master server. Puppet Agent: Daemon which runs on each node and talks to the master on a regular interval. The connection between these two machines is made in a secure encrypted channel with the help of SSL How Puppet Works?
  • 24. Slide 24 www.edureka.co/devops Following are the steps for Puppet configuration: 1. Clients connects to master and master identifies the configuration according to client type. 2. Master builds the Configuration that needs to be applied to a host, compiles it and makes it ready 3. Clients pull the Configuration and apply them on the respective nodes Puppet Configuration
  • 25. Slide 25 www.edureka.co/devops Puppet works on the Master Server model Puppet Master: This machine contains all the configuration for different hosts. Puppet master runs as a daemon on this master server. Puppet Agent: Daemon which runs on each node and talks to the master on a regular interval. The connection between these two machines is made in a secure encrypted channel with the help of SSL How Puppet Works?
  • 26. Slide 26 www.edureka.co/devops Following are the steps for Puppet configuration: 1. Clients connects to master and master identifies the configuration according to client type. 2. Master builds the Configuration that needs to be applied to a host, compiles it and makes it ready 3. Clients pull the Configuration and apply them on the respective nodes Puppet Configuration
  • 28. Slide 28 www.edureka.co/devops “Continuous Integration is a software development practice where members of a team integrate their work frequently, usually each person integrates at least daily - leading to multiple integrations per day. Each integration is verified by an automated build (including test) to detect integration errors as quickly as possible” – Martin Fowler Continuous Integration
  • 29. Slide 29 www.edureka.co/devops At a regular frequency (ideally at every commit), the system is: Integrated All changes up until that point are combined into the project Built The code is compiled into an executable or package Tested Automated test suites are run Archived Versioned and stored so it can be distributed as is, if desired Deployed Loaded onto a system where the developers can interact with it Continuous Integration
  • 30. Slide 30 www.edureka.co/devops  Code Repositories SVN, Mercurial, Git  Continuous Build Systems Jenkins, Bamboo, Cruise Control  Test Frameworks Junit, Cucumber, CppUnit  Artifact Repositories Nexus, Artifactory Continuous Integration - Tools
  • 31. Slide 31 www.edureka.co/devops  Jenkins provide continuous Integration services for software development. It’s container is based on Tomcat and can work with various revision control systems like SVN, CVS, Git, etc.  This originally started as Hudson and then after Oracle’s claim, the name Jenkins was coined  It includes a feature-rich web user interface that provides the ability to trigger builds, customize builds, manage resources, manage plugins, and many other features Jenkins
  • 32. Slide 32 www.edureka.co/devops  Builds can be started by: » Commit in a version control system » Scheduling via a cron-like mechanism » Building when other builds have completed or by requesting a specific build URL Jenkins (Contd.)
  • 36. Slide 36 www.edureka.co/apache-spark-scala-training LIVE Online Class Class Recording in LMS 24/7 Post Class Support Module Wise Quiz Project Work Verifiable Certificate Course Features
  • 38. Slide 38 www.edureka.co/devops  Module 1 » Introduction to DevOps and its Necessities  Module 2 » Understand Common Infrastructure Servers  Module 3 » Implement Automated Installations and Deployments  Module 4 » Understand Performance tuning aspects and basic Security for Infrastructure Course Topics  Module 5 » Basics of Bash/Python Scripting  Module 6 » Basics of Virtualization and it's Concepts  Module 7 » Monitoring And Logging  Module 8 » Useful DevOps Tools & Commands