2012-03-09 17:44:14 +01:00
|
|
|
.. _patterns:
|
|
|
|
|
2012-03-08 19:53:48 +01:00
|
|
|
The Inventory File, Patterns, and Groups
|
|
|
|
========================================
|
2012-03-07 17:35:18 +01:00
|
|
|
|
2012-03-31 16:38:24 +02: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 20:39:29 +01:00
|
|
|
|
|
|
|
.. _inventoryformat:
|
|
|
|
|
2012-03-08 19:53:48 +01:00
|
|
|
Inventory File Format
|
|
|
|
+++++++++++++++++++++
|
|
|
|
|
2012-03-31 16:38:24 +02:00
|
|
|
The format for /etc/ansible/hosts looks like this::
|
2012-03-08 19:36:47 +01:00
|
|
|
|
|
|
|
mail.example.com
|
|
|
|
|
|
|
|
[webservers]
|
|
|
|
foo.example.com
|
|
|
|
bar.example.com
|
|
|
|
|
|
|
|
[dbservers]
|
|
|
|
one.example.com
|
|
|
|
two.example.com
|
|
|
|
three.example.com
|
|
|
|
|
2012-03-11 20:34:21 +01:00
|
|
|
The things in brackets are group names, you don't have to have them,
|
|
|
|
but they are useful.
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2012-03-08 19:53:48 +01:00
|
|
|
Selecting Targets
|
|
|
|
+++++++++++++++++
|
|
|
|
|
2012-03-31 16:38:24 +02: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"
|
|
|
|
|
|
|
|
Within :doc:`playbooks`, these patterns can also be used, for even greater purposes.
|
|
|
|
|
|
|
|
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 19:53:48 +01:00
|
|
|
|
|
|
|
all
|
|
|
|
*
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2012-03-11 20:34:21 +01:00
|
|
|
Basically 'all' is an alias for '*'. It is also possible to address a specific host or hosts::
|
2012-03-08 19:36:47 +01:00
|
|
|
|
|
|
|
one.example.com
|
|
|
|
one.example.com:two.example.com
|
2012-03-11 20:34:21 +01:00
|
|
|
192.168.1.50
|
|
|
|
192.168.1.*
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2012-03-09 17:44:14 +01:00
|
|
|
The following patterns address one or more groups, which are denoted
|
2012-03-11 20:34:21 +01:00
|
|
|
with the aforementioned bracket headers in the inventory file::
|
2012-03-08 19:36:47 +01:00
|
|
|
|
|
|
|
webservers
|
|
|
|
webservers:dbservers
|
|
|
|
|
2012-03-11 20:34:21 +01:00
|
|
|
Individual host names (or IPs), but not groups, can also be referenced using
|
2012-03-09 17:44:14 +01:00
|
|
|
wildcards::
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2012-03-09 20:39:29 +01:00
|
|
|
*.example.com
|
|
|
|
*.com
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2012-03-08 19:53:48 +01:00
|
|
|
It's also ok to mix wildcard patterns and groups at the same time::
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2012-03-09 20:39:29 +01:00
|
|
|
one*.com:dbservers
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2012-03-09 20:39:29 +01:00
|
|
|
.. note::
|
2012-03-11 20:34:21 +01:00
|
|
|
It is not possible to target a host not in the inventory file. This is a safety feature.
|
|
|
|
|
|
|
|
Easy enough. Now see :doc:`examples` and then :doc:`playbooks` for how to do things to selected hosts.
|
|
|
|
|
2012-03-31 15:29:31 +02:00
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
:doc:`examples`
|
|
|
|
Examples of basic commands
|
|
|
|
:doc:`playbooks`
|
|
|
|
Learning ansible's configuration management language
|
2012-03-31 15:55:37 +02: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 20:34:21 +01:00
|
|
|
|