2012-03-09 16:44:14 +00:00
|
|
|
.. _patterns:
|
|
|
|
|
2012-05-13 15:00:02 +00:00
|
|
|
Inventory & Patterns
|
|
|
|
====================
|
2012-03-07 16:35:18 +00:00
|
|
|
|
2012-03-31 14:38:24 +00:00
|
|
|
Ansible works against multiple systems in your infrastructure at the
|
|
|
|
same time. It does this by selecting portions of systems listed in
|
|
|
|
Ansible's inventory file, which defaults to /etc/ansible/hosts.
|
2012-03-09 19:39:29 +00:00
|
|
|
|
|
|
|
.. _inventoryformat:
|
|
|
|
|
2012-05-06 21:13:57 +00:00
|
|
|
Hosts and Groups
|
|
|
|
++++++++++++++++
|
2012-03-08 18:53:48 +00:00
|
|
|
|
2012-05-06 21:13:57 +00:00
|
|
|
The format for /etc/ansible/hosts is an INI format and looks like this::
|
2012-03-08 18:36:47 +00:00
|
|
|
|
|
|
|
mail.example.com
|
|
|
|
|
|
|
|
[webservers]
|
|
|
|
foo.example.com
|
|
|
|
bar.example.com
|
|
|
|
|
|
|
|
[dbservers]
|
|
|
|
one.example.com
|
|
|
|
two.example.com
|
|
|
|
three.example.com
|
|
|
|
|
2012-05-02 05:35:02 +00:00
|
|
|
The things in brackets are group names. You don't have to have them,
|
2012-03-11 19:34:21 +00:00
|
|
|
but they are useful.
|
2012-03-08 18:36:47 +00:00
|
|
|
|
2012-04-17 23:59:15 +00:00
|
|
|
If you have hosts that run on non-standard SSH ports you can put the port number
|
2012-05-06 21:13:57 +00:00
|
|
|
after the hostname with a colon.
|
2012-04-17 23:59:15 +00:00
|
|
|
|
|
|
|
four.example.com:5309
|
|
|
|
|
2012-03-08 18:53:48 +00:00
|
|
|
Selecting Targets
|
|
|
|
+++++++++++++++++
|
|
|
|
|
2012-03-31 14:38:24 +00:00
|
|
|
We'll go over how to use the command line in :doc:`examples` section, however, basically it looks like this::
|
|
|
|
|
|
|
|
ansible <pattern_goes_here> -m <module_name> -a <arguments>
|
|
|
|
|
|
|
|
Such as::
|
|
|
|
|
|
|
|
ansible webservers -m service -a "name=httpd state=restarted"
|
|
|
|
|
2012-05-06 21:13:57 +00:00
|
|
|
Within :doc:`playbooks`, these patterns can be used for even greater purposes.
|
2012-03-31 14:38:24 +00:00
|
|
|
|
|
|
|
Anyway, to use Ansible, you'll first need to know how to tell Ansible which hosts in your inventory file to talk to.
|
|
|
|
This is done by designating particular host names or groups of hosts.
|
|
|
|
|
|
|
|
The following patterns target all hosts in the inventory file::
|
2012-03-08 18:53:48 +00:00
|
|
|
|
|
|
|
all
|
|
|
|
*
|
2012-03-08 18:36:47 +00:00
|
|
|
|
2012-03-11 19:34:21 +00:00
|
|
|
Basically 'all' is an alias for '*'. It is also possible to address a specific host or hosts::
|
2012-03-08 18:36:47 +00:00
|
|
|
|
|
|
|
one.example.com
|
|
|
|
one.example.com:two.example.com
|
2012-03-11 19:34:21 +00:00
|
|
|
192.168.1.50
|
|
|
|
192.168.1.*
|
2012-03-08 18:36:47 +00:00
|
|
|
|
2012-03-09 16:44:14 +00:00
|
|
|
The following patterns address one or more groups, which are denoted
|
2012-03-11 19:34:21 +00:00
|
|
|
with the aforementioned bracket headers in the inventory file::
|
2012-03-08 18:36:47 +00:00
|
|
|
|
|
|
|
webservers
|
|
|
|
webservers:dbservers
|
|
|
|
|
2012-07-04 21:44:39 +00:00
|
|
|
In 0.5 and later, you can exclude groups as well, for instance, all webservers not in Phoenix::
|
|
|
|
|
|
|
|
webservers:!phoenix
|
|
|
|
|
2012-03-11 19:34:21 +00:00
|
|
|
Individual host names (or IPs), but not groups, can also be referenced using
|
2012-03-09 16:44:14 +00:00
|
|
|
wildcards::
|
2012-03-08 18:36:47 +00:00
|
|
|
|
2012-03-09 19:39:29 +00:00
|
|
|
*.example.com
|
|
|
|
*.com
|
2012-03-08 18:36:47 +00:00
|
|
|
|
2012-03-08 18:53:48 +00:00
|
|
|
It's also ok to mix wildcard patterns and groups at the same time::
|
2012-03-08 18:36:47 +00:00
|
|
|
|
2012-03-09 19:39:29 +00:00
|
|
|
one*.com:dbservers
|
2012-03-08 18:36:47 +00:00
|
|
|
|
2012-07-04 21:44:39 +00:00
|
|
|
|
2012-04-17 23:54:23 +00:00
|
|
|
Easy enough. See :doc:`examples` and then :doc:`playbooks` for how to do things to selected hosts.
|
|
|
|
|
2012-05-06 21:13:57 +00:00
|
|
|
Host Variables
|
|
|
|
++++++++++++++
|
|
|
|
|
2012-07-04 21:44:39 +00:00
|
|
|
It is easy to assign variables to hosts that will be used later in playbooks::
|
2012-05-06 21:13:57 +00:00
|
|
|
|
|
|
|
[atlanta]
|
|
|
|
host1 http_port=80 maxRequestsPerChild=808
|
|
|
|
host2 http_port=303 maxRequestsPerChild=909
|
|
|
|
|
|
|
|
|
|
|
|
Group Variables
|
|
|
|
+++++++++++++++
|
|
|
|
|
2012-07-04 21:44:39 +00:00
|
|
|
Variables can also be applied to an entire group at once::
|
2012-05-06 21:13:57 +00:00
|
|
|
|
|
|
|
[atlanta]
|
|
|
|
host1
|
|
|
|
host2
|
|
|
|
|
|
|
|
[atlanta:vars]
|
|
|
|
ntp_server=ntp.atlanta.example.com
|
|
|
|
proxy=proxy.atlanta.example.com
|
|
|
|
|
2012-05-10 05:36:52 +00:00
|
|
|
Groups of Groups, and Group Variables
|
|
|
|
+++++++++++++++++++++++++++++++++++++
|
2012-05-06 21:13:57 +00:00
|
|
|
|
2012-05-10 05:36:52 +00:00
|
|
|
Using Ansible 0.4, it is possible to make groups of groups and assign
|
|
|
|
variables to groups. These variables can be used by /usr/bin/ansible-playbook, but not
|
2012-06-20 01:22:01 +00:00
|
|
|
/usr/bin/ansible::
|
2012-05-06 21:13:57 +00:00
|
|
|
|
|
|
|
[atlanta]
|
|
|
|
host1
|
|
|
|
host2
|
|
|
|
|
|
|
|
[raleigh]
|
|
|
|
host2
|
|
|
|
host3
|
|
|
|
|
|
|
|
[southeast:children]
|
2012-05-06 21:16:42 +00:00
|
|
|
atlanta
|
|
|
|
raleigh
|
2012-05-06 21:13:57 +00:00
|
|
|
|
|
|
|
[southeast:vars]
|
|
|
|
some_server=foo.southeast.example.com
|
2012-05-10 05:36:52 +00:00
|
|
|
halon_system_timeout=30
|
|
|
|
self_destruct_countdown=60
|
|
|
|
escape_pods=2
|
2012-05-06 21:13:57 +00:00
|
|
|
|
|
|
|
[usa:children]
|
|
|
|
southeast
|
|
|
|
northeast
|
|
|
|
southwest
|
|
|
|
southeast
|
|
|
|
|
2012-05-06 19:05:42 +00:00
|
|
|
YAML Inventory Format
|
|
|
|
+++++++++++++++++++++
|
2012-04-17 23:54:23 +00:00
|
|
|
|
2012-07-04 21:44:39 +00:00
|
|
|
For that prefer to use it, the inventory file can also be expressed in
|
2012-05-06 21:13:57 +00:00
|
|
|
YAML::
|
2012-04-17 23:54:23 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
# some ungrouped hosts, either use the short string form or the "host: " prefix
|
|
|
|
- host: jupiter
|
|
|
|
- mars
|
|
|
|
|
|
|
|
# variables can be assigned like this...
|
|
|
|
- host: saturn
|
|
|
|
vars:
|
|
|
|
- moon: titan
|
|
|
|
|
|
|
|
# groups can also set variables to all hosts in the group
|
|
|
|
# here are a bunch of hosts using a non-standard SSH port
|
|
|
|
# and also defining a variable 'ntpserver'
|
|
|
|
- group: greek
|
|
|
|
hosts:
|
|
|
|
- zeus
|
|
|
|
- hera
|
|
|
|
- poseidon
|
|
|
|
vars:
|
|
|
|
- ansible_ssh_port: 3000
|
|
|
|
- ntp_server: olympus.example.com
|
|
|
|
|
|
|
|
# individual hosts can still set variables inside of groups too
|
|
|
|
# so you aren't limited to just group variables and host variables.
|
|
|
|
- group: norse
|
|
|
|
hosts:
|
|
|
|
- host: thor
|
|
|
|
vars:
|
|
|
|
- hammer: True
|
|
|
|
- odin
|
|
|
|
- loki
|
|
|
|
vars:
|
|
|
|
- asdf: 1234
|
|
|
|
|
2012-07-04 21:44:39 +00:00
|
|
|
Tip: If you ever have two python interpreters on a system, set a variable called 'ansible_python_interpreter' to
|
|
|
|
the Python interpreter path you would like to use. (This is available in version 0.5 and later)
|
|
|
|
|
2012-05-02 05:35:02 +00:00
|
|
|
Tip: Be sure to start your YAML file with the YAML record designator ``---``.
|
2012-03-11 19:34:21 +00:00
|
|
|
|
2012-03-31 13:29:31 +00:00
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
:doc:`examples`
|
|
|
|
Examples of basic commands
|
|
|
|
:doc:`playbooks`
|
|
|
|
Learning ansible's configuration management language
|
2012-03-31 13:55:37 +00:00
|
|
|
`Mailing List <http://groups.google.com/group/ansible-project>`_
|
|
|
|
Questions? Help? Ideas? Stop by the list on Google Groups
|
|
|
|
`irc.freenode.net <http://irc.freenode.net>`_
|
|
|
|
#ansible IRC chat channel
|
2012-03-11 19:34:21 +00:00
|
|
|
|