Introducing
Your new presentation assistant.
Refine, enhance, and tailor your content, source relevant images, and edit visuals quicker than ever before.
Trending searches
Design plan to orchestrate an ordered series of plays against a particular inventory of hosts
An ordered set of tasks for a set of hosts
ansible-playbook -i preprod -f 20 deploy-website.yaml
ansible-playbook -i prod -f 100 deploy-website.yaml
- name: Set up nginx
hosts: webservers
connection: ssh
vars:
- cachedir: /opt/cache
tasks:
- name: add cache dir
file: path={{ cachedir }} state=directory
- name: install nginx
yum: name=nginx state=present
A task execution orchestration engine.
Written in python, fed with yaml
Inventory is a list of and information about the hosts available to run plays on.
Pssh -- without having to scour output for errors or script in idempotence
Fabric -- without having to write python
Chef -- without having to bootstrap or write ruby
Salt -- without minions and masters
Puppet -- without master, manifests, certs...
Mcollective -- without pre-established command conifguration or infrastructure
A task is a discrete action that is a declaration about the state of a system
Bits of code copied to remote system and executed with arguments
- name: add cache dir
file: path=/opt/cache state=directory
- name: install nginx
yum: name=nginx state=present
- name: start nginx
service: name=nginx enabled=yes state=started