SlideShare uma empresa Scribd logo
1 de 106
Before DevOps – Waterfall model
Waterfall model - Traditional development models
This model is similar to a waterfall
When the water flows off from the cliff, it
cannot go back to its previous state
Before DevOps – Waterfall model
Requirements
Design
Implementation
Verification
Maintenance
Waterfall model is the basic SDLC model
Before DevOps – Waterfall model
• It’s difficult to make changes to the previous
stage
• Not recommended for large-sized projects
• Developers and testers doesn't work together
(which can result in a lot of bugs at the end)
• Not recommended for projects where
requirements have a high risk of getting
changed
Requirements
Design
Implementation
Verification
Maintenance
Before DevOps – Waterfall model
Waterfall Model
Developer
Takes a very long
time for deploying
code
It’s difficult to identify and
give feedback on the
product
Operation
Before DevOps – Agile model
• Agile is an approach in software development where each project
is split into multiple iterations
• As a result, at the end of each iteration a software product is
delivered
DesignRequirements DesignRequirements DesignRequirements
…..
Iteration 1
Iteration 2
Iteration N
Before DevOps – Agile model
Agile Model
Developer
The code is working
on my system!
But, the same software
(code) isn’t working on
my system!
Operation
Agile
What’s in it for you?
 What is DevOps?
 Benefits of DevOps
 Lifecycle of DevOps
 Tools in DevOps
 Git
 Maven
 Selenium
 Jenkins
 Docker
 Ansible
 Nagios
Let’s see how DevOps can solve these problems?
DevOps over waterfall model
DevOps Model
Developer
Takes a very long
time for deploying
code
It’s difficult to identify and
give feedback on the
product
Operation
Better monitoring and
quick feedback can be
done through DevOps
continuous monitoring
tool
Continuous integration
results in quick
deployment of code
DevOps over Agile model
DevOps Model
Developer
The code is working
on my system!
But, the same
software (code) isn’t
working on my
system!
Operation
Agile
Iteration
Code works on my
system too!
Both developer and
operation team work
together
DevOps over Agile model
Planning A New
Website
Website ManagDevelopment Operation
Agile:
Problem Solution
Development Operation
DevOps:
DevOps over Agile model
Planning A New
Website
Website ManagDevelopment Operation
Agile:
Problem Solution
Development Operation
DevOps:
What’s in it for you?
 What is DevOps?
 Benefits of DevOps
 Lifecycle of DevOps
 Tools in DevOps
 Git
 Maven
 Selenium
 Jenkins
 Docker
 Ansible
 Nagios
What is DevOps?
DevOps is a collaboration between development and operation teams which enables continuous delivery of
applications and services to our end users
Development Operation
Did you know?
Breaking news
Benefits of DevOps
Benefits of DevOps
Continuous delivery of
software
Benefits of DevOps
Continuous delivery of
software
Better collaboration
between teams
Benefits of DevOps
Continuous delivery of
software
Better collaboration
between teams
Easy deployment
Benefits of DevOps
Continuous delivery of
software
Better collaboration
between teams
Easy deployment
Better efficiency and
scalability
Benefits of DevOps
Continuous delivery of
software
Better collaboration
between teams
Easy deployment
Better efficiency and
scalability Errors can be fixed at
initial stage
Benefits of DevOps
Continuous delivery of
software
Better collaboration
between teams
Easy deployment
Better efficiency and
scalability Errors can be fixed at
initial stage
Better security
Benefits of DevOps
Continuous delivery of
software
Better collaboration
between teams
Easy deployment
Better efficiency and
scalability Errors can be fixed at
initial stage
Better security
Less Manual
intervention (which
means less chances of
error)
Lifecycle of DevOps
Lifecycle in DevOps
Continuous
monitoring
Source code
management
Continuous
deployment
Software
released
Continuous build and
test
Continuous integration
Tools in DevOps
Tools in DevOps
Continuous build and
test
Continuous
monitoring
Source code
management
Continuous
deployment
Continuous integration
Software
released
Git
Why Git?
Before
Task 1 Task 2 Task 3 Task 4
Developers:
Challenges
• No collaboration
• Versions are not maintained
properly
• Time consuming
• In case the server crashes, there is
no chance of recovery
• No backup
Why Git?
After
Developers:
Solution
• Team collaboration
• Versions of software are
documented and maintained
accurately
• Saves time
• Easy to use
• Automatic backups
Task 2
Task 3 Task 4
Task 1
What is Git?
GitHub Remote Server
Developer 1 Developer 3Developer 2
Git is a distributed version control tool which is used for managing source code
What is Git?
Git is a distributed version control tool which is used for managing source code
It is used to track
changes in the source
code
It’s a software tool Multiple
developers can
work together
Supports non-linear
development
Architecture of Git
Working Directory Local RepositoryStaging Area Remote Repository
Local Remote
Architecture of Git
Working Directory Local RepositoryStaging Area Remote Repository
git add
Local Remote
add files to the
staging area
Architecture of Git
Working Directory Local RepositoryStaging Area Remote Repository
git add
git commit
Local Remote
add files to the
staging area
commit those files to the
local repository
Architecture of Git
Working Directory Local RepositoryStaging Area Remote Repository
git add
git commit
git push
Local Remote
add files to the
staging area
commit those files to the
local repository
push the committed files to
the remote repository
Architecture of Git
Working Directory Local RepositoryStaging Area Remote Repository
git add
git commit
git push
git pull
Local Remote
add files to the
staging area
commit those files to the
local repository
push the committed files to
the remote repository
fetches all the changes from a
remote repository to a local
repository
Architecture of Git
Working Directory Local RepositoryStaging Area Remote Repository
git add
git commit
git push
git pull
git checkout
Local Remote
add files to the
staging area
create new branches and
switch to them when required
commit those files to the
local repository
push the committed files to
the remote repository
fetches all the changes from a
remote repository to a local
repository
Architecture of Git
Working Directory Local RepositoryStaging Area Remote Repository
git add
git commit
git push
git pull
git checkout
git merge
Local Remote
After you are done with the changes, you can merge
the new branches to the master branch
add files to the
staging area
create new branches and
switch to them when required
commit those files to the
local repository
push the committed files to
the remote repository
fetches all the changes from a
remote repository to a local
repository
Maven
Why Maven?
Before Maven
Task: Create a football game using Java
Why Maven?
Before Maven
Task: Create a football game using Java
Challenges
• For each project you need to keep adding a
set of Jars
• Even a minor mistake in the structure of
servlet doesn’t give the right output
• Building and deploying a project takes up a
lot of time
Why Maven?
After Maven
Task: Create a football game using Java
Solution
Maven has live templates in its central
repository. So, a user has to declare only the
dependencies that he requires
Maven will download and deploy the
dependencies with the application
What is Maven?
Maven is an automation tool which helps to build and manage software projects within a short period of time
What is Maven?
Maven is an automation tool which helps to build and manage software projects within a short period of time
Easy build processEasy to use Instant access to new
features with no
additional
configurations
Supports parallel
builds
Architecture of Maven
Pom file
Maven
commands are
executed in
pom file
Architecture of Maven
Maven
commands are
executed in
pom file
POM (project object model) is
a XML file which consists
details of the project and
configuration in order to build
software
Pom file
Architecture of Maven
Pom file
Maven
commands are
executed in
pom file
Checks the dependencies
Maven
local
repository
Fetches from
Architecture of Maven
Pom file
Maven
commands are
executed in
pom file
Checks the dependencies
Builds plugins
Architecture of Maven
Builds profile
Pom file
Maven
commands are
executed in
pom file
Checks the dependencies
Builds plugins
Software is built
Selenium
Why Selenium?
Before Selenium
Sequential testing
This takes a lot of time!
Test 1 Test 2 Test 3 Test 4
Total Time = 4 Min 10 Seconds
50 Sec 2 Min40 Sec 1 Min
Why Selenium?
After Selenium Parallel testing
That was so fast!
Total Time = 2 Minutes
50 Sec
2 Min
40 Sec
1 Min
Test 1
Test 2
Test 3
Test 4
What is Selenium?
Selenium is an open source automation tool which is used for testing web applications. It is mainly used for regression
and functional testing
What is Selenium?
Selenium is an open source automation tool which is used for testing web applications. It is mainly used for regression
and functional testing
Supports parallel
test execution
High accuracy Allows scripting in
several languages
Fast execution
Architecture of Selenium
Browser drivers
HTTP
request
Web driver
API
Web driver
SPI
JSON wire protocol
HTTP
request
Web browsers
Selenium client
library
C#
Architecture of Selenium
Browser drivers
HTTP
request
Web driver
API
Web driver
SPI
JSON wire protocol
HTTP
request
Web browsers
Selenium client
library
C#
Selenium WebDriver
codes are build using
these client libraries
Selenium client
library
C#
Architecture of Selenium
Browser drivers
Web driver
SPI
JSON wire protocol
HTTP
request
Web browsers
WebDriver application
programming interface (API) is
used to automate web
application testing in a easier
way
HTTP
request
Web driver
API
Note: The commands are sent to SPI
HTTP
request
Web driver
API
Selenium client
library
C#
Architecture of Selenium
Browser drivers Web browsers
WebDriver service provider interface
(SPI) is immutable and stateless. It
sends the command to browser
drivers using JSON wire protocol
Web driver
SPI
JSON wire protocol
HTTP
request
Web driver
SPI
JSON wire protocol
HTTP
request
HTTP
request
Web driver
API
Selenium client
library
C#
Architecture of Selenium
Web browsers
The drivers manages the
communication between the
browsers and the JSON wire
protocol
Browser drivers
Note: Each web browser has its own driver on
Browser drivers
Web driver
SPI
JSON wire protocol
HTTP
request
HTTP
request
Web driver
API
Selenium client
library
C#
Architecture of Selenium
As soon the command is
received from the WebDriver,
the browser driver will execute
it on the respective web
browser
Web browsers
Jenkins
Why Jenkins?
Before Jenkins:
Developer
Developer
Source code
repository
Issues in
integration
Delay in
testing
Notify developer
Error
detected
Software
delivered
No error
Why Jenkins?
Before Jenkins:
Source code
repository
Issues in
integration
Delay in
testing
Notify developer
Error
detected
Software
delivered
No error
But what are the challenges here?
Developers had to wait till the
software was built for test
results
Developer
Developer
Developer
Developer
Why Jenkins?
Before Jenkins:
Source code
repository
Notify developer
Error
detected
Software
delivered
No error
But what are the challenges here?
Lack of continuous feedback
resulted in a lot time
consumption
Issues in
integration
Delay in
testing
Issues in
integration
Delay in
testing
Developer
Developer
Why Jenkins?
Before Jenkins:
Source code
repository
Notify developer
Error
detected
No error
But what are the challenges here?Delivery of software was
delayed
Software
delivered
Why Jenkins?
After Jenkins:
Developer
Developer
Source code
repository
Build Deploy
Error
detected
Test
Fetches
changes
Notify developer
Software
delivered
No error
What is Jenkins?
Jenkins is an open source continuous integration tool. It helps to automate continuous development, testing and
deployment of newly created codes
What is Jenkins?
Jenkins is an open source continuous integration tool. It helps to automate continuous development, testing and
deployment of newly created codes
It is easily distributed
across multiple
machines
Has multiple pluginsEasy installation and
configuration
Jenkins can be
extended via plugins
Architecture of Jenkins
Remote source code
repository
Architecture of Jenkins
Remote source code
repository
Jenkins server master
Jenkins master pulls the code every time there
is a commit
Architecture of Jenkins
Jenkins slave Jenkins slave Jenkins slave
TCP/IPTCP/IPTCP/IP
Jenkins master distributes its
workload to all the slaves
Remote source code
repository
Jenkins server master
Jenkins master pulls the code every time there
is a commit
Architecture of Jenkins
Remote source code
repository
Jenkins slave Jenkins slave Jenkins slave
TCP/IPTCP/IPTCP/IP
Jenkins master pulls the code every time there
is a commit
Jenkins server master
On request from Jenkins
master, the slaves accept
tasks and produce test
reports
Test reports
Docker
Why Docker?
Before
Occupied memory
Wasted memory
5 GB
3 GB 2 GB
2 GB
1 GB
3 GB
Memory
8 GB
4 GB 4 GB
App 1 App 2 App 3
Lorem ipsum
In a virtual machine, only 10 GB of
memory is consumed whereas the
remaining 6 GB of unused memory
cannot be utilized again
Why Docker?
After
Occupied memory
Can be reused
memory
5 GB
3 GB 2 GB
2 GB
1 GB
3 GB
Memory
8 GB
4 GB 4 GB
App 1 App 2 App 3
With Docker, when 10 GB of memory is
used, the remaining 6 GB of memory can
be reused for a new container
Lorem ipsum
What is Docker?
Docker is an OS-level virtualization software platform that enables developers and IT administrators to create, deploy
and run applications in a Docker Container with all their dependencies
Docker Engine
Host OS
Infrastructure
App A
Bins/Libs
App C
Bins/Libs
Docker Container
1
App B
Bins/Libs
Docker Container
2
Docker Container
3
Note: Docker Container is an executable package of application and its dependencies together
What is Docker?
Docker is an OS-level virtualization software platform that enables developers and IT administrators to create, deploy
and run applications in a Docker Container with all their dependencies
Isolated applicationsShort boot-up uptimeHigh scalability
and efficiency
Reusable data
volumes
Architecture of Docker
Docker Client
Docker Host
Docker Daemon
Docker Registry
ImagesContainer
Container
REST API
Server
Client
Docker CLI
Docker Daemon
REST API
Docker Engine
Docker Toolbox
Architecture of Docker
Docker Host
Docker Daemon
Docker Registry
ImagesContainer
Container
REST API
Server
Client
Docker CLI
Docker Daemon
REST API
Docker Engine
Docker Toolbox
Docker Client issues
commands to the Docker
Daemon
Docker Client
Architecture of Docker
Docker Host
Docker Registry
ImagesContainer
Container
REST API
Server
Client
Docker CLI
Docker Daemon
REST API
Docker Engine
Docker Toolbox
Docker Client
Docker Daemon
Docker Daemon is a server
which interacts with the
operating system and
performs all kind of tasks
given by Docker client
Architecture of Docker
Docker Host
Docker Registry
Container
Container
REST API
Server
Client
Docker CLI
Docker Daemon
REST API
Docker Engine
Docker Toolbox
Docker Client
Docker DaemonDocker Images is a set of
instructions that is used for
creating Docker containers
Images
Architecture of Docker
Docker Host
Docker Registry
REST API
Server
Client
Docker CLI
Docker Daemon
REST API
Docker Engine
Docker Toolbox
Docker Client
Docker Daemon
Images
Docker container is a
lightweight software package
that includes all the
dependencies to run an
application Container
Container
Architecture of Docker
Docker Host
REST API
Server
Client
Docker CLI
Docker Daemon
REST API
Docker Engine
Docker Toolbox
Docker Client
Docker Daemon
ImagesContainer
Container
Docker Registry
Docker Registry is a service
to host and distribute Docker
Images among users
Ansible
Why Ansible?
Task: Install Tomcat on all the 3 web servers and Redis on the 2 database servers
This work is a piece of
cake for me!
Before Ansible:
Why Ansible?
This process will take a
lot of time for me!!
Task: Install Tomcat on all the 33 web servers and Redis on the 22 database servers
…..
…
Before Ansible:
Why Ansible?
With Ansible, a code is written
once for the installation and
deployed multiple times
Task: Install Tomcat on all the 33 web servers and Redis on the 22 database servers
…..
…
After Ansible:
What is Ansible?
Ansible is a configuration management tool where applications are deployed automatically on a variety of environments
What is Ansible?
Ansible is a configuration management tool where applications are deployed automatically on a variety of environments
Uses SSH for secure
connections
Agentless
tool
Push based
configuration tool
Maintains consistency
of a product’s
performance
X
Architecture of Ansible
Ansible Management
Node
InventoryModule
Playbooks
SSH
SSH
SSH
Node 1
Node 2
Node 3
Architecture of Ansible
Ansible Management
Node
Inventory
Playbooks
SSH
SSH
SSH
Node 1
Node 2
Node 3
Module
Module is a collection of
configuration code files
Architecture of Ansible
Ansible Management
Node
InventoryModule
SSH
SSH
SSH
Node 1
Node 2
Node 3
Playbooks
Playbooks are used for
configuration of multiple
servers
Architecture of Ansible
Ansible Management
Node
Module
Playbooks
SSH
SSH
SSH
Node 1
Node 2
Node 3
Inventory is a document that
groups the nodes
Inventory
Architecture of Ansible
Ansible Management
Node
InventoryModule
Playbooks
Node 1
Node 2
Node 3
SSH
SSH
SSH
For secure connection, Ansible
node connects to other nodes
through SSH
Nagios
Why Nagios?
Why is the service not working?
Before Nagios
Why Nagios?
Before Nagios
Why is the service not working!!
Challenges
100%
94%
SERVER
USAGE
MEMORY
USAGE
percentage
Why Nagios?
Before Nagios
I wish someone could have notified
me about these problems
beforehand
Challenges
100%
94%
SERVER
USAGE
MEMORY
USAGE
percentage
Why Nagios?
After Nagios
This helps a lot!
Solution
Email notification:
Your memory is
almost full. Free
up some space
What is Nagios?
Nagios is an open source tool which is used to monitor systems, servers, networks and infrastructure
What is Nagios?
Nagios is an open source tool which is used to monitor systems, servers, networks and infrastructure
Problem remediationComprehensive
monitoring
High availabilityEasy to use
What is Nagios?
Server Storage
Nagios
System
Checks for the status
What is Nagios?
Server Storage
Nagios
Visualization
System
Stores the data
What is Nagios?
Server Storage
Nagios
Visualization
System
Alerts
Or creates
alerts
Stores the data
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Training | Simplilearn

Mais conteúdo relacionado

Mais procurados

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 | EdurekaEdureka!
 
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 2017Danny Ariwicaksono
 
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...Edureka!
 
DevOps Overview
DevOps OverviewDevOps Overview
DevOps OverviewSagar Mody
 
DevOps introduction
DevOps introductionDevOps introduction
DevOps introductionSridhara T V
 
DevOps 101 - an Introduction to DevOps
DevOps 101  - an Introduction to DevOpsDevOps 101  - an Introduction to DevOps
DevOps 101 - an Introduction to DevOpsRed Gate Software
 
DevOps overview 2019-04-13 Nelkinda April Meetup
DevOps overview  2019-04-13 Nelkinda April MeetupDevOps overview  2019-04-13 Nelkinda April Meetup
DevOps overview 2019-04-13 Nelkinda April MeetupShweta Sadawarte
 
Devops online training ppt
Devops online training pptDevops online training ppt
Devops online training pptKhalidQureshi31
 
Building a CICD pipeline for deploying to containers
Building a CICD pipeline for deploying to containersBuilding a CICD pipeline for deploying to containers
Building a CICD pipeline for deploying to containersAmazon Web Services
 
Devops Devops Devops, at Froscon
Devops Devops Devops, at FrosconDevops Devops Devops, at Froscon
Devops Devops Devops, at FrosconKris Buytaert
 
How to implement DevOps in your Organization
How to implement DevOps in your OrganizationHow to implement DevOps in your Organization
How to implement DevOps in your OrganizationDalibor Blazevic
 
DevOps Lifecycle | Edureka
DevOps Lifecycle | EdurekaDevOps Lifecycle | Edureka
DevOps Lifecycle | EdurekaEdureka!
 

Mais procurados (20)

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
 
An introduction to DevOps
An introduction to DevOpsAn introduction to DevOps
An introduction to DevOps
 
DevOps Foundation
DevOps FoundationDevOps Foundation
DevOps Foundation
 
DevOps
DevOpsDevOps
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
 
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
 
DevOps Overview
DevOps OverviewDevOps Overview
DevOps Overview
 
DevOps introduction
DevOps introductionDevOps introduction
DevOps introduction
 
DevOps introduction
DevOps introductionDevOps introduction
DevOps introduction
 
DevOps 101 - an Introduction to DevOps
DevOps 101  - an Introduction to DevOpsDevOps 101  - an Introduction to DevOps
DevOps 101 - an Introduction to DevOps
 
DevOps
DevOps DevOps
DevOps
 
DevOps overview 2019-04-13 Nelkinda April Meetup
DevOps overview  2019-04-13 Nelkinda April MeetupDevOps overview  2019-04-13 Nelkinda April Meetup
DevOps overview 2019-04-13 Nelkinda April Meetup
 
DevOps for beginners
DevOps for beginnersDevOps for beginners
DevOps for beginners
 
Devops online training ppt
Devops online training pptDevops online training ppt
Devops online training ppt
 
Building a CICD pipeline for deploying to containers
Building a CICD pipeline for deploying to containersBuilding a CICD pipeline for deploying to containers
Building a CICD pipeline for deploying to containers
 
Devops Devops Devops, at Froscon
Devops Devops Devops, at FrosconDevops Devops Devops, at Froscon
Devops Devops Devops, at Froscon
 
How to implement DevOps in your Organization
How to implement DevOps in your OrganizationHow to implement DevOps in your Organization
How to implement DevOps in your Organization
 
intro to DevOps
intro to DevOpsintro to DevOps
intro to DevOps
 
DevOps Lifecycle | Edureka
DevOps Lifecycle | EdurekaDevOps Lifecycle | Edureka
DevOps Lifecycle | Edureka
 
Devops ppt
Devops pptDevops ppt
Devops ppt
 

Semelhante a DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Training | Simplilearn

SQL Server DevOps Jumpstart
SQL Server DevOps JumpstartSQL Server DevOps Jumpstart
SQL Server DevOps JumpstartOri Donner
 
DevOps Interview Questions Part - 1 | Devops Interview Questions And Answers ...
DevOps Interview Questions Part - 1 | Devops Interview Questions And Answers ...DevOps Interview Questions Part - 1 | Devops Interview Questions And Answers ...
DevOps Interview Questions Part - 1 | Devops Interview Questions And Answers ...Simplilearn
 
Increase the Velocity of Your Software Releases Using GitHub and DeployHub
Increase the Velocity of Your Software Releases Using GitHub and DeployHubIncrease the Velocity of Your Software Releases Using GitHub and DeployHub
Increase the Velocity of Your Software Releases Using GitHub and DeployHubDevOps.com
 
DevOps Pipeline for Liferay Application
DevOps Pipeline for Liferay ApplicationDevOps Pipeline for Liferay Application
DevOps Pipeline for Liferay ApplicationMaruti Gollapudi
 
DevOps Overview in my own words
DevOps Overview in my own wordsDevOps Overview in my own words
DevOps Overview in my own wordsSUBHENDU KARMAKAR
 
How To Become A DevOps Engineer | Who Is A DevOps Engineer? | DevOps Engineer...
How To Become A DevOps Engineer | Who Is A DevOps Engineer? | DevOps Engineer...How To Become A DevOps Engineer | Who Is A DevOps Engineer? | DevOps Engineer...
How To Become A DevOps Engineer | Who Is A DevOps Engineer? | DevOps Engineer...Simplilearn
 
Continuous Integration
Continuous IntegrationContinuous Integration
Continuous IntegrationXPDays
 
Session on evaluation of DevSecOps
Session on evaluation of DevSecOpsSession on evaluation of DevSecOps
Session on evaluation of DevSecOpsAbdullah al Mamun
 
Software architecture in a DevOps world
Software architecture in a DevOps worldSoftware architecture in a DevOps world
Software architecture in a DevOps worldBert Jan Schrijver
 
Application Lifecycle Management
Application Lifecycle ManagementApplication Lifecycle Management
Application Lifecycle ManagementAmazon Web Services
 
DevOps and Build Automation
DevOps and Build AutomationDevOps and Build Automation
DevOps and Build AutomationHeiswayi Nrird
 
varun JENKINS.pptx
varun JENKINS.pptxvarun JENKINS.pptx
varun JENKINS.pptxVgPolampalli
 
Dev/Test scenarios in DevOps world
Dev/Test scenarios in DevOps worldDev/Test scenarios in DevOps world
Dev/Test scenarios in DevOps worldDavide Benvegnù
 
Codifying the Build and Release Process with a Jenkins Pipeline Shared Library
Codifying the Build and Release Process with a Jenkins Pipeline Shared LibraryCodifying the Build and Release Process with a Jenkins Pipeline Shared Library
Codifying the Build and Release Process with a Jenkins Pipeline Shared LibraryAlvin Huang
 
Continuous Deployment of your Application @SpringOne
Continuous Deployment of your Application @SpringOneContinuous Deployment of your Application @SpringOne
Continuous Deployment of your Application @SpringOneciberkleid
 

Semelhante a DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Training | Simplilearn (20)

SQL Server DevOps Jumpstart
SQL Server DevOps JumpstartSQL Server DevOps Jumpstart
SQL Server DevOps Jumpstart
 
Devops
DevopsDevops
Devops
 
DevOps Interview Questions Part - 1 | Devops Interview Questions And Answers ...
DevOps Interview Questions Part - 1 | Devops Interview Questions And Answers ...DevOps Interview Questions Part - 1 | Devops Interview Questions And Answers ...
DevOps Interview Questions Part - 1 | Devops Interview Questions And Answers ...
 
Increase the Velocity of Your Software Releases Using GitHub and DeployHub
Increase the Velocity of Your Software Releases Using GitHub and DeployHubIncrease the Velocity of Your Software Releases Using GitHub and DeployHub
Increase the Velocity of Your Software Releases Using GitHub and DeployHub
 
DevOps Pipeline for Liferay Application
DevOps Pipeline for Liferay ApplicationDevOps Pipeline for Liferay Application
DevOps Pipeline for Liferay Application
 
DevOps Overview in my own words
DevOps Overview in my own wordsDevOps Overview in my own words
DevOps Overview in my own words
 
Build tool
Build toolBuild tool
Build tool
 
How To Become A DevOps Engineer | Who Is A DevOps Engineer? | DevOps Engineer...
How To Become A DevOps Engineer | Who Is A DevOps Engineer? | DevOps Engineer...How To Become A DevOps Engineer | Who Is A DevOps Engineer? | DevOps Engineer...
How To Become A DevOps Engineer | Who Is A DevOps Engineer? | DevOps Engineer...
 
Continuous Integration
Continuous IntegrationContinuous Integration
Continuous Integration
 
Session on evaluation of DevSecOps
Session on evaluation of DevSecOpsSession on evaluation of DevSecOps
Session on evaluation of DevSecOps
 
Test automation proposal
Test automation proposalTest automation proposal
Test automation proposal
 
Software architecture in a DevOps world
Software architecture in a DevOps worldSoftware architecture in a DevOps world
Software architecture in a DevOps world
 
Application Lifecycle Management
Application Lifecycle ManagementApplication Lifecycle Management
Application Lifecycle Management
 
DevOps and Build Automation
DevOps and Build AutomationDevOps and Build Automation
DevOps and Build Automation
 
Vagrant to-aws-flow
Vagrant to-aws-flowVagrant to-aws-flow
Vagrant to-aws-flow
 
varun JENKINS.pptx
varun JENKINS.pptxvarun JENKINS.pptx
varun JENKINS.pptx
 
Introduction to devops
Introduction to devopsIntroduction to devops
Introduction to devops
 
Dev/Test scenarios in DevOps world
Dev/Test scenarios in DevOps worldDev/Test scenarios in DevOps world
Dev/Test scenarios in DevOps world
 
Codifying the Build and Release Process with a Jenkins Pipeline Shared Library
Codifying the Build and Release Process with a Jenkins Pipeline Shared LibraryCodifying the Build and Release Process with a Jenkins Pipeline Shared Library
Codifying the Build and Release Process with a Jenkins Pipeline Shared Library
 
Continuous Deployment of your Application @SpringOne
Continuous Deployment of your Application @SpringOneContinuous Deployment of your Application @SpringOne
Continuous Deployment of your Application @SpringOne
 

Mais de Simplilearn

ChatGPT in Cybersecurity
ChatGPT in CybersecurityChatGPT in Cybersecurity
ChatGPT in CybersecuritySimplilearn
 
Whatis SQL Injection.pptx
Whatis SQL Injection.pptxWhatis SQL Injection.pptx
Whatis SQL Injection.pptxSimplilearn
 
Top 5 High Paying Cloud Computing Jobs in 2023
 Top 5 High Paying Cloud Computing Jobs in 2023  Top 5 High Paying Cloud Computing Jobs in 2023
Top 5 High Paying Cloud Computing Jobs in 2023 Simplilearn
 
Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024Simplilearn
 
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...Simplilearn
 
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...Simplilearn
 
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...Simplilearn
 
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...Simplilearn
 
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...Simplilearn
 
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...Simplilearn
 
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...Simplilearn
 
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...Simplilearn
 
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...Simplilearn
 
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...Simplilearn
 
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...Simplilearn
 
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...Simplilearn
 
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...Simplilearn
 
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...Simplilearn
 
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...Simplilearn
 
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...Simplilearn
 

Mais de Simplilearn (20)

ChatGPT in Cybersecurity
ChatGPT in CybersecurityChatGPT in Cybersecurity
ChatGPT in Cybersecurity
 
Whatis SQL Injection.pptx
Whatis SQL Injection.pptxWhatis SQL Injection.pptx
Whatis SQL Injection.pptx
 
Top 5 High Paying Cloud Computing Jobs in 2023
 Top 5 High Paying Cloud Computing Jobs in 2023  Top 5 High Paying Cloud Computing Jobs in 2023
Top 5 High Paying Cloud Computing Jobs in 2023
 
Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024
 
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
 
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
 
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
 
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...
 
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...
 
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...
 
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...
 
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...
 
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...
 
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...
 
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...
 
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...
 
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...
 
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...
 
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...
 
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...
 

Último

Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSMae Pangan
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmStan Meyer
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
Presentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptxPresentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptxRosabel UA
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Seán Kennedy
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxElton John Embodo
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Projectjordimapav
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptxiammrhaywood
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 

Último (20)

Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHS
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and Film
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
Presentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptxPresentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docx
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Project
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 

DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Training | Simplilearn

  • 1.
  • 2. Before DevOps – Waterfall model Waterfall model - Traditional development models This model is similar to a waterfall When the water flows off from the cliff, it cannot go back to its previous state
  • 3. Before DevOps – Waterfall model Requirements Design Implementation Verification Maintenance Waterfall model is the basic SDLC model
  • 4. Before DevOps – Waterfall model • It’s difficult to make changes to the previous stage • Not recommended for large-sized projects • Developers and testers doesn't work together (which can result in a lot of bugs at the end) • Not recommended for projects where requirements have a high risk of getting changed Requirements Design Implementation Verification Maintenance
  • 5. Before DevOps – Waterfall model Waterfall Model Developer Takes a very long time for deploying code It’s difficult to identify and give feedback on the product Operation
  • 6. Before DevOps – Agile model • Agile is an approach in software development where each project is split into multiple iterations • As a result, at the end of each iteration a software product is delivered DesignRequirements DesignRequirements DesignRequirements ….. Iteration 1 Iteration 2 Iteration N
  • 7. Before DevOps – Agile model Agile Model Developer The code is working on my system! But, the same software (code) isn’t working on my system! Operation Agile
  • 8. What’s in it for you?  What is DevOps?  Benefits of DevOps  Lifecycle of DevOps  Tools in DevOps  Git  Maven  Selenium  Jenkins  Docker  Ansible  Nagios Let’s see how DevOps can solve these problems?
  • 9. DevOps over waterfall model DevOps Model Developer Takes a very long time for deploying code It’s difficult to identify and give feedback on the product Operation Better monitoring and quick feedback can be done through DevOps continuous monitoring tool Continuous integration results in quick deployment of code
  • 10. DevOps over Agile model DevOps Model Developer The code is working on my system! But, the same software (code) isn’t working on my system! Operation Agile Iteration Code works on my system too! Both developer and operation team work together
  • 11. DevOps over Agile model Planning A New Website Website ManagDevelopment Operation Agile: Problem Solution Development Operation DevOps:
  • 12. DevOps over Agile model Planning A New Website Website ManagDevelopment Operation Agile: Problem Solution Development Operation DevOps:
  • 13. What’s in it for you?  What is DevOps?  Benefits of DevOps  Lifecycle of DevOps  Tools in DevOps  Git  Maven  Selenium  Jenkins  Docker  Ansible  Nagios
  • 14. What is DevOps? DevOps is a collaboration between development and operation teams which enables continuous delivery of applications and services to our end users Development Operation
  • 17. Benefits of DevOps Continuous delivery of software
  • 18. Benefits of DevOps Continuous delivery of software Better collaboration between teams
  • 19. Benefits of DevOps Continuous delivery of software Better collaboration between teams Easy deployment
  • 20. Benefits of DevOps Continuous delivery of software Better collaboration between teams Easy deployment Better efficiency and scalability
  • 21. Benefits of DevOps Continuous delivery of software Better collaboration between teams Easy deployment Better efficiency and scalability Errors can be fixed at initial stage
  • 22. Benefits of DevOps Continuous delivery of software Better collaboration between teams Easy deployment Better efficiency and scalability Errors can be fixed at initial stage Better security
  • 23. Benefits of DevOps Continuous delivery of software Better collaboration between teams Easy deployment Better efficiency and scalability Errors can be fixed at initial stage Better security Less Manual intervention (which means less chances of error)
  • 25. Lifecycle in DevOps Continuous monitoring Source code management Continuous deployment Software released Continuous build and test Continuous integration
  • 27. Tools in DevOps Continuous build and test Continuous monitoring Source code management Continuous deployment Continuous integration Software released
  • 28. Git
  • 29. Why Git? Before Task 1 Task 2 Task 3 Task 4 Developers: Challenges • No collaboration • Versions are not maintained properly • Time consuming • In case the server crashes, there is no chance of recovery • No backup
  • 30. Why Git? After Developers: Solution • Team collaboration • Versions of software are documented and maintained accurately • Saves time • Easy to use • Automatic backups Task 2 Task 3 Task 4 Task 1
  • 31. What is Git? GitHub Remote Server Developer 1 Developer 3Developer 2 Git is a distributed version control tool which is used for managing source code
  • 32. What is Git? Git is a distributed version control tool which is used for managing source code It is used to track changes in the source code It’s a software tool Multiple developers can work together Supports non-linear development
  • 33. Architecture of Git Working Directory Local RepositoryStaging Area Remote Repository Local Remote
  • 34. Architecture of Git Working Directory Local RepositoryStaging Area Remote Repository git add Local Remote add files to the staging area
  • 35. Architecture of Git Working Directory Local RepositoryStaging Area Remote Repository git add git commit Local Remote add files to the staging area commit those files to the local repository
  • 36. Architecture of Git Working Directory Local RepositoryStaging Area Remote Repository git add git commit git push Local Remote add files to the staging area commit those files to the local repository push the committed files to the remote repository
  • 37. Architecture of Git Working Directory Local RepositoryStaging Area Remote Repository git add git commit git push git pull Local Remote add files to the staging area commit those files to the local repository push the committed files to the remote repository fetches all the changes from a remote repository to a local repository
  • 38. Architecture of Git Working Directory Local RepositoryStaging Area Remote Repository git add git commit git push git pull git checkout Local Remote add files to the staging area create new branches and switch to them when required commit those files to the local repository push the committed files to the remote repository fetches all the changes from a remote repository to a local repository
  • 39. Architecture of Git Working Directory Local RepositoryStaging Area Remote Repository git add git commit git push git pull git checkout git merge Local Remote After you are done with the changes, you can merge the new branches to the master branch add files to the staging area create new branches and switch to them when required commit those files to the local repository push the committed files to the remote repository fetches all the changes from a remote repository to a local repository
  • 40. Maven
  • 41. Why Maven? Before Maven Task: Create a football game using Java
  • 42. Why Maven? Before Maven Task: Create a football game using Java Challenges • For each project you need to keep adding a set of Jars • Even a minor mistake in the structure of servlet doesn’t give the right output • Building and deploying a project takes up a lot of time
  • 43. Why Maven? After Maven Task: Create a football game using Java Solution Maven has live templates in its central repository. So, a user has to declare only the dependencies that he requires Maven will download and deploy the dependencies with the application
  • 44. What is Maven? Maven is an automation tool which helps to build and manage software projects within a short period of time
  • 45. What is Maven? Maven is an automation tool which helps to build and manage software projects within a short period of time Easy build processEasy to use Instant access to new features with no additional configurations Supports parallel builds
  • 46. Architecture of Maven Pom file Maven commands are executed in pom file
  • 47. Architecture of Maven Maven commands are executed in pom file POM (project object model) is a XML file which consists details of the project and configuration in order to build software Pom file
  • 48. Architecture of Maven Pom file Maven commands are executed in pom file Checks the dependencies Maven local repository Fetches from
  • 49. Architecture of Maven Pom file Maven commands are executed in pom file Checks the dependencies Builds plugins
  • 50. Architecture of Maven Builds profile Pom file Maven commands are executed in pom file Checks the dependencies Builds plugins Software is built
  • 52. Why Selenium? Before Selenium Sequential testing This takes a lot of time! Test 1 Test 2 Test 3 Test 4 Total Time = 4 Min 10 Seconds 50 Sec 2 Min40 Sec 1 Min
  • 53. Why Selenium? After Selenium Parallel testing That was so fast! Total Time = 2 Minutes 50 Sec 2 Min 40 Sec 1 Min Test 1 Test 2 Test 3 Test 4
  • 54. What is Selenium? Selenium is an open source automation tool which is used for testing web applications. It is mainly used for regression and functional testing
  • 55. What is Selenium? Selenium is an open source automation tool which is used for testing web applications. It is mainly used for regression and functional testing Supports parallel test execution High accuracy Allows scripting in several languages Fast execution
  • 56. Architecture of Selenium Browser drivers HTTP request Web driver API Web driver SPI JSON wire protocol HTTP request Web browsers Selenium client library C#
  • 57. Architecture of Selenium Browser drivers HTTP request Web driver API Web driver SPI JSON wire protocol HTTP request Web browsers Selenium client library C# Selenium WebDriver codes are build using these client libraries
  • 58. Selenium client library C# Architecture of Selenium Browser drivers Web driver SPI JSON wire protocol HTTP request Web browsers WebDriver application programming interface (API) is used to automate web application testing in a easier way HTTP request Web driver API Note: The commands are sent to SPI
  • 59. HTTP request Web driver API Selenium client library C# Architecture of Selenium Browser drivers Web browsers WebDriver service provider interface (SPI) is immutable and stateless. It sends the command to browser drivers using JSON wire protocol Web driver SPI JSON wire protocol HTTP request
  • 60. Web driver SPI JSON wire protocol HTTP request HTTP request Web driver API Selenium client library C# Architecture of Selenium Web browsers The drivers manages the communication between the browsers and the JSON wire protocol Browser drivers Note: Each web browser has its own driver on
  • 61. Browser drivers Web driver SPI JSON wire protocol HTTP request HTTP request Web driver API Selenium client library C# Architecture of Selenium As soon the command is received from the WebDriver, the browser driver will execute it on the respective web browser Web browsers
  • 63. Why Jenkins? Before Jenkins: Developer Developer Source code repository Issues in integration Delay in testing Notify developer Error detected Software delivered No error
  • 64. Why Jenkins? Before Jenkins: Source code repository Issues in integration Delay in testing Notify developer Error detected Software delivered No error But what are the challenges here? Developers had to wait till the software was built for test results Developer Developer
  • 65. Developer Developer Why Jenkins? Before Jenkins: Source code repository Notify developer Error detected Software delivered No error But what are the challenges here? Lack of continuous feedback resulted in a lot time consumption Issues in integration Delay in testing
  • 66. Issues in integration Delay in testing Developer Developer Why Jenkins? Before Jenkins: Source code repository Notify developer Error detected No error But what are the challenges here?Delivery of software was delayed Software delivered
  • 67. Why Jenkins? After Jenkins: Developer Developer Source code repository Build Deploy Error detected Test Fetches changes Notify developer Software delivered No error
  • 68. What is Jenkins? Jenkins is an open source continuous integration tool. It helps to automate continuous development, testing and deployment of newly created codes
  • 69. What is Jenkins? Jenkins is an open source continuous integration tool. It helps to automate continuous development, testing and deployment of newly created codes It is easily distributed across multiple machines Has multiple pluginsEasy installation and configuration Jenkins can be extended via plugins
  • 70. Architecture of Jenkins Remote source code repository
  • 71. Architecture of Jenkins Remote source code repository Jenkins server master Jenkins master pulls the code every time there is a commit
  • 72. Architecture of Jenkins Jenkins slave Jenkins slave Jenkins slave TCP/IPTCP/IPTCP/IP Jenkins master distributes its workload to all the slaves Remote source code repository Jenkins server master Jenkins master pulls the code every time there is a commit
  • 73. Architecture of Jenkins Remote source code repository Jenkins slave Jenkins slave Jenkins slave TCP/IPTCP/IPTCP/IP Jenkins master pulls the code every time there is a commit Jenkins server master On request from Jenkins master, the slaves accept tasks and produce test reports Test reports
  • 75. Why Docker? Before Occupied memory Wasted memory 5 GB 3 GB 2 GB 2 GB 1 GB 3 GB Memory 8 GB 4 GB 4 GB App 1 App 2 App 3 Lorem ipsum In a virtual machine, only 10 GB of memory is consumed whereas the remaining 6 GB of unused memory cannot be utilized again
  • 76. Why Docker? After Occupied memory Can be reused memory 5 GB 3 GB 2 GB 2 GB 1 GB 3 GB Memory 8 GB 4 GB 4 GB App 1 App 2 App 3 With Docker, when 10 GB of memory is used, the remaining 6 GB of memory can be reused for a new container Lorem ipsum
  • 77. What is Docker? Docker is an OS-level virtualization software platform that enables developers and IT administrators to create, deploy and run applications in a Docker Container with all their dependencies Docker Engine Host OS Infrastructure App A Bins/Libs App C Bins/Libs Docker Container 1 App B Bins/Libs Docker Container 2 Docker Container 3 Note: Docker Container is an executable package of application and its dependencies together
  • 78. What is Docker? Docker is an OS-level virtualization software platform that enables developers and IT administrators to create, deploy and run applications in a Docker Container with all their dependencies Isolated applicationsShort boot-up uptimeHigh scalability and efficiency Reusable data volumes
  • 79. Architecture of Docker Docker Client Docker Host Docker Daemon Docker Registry ImagesContainer Container REST API Server Client Docker CLI Docker Daemon REST API Docker Engine Docker Toolbox
  • 80. Architecture of Docker Docker Host Docker Daemon Docker Registry ImagesContainer Container REST API Server Client Docker CLI Docker Daemon REST API Docker Engine Docker Toolbox Docker Client issues commands to the Docker Daemon Docker Client
  • 81. Architecture of Docker Docker Host Docker Registry ImagesContainer Container REST API Server Client Docker CLI Docker Daemon REST API Docker Engine Docker Toolbox Docker Client Docker Daemon Docker Daemon is a server which interacts with the operating system and performs all kind of tasks given by Docker client
  • 82. Architecture of Docker Docker Host Docker Registry Container Container REST API Server Client Docker CLI Docker Daemon REST API Docker Engine Docker Toolbox Docker Client Docker DaemonDocker Images is a set of instructions that is used for creating Docker containers Images
  • 83. Architecture of Docker Docker Host Docker Registry REST API Server Client Docker CLI Docker Daemon REST API Docker Engine Docker Toolbox Docker Client Docker Daemon Images Docker container is a lightweight software package that includes all the dependencies to run an application Container Container
  • 84. Architecture of Docker Docker Host REST API Server Client Docker CLI Docker Daemon REST API Docker Engine Docker Toolbox Docker Client Docker Daemon ImagesContainer Container Docker Registry Docker Registry is a service to host and distribute Docker Images among users
  • 86. Why Ansible? Task: Install Tomcat on all the 3 web servers and Redis on the 2 database servers This work is a piece of cake for me! Before Ansible:
  • 87. Why Ansible? This process will take a lot of time for me!! Task: Install Tomcat on all the 33 web servers and Redis on the 22 database servers ….. … Before Ansible:
  • 88. Why Ansible? With Ansible, a code is written once for the installation and deployed multiple times Task: Install Tomcat on all the 33 web servers and Redis on the 22 database servers ….. … After Ansible:
  • 89. What is Ansible? Ansible is a configuration management tool where applications are deployed automatically on a variety of environments
  • 90. What is Ansible? Ansible is a configuration management tool where applications are deployed automatically on a variety of environments Uses SSH for secure connections Agentless tool Push based configuration tool Maintains consistency of a product’s performance X
  • 91. Architecture of Ansible Ansible Management Node InventoryModule Playbooks SSH SSH SSH Node 1 Node 2 Node 3
  • 92. Architecture of Ansible Ansible Management Node Inventory Playbooks SSH SSH SSH Node 1 Node 2 Node 3 Module Module is a collection of configuration code files
  • 93. Architecture of Ansible Ansible Management Node InventoryModule SSH SSH SSH Node 1 Node 2 Node 3 Playbooks Playbooks are used for configuration of multiple servers
  • 94. Architecture of Ansible Ansible Management Node Module Playbooks SSH SSH SSH Node 1 Node 2 Node 3 Inventory is a document that groups the nodes Inventory
  • 95. Architecture of Ansible Ansible Management Node InventoryModule Playbooks Node 1 Node 2 Node 3 SSH SSH SSH For secure connection, Ansible node connects to other nodes through SSH
  • 97. Why Nagios? Why is the service not working? Before Nagios
  • 98. Why Nagios? Before Nagios Why is the service not working!! Challenges 100% 94% SERVER USAGE MEMORY USAGE percentage
  • 99. Why Nagios? Before Nagios I wish someone could have notified me about these problems beforehand Challenges 100% 94% SERVER USAGE MEMORY USAGE percentage
  • 100. Why Nagios? After Nagios This helps a lot! Solution Email notification: Your memory is almost full. Free up some space
  • 101. What is Nagios? Nagios is an open source tool which is used to monitor systems, servers, networks and infrastructure
  • 102. What is Nagios? Nagios is an open source tool which is used to monitor systems, servers, networks and infrastructure Problem remediationComprehensive monitoring High availabilityEasy to use
  • 103. What is Nagios? Server Storage Nagios System Checks for the status
  • 104. What is Nagios? Server Storage Nagios Visualization System Stores the data
  • 105. What is Nagios? Server Storage Nagios Visualization System Alerts Or creates alerts Stores the data

Notas do Editor

  1. Style - 01
  2. Style - 01
  3. Style - 01
  4. http://techgenix.com/in-demand-tech-jobs/ https://www.cloudcomputing-news.net/news/2018/oct/18/devops-skills-demand-continues-soar-salaries-going-it/
  5. Style - 01
  6. Style - 01
  7. Style - 01
  8. Style - 01
  9. Style - 01
  10. Style - 01
  11. Style - 01
  12. Style - 01
  13. Style - 01
  14. Style - 01
  15. Style - 01
  16. Style - 01
  17. Style - 01
  18. Style - 01
  19. Style - 01
  20. Style - 01
  21. Style - 01
  22. Style - 01
  23. Style - 01
  24. Style - 01
  25. https://www.javatpoint.com/maven-tutorial
  26. https://www.javatpoint.com/maven-tutorial
  27. https://www.javatpoint.com/maven-tutorial
  28. Push based archi for quick configurations
  29. Push based archi for quick configurations
  30. Push based archi for quick configurations
  31. https://www.javatpoint.com/maven-tutorial
  32. https://www.javatpoint.com/maven-tutorial
  33. Regression testing is the process to make sure that the older programming still works with the new changes. Functional testing ensures that the requirements are properly satisfied by the application.
  34. Regression testing is the process to make sure that the older programming still works with the new changes. Functional testing ensures that the requirements are properly satisfied by the application.
  35. WEB driver API will help a users to make their tests easier to maintain
  36. WEB driver API will help a users to make their tests easier to maintain
  37. WEB driver API will help a users to make their tests easier to maintain
  38. Stateless: So if you call a function twice you will always have exactly the same result. Everything is immutable and any function only depends on it’s input
  39. WEB driver API will help a users to make their tests easier to maintain
  40. WEB driver API will help a users to make their tests easier to maintain
  41. https://www.youtube.com/watch?v=4nKW2eF-nIw
  42. https://www.youtube.com/watch?v=4nKW2eF-nIw
  43. https://www.youtube.com/watch?v=4nKW2eF-nIw
  44. https://www.youtube.com/watch?v=4nKW2eF-nIw
  45. This increases the frequency of new software releases
  46. Push based archi for quick configurations
  47. Push based archi for quick configurations
  48. Push based archi for quick configurations
  49. Push based archi for quick configurations
  50. Push based archi for quick configurations
  51. Push based archi for quick configurations
  52. Style - 01
  53. Style - 01
  54. Style - 01
  55. Style - 01
  56. Style - 01
  57. Style - 01
  58. Style - 01
  59. Style - 01
  60. Style - 01
  61. Style - 01
  62. https://www.youtube.com/watch?v=4nKW2eF-nIw
  63. https://www.youtube.com/watch?v=4nKW2eF-nIw
  64. https://www.youtube.com/watch?v=4nKW2eF-nIw
  65. Push based archi for quick configurations
  66. Push based archi for quick configurations
  67. https://www.youtube.com/watch?v=4nKW2eF-nIw
  68. https://www.youtube.com/watch?v=4nKW2eF-nIw
  69. https://www.youtube.com/watch?v=4nKW2eF-nIw
  70. https://www.youtube.com/watch?v=4nKW2eF-nIw
  71. https://www.youtube.com/watch?v=4nKW2eF-nIw
  72. https://www.javatpoint.com/maven-tutorial
  73. https://www.javatpoint.com/maven-tutorial
  74. https://www.javatpoint.com/maven-tutorial
  75. https://www.javatpoint.com/maven-tutorial
  76. Problkem remidation- allow automatic restart of failed applications and services
  77. Problkem remidation- allow automatic restart of failed applications and services
  78. Problkem remidation- allow automatic restart of failed applications and services
  79. Problkem remidation- allow automatic restart of failed applications and services
  80. Problkem remidation- allow automatic restart of failed applications and services