intro_patterns.rst 3.15 KB
Newer Older
Michael DeHaan committed
1 2
Patterns
++++++++
3

4 5
.. contents:: Topics

6 7
Patterns in Ansible are how we decide which hosts to manage.  This can mean what hosts to communicate with, but in terms
of :doc:`playbooks` it actually means what hosts to apply a particular configuration or IT process to.
8

9
We'll go over how to use the command line in :doc:`intro_adhoc` section, however, basically it looks like this::
10 11

    ansible <pattern_goes_here> -m <module_name> -a <arguments>
12

13 14 15 16
Such as::

    ansible webservers -m service -a "name=httpd state=restarted"

Michael DeHaan committed
17 18
A pattern usually refers to a set of groups (which are sets of hosts) -- in the above case, machines in the "webservers" group.

19
Anyway, to use Ansible, you'll first need to know how to tell Ansible which hosts in your inventory to talk to.
20 21
This is done by designating particular host names or groups of hosts.

Michael DeHaan committed
22
The following patterns are equivalent and target all hosts in the inventory::
23 24

    all
25
    *
Michael DeHaan committed
26

Michael DeHaan committed
27
It is also possible to address a specific host or set of hosts by name::
Michael DeHaan committed
28 29 30

    one.example.com
    one.example.com:two.example.com
31 32
    192.168.1.50
    192.168.1.*
33

34
The following patterns address one or more groups.  Groups separated by a colon indicate an "OR" configuration.
35
This means the host may be in either one group or the other::
Michael DeHaan committed
36 37 38 39

    webservers
    webservers:dbservers

40
You can exclude groups as well, for instance, all machines must be in the group webservers but not in the group phoenix::
41 42 43

    webservers:!phoenix

44 45
You can also specify the intersection of two groups.  This would mean the hosts must be in the group webservers and
the host must also be in the group staging::
46 47 48 49 50

    webservers:&staging

You can do combinations::

51
    webservers:dbservers:&staging:!phoenix
52

53 54 55 56 57
The above configuration means "all machines in the groups 'webservers' and 'dbservers' are to be managed if they are in
the group 'staging' also, but the machines are not to be managed if they are in the group 'phoenix' ... whew!

You can also use variables if you want to pass some group specifiers via the "-e" argument to ansible-playbook, but this
is uncommonly used::
58

59
    webservers:!{{excluded}}:&{{required}}
60

61
You also don't have to manage by strictly defined groups.  Individual host names, IPs and groups, can also be referenced using
62
wildcards::
Michael DeHaan committed
63

64 65
    *.example.com
    *.com
Michael DeHaan committed
66

67
It's also ok to mix wildcard patterns and groups at the same time::
Michael DeHaan committed
68

69
    one*.com:dbservers
Michael DeHaan committed
70

71
Most people don't specify patterns as regular expressions, but you can.  Just start the pattern with a '~'::
72 73

    ~(web|db).*\.example\.com
74

Matt Jaynes committed
75
While we're jumping a bit ahead, additionally, you can add an exclusion criteria just by supplying the ``--limit`` flag to /usr/bin/ansible or /usr/bin/ansible-playbook::
76

77
    ansible-playbook site.yml --limit datacenter2
78

79
Easy enough.  See :doc:`intro_adhoc` and then :doc:`playbooks` for how to apply this knowledge.
80

81 82
.. seealso::

83
   :doc:`intro_adhoc`
84 85 86
       Examples of basic commands
   :doc:`playbooks`
       Learning ansible's configuration management language
87 88 89 90
   `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
91