SlideShare a Scribd company logo
Introduction to
Ansible
Why Ansible ???
 No Agent
 Idempotent
 Declarative Not Procedural
 Tiny Learning Curve
Ansible Use Cases
 Provisioning
 Configuration Management
 App Deployment
 Continuous Delivery
 Security & Compliance
 Orchestration
Architecture of Ansible
Playbook
 Playbooks are simple YAML files. These files are descriptions of the desired
state of your systems
 Playbook contains Plays.
 Plays contain tasks.
 tasks call modules.
Installing Ansible
 sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-
latest-8.noarch.rpm
 sudo dnf install --enablerepo epel-playground ansible
EXAMPLE OF ANSIBLE
 Create yaml file
---
- hosts: localhost
sudo:yes
tasks:
- name : install apache
yum name=httpd state=latest
- name: start apache
service:
name:httpd
state: started
 Run the file
ansible-playbook play.yaml
Companies that are using Ansible
THANKYOU

More Related Content

PPTX
Ansible Tutorial For Beginners | What Is Ansible And How It Works? | Ansible ...
PDF
Hands On Introduction To Ansible Configuration Management With Ansible Comple...
PDF
PDF
Ansible windows cheat sheet by anil.k
PPTX
Managing windows Nodes like Linux Nodes by Ansible
PPTX
Advance discussion on Ansible - Rahul Inti
PPTX
Breaking Up With Your Data Center Presentation
PDF
Ansible
Ansible Tutorial For Beginners | What Is Ansible And How It Works? | Ansible ...
Hands On Introduction To Ansible Configuration Management With Ansible Comple...
Ansible windows cheat sheet by anil.k
Managing windows Nodes like Linux Nodes by Ansible
Advance discussion on Ansible - Rahul Inti
Breaking Up With Your Data Center Presentation
Ansible

What's hot (6)

PDF
DEPLOYING WORDPRESS BLOG USING DOCKER COMPOSE & ANSIBLE ON AWS​
PPTX
Basics of Ansible - Sahil Davawala
PPT
Software Exploitation Techniques by Amit Malik
PPTX
What Is Ansible? | How Ansible Works? | Ansible Tutorial For Beginners | DevO...
PDF
Ams.rb Oktober
PDF
Ansible whirlwind tour
DEPLOYING WORDPRESS BLOG USING DOCKER COMPOSE & ANSIBLE ON AWS​
Basics of Ansible - Sahil Davawala
Software Exploitation Techniques by Amit Malik
What Is Ansible? | How Ansible Works? | Ansible Tutorial For Beginners | DevO...
Ams.rb Oktober
Ansible whirlwind tour
Ad

Similar to installation and introduction to Ansible (20)

PDF
Introduction to Ansible in RHEL- RHCE.pdf
PPTX
Introduction to ansible
PPTX
Ansible_Presentation.pptx in devops 6th sem lab
PPTX
Introduction to ansible
PPTX
Introduction to Ansible
PPTX
Introduction to Ansible
PPTX
Ansible Automation Best Practices From Startups to Enterprises - Minnebar 12
PPTX
Ansible as configuration management tool for devops
PPTX
SESSION Ansible how to deploy and push resources
PPTX
Intro to-ansible-sep7-meetup
ODP
Introduction to Ansible
PPTX
Ansible
PPT
Ansible Introduction
PDF
Network Automation: Ansible 101
PDF
Ansible_Basics_ppt.pdf
PPTX
Ansible day01
PPTX
Go Faster with Ansible (AWS meetup)
PDF
Getting Started with Ansible - Jake.pdf
PDF
Ansible
Introduction to Ansible in RHEL- RHCE.pdf
Introduction to ansible
Ansible_Presentation.pptx in devops 6th sem lab
Introduction to ansible
Introduction to Ansible
Introduction to Ansible
Ansible Automation Best Practices From Startups to Enterprises - Minnebar 12
Ansible as configuration management tool for devops
SESSION Ansible how to deploy and push resources
Intro to-ansible-sep7-meetup
Introduction to Ansible
Ansible
Ansible Introduction
Network Automation: Ansible 101
Ansible_Basics_ppt.pdf
Ansible day01
Go Faster with Ansible (AWS meetup)
Getting Started with Ansible - Jake.pdf
Ansible
Ad

Recently uploaded (20)

PPTX
CH1 Production IntroductoryConcepts.pptx
PPT
introduction to datamining and warehousing
PPT
Project quality management in manufacturing
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PDF
Well-logging-methods_new................
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
Safety Seminar civil to be ensured for safe working.
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PPTX
additive manufacturing of ss316l using mig welding
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
web development for engineering and engineering
PPTX
Sustainable Sites - Green Building Construction
PDF
Digital Logic Computer Design lecture notes
PPTX
bas. eng. economics group 4 presentation 1.pptx
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PPTX
OOP with Java - Java Introduction (Basics)
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PDF
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
PPTX
Artificial Intelligence
CH1 Production IntroductoryConcepts.pptx
introduction to datamining and warehousing
Project quality management in manufacturing
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Well-logging-methods_new................
Model Code of Practice - Construction Work - 21102022 .pdf
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
Safety Seminar civil to be ensured for safe working.
Embodied AI: Ushering in the Next Era of Intelligent Systems
additive manufacturing of ss316l using mig welding
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
web development for engineering and engineering
Sustainable Sites - Green Building Construction
Digital Logic Computer Design lecture notes
bas. eng. economics group 4 presentation 1.pptx
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
OOP with Java - Java Introduction (Basics)
Foundation to blockchain - A guide to Blockchain Tech
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
Artificial Intelligence

installation and introduction to Ansible