mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
384 lines
18 KiB
ReStructuredText
384 lines
18 KiB
ReStructuredText
11 years ago
|
.. _dynamic_inventory:
|
||
13 years ago
|
|
||
11 years ago
|
Dynamic Inventory
|
||
|
=================
|
||
13 years ago
|
|
||
11 years ago
|
.. contents:: Topics
|
||
|
|
||
11 years ago
|
Often a user of a configuration management system will want to keep inventory
|
||
11 years ago
|
in a different software system. Ansible provides a basic text-based system as described in
|
||
11 years ago
|
:doc:`intro_inventory` but what if you want to use something else?
|
||
11 years ago
|
|
||
|
Frequent examples include pulling inventory from a cloud provider, LDAP, `Cobbler <http://cobbler.github.com>`_,
|
||
11 years ago
|
or a piece of expensive enterprisey CMDB software.
|
||
11 years ago
|
|
||
9 years ago
|
Ansible easily supports all of these options via an external inventory system. The contrib/inventory directory contains some of these already -- including options for EC2/Eucalyptus, Rackspace Cloud, and OpenStack, examples of some of which will be detailed below.
|
||
11 years ago
|
|
||
11 years ago
|
:doc:`tower` also provides a database to store inventory results that is both web and REST Accessible. Tower syncs with all Ansible dynamic inventory sources you might be using, and also includes a graphical inventory editor. By having a database record of all of your hosts, it's easy to correlate past event history and see which ones have had failures on their last playbook runs.
|
||
11 years ago
|
|
||
8 years ago
|
For information about writing your own dynamic inventory source, see :doc:`dev_guide/developing_inventory`.
|
||
11 years ago
|
|
||
11 years ago
|
|
||
11 years ago
|
.. _cobbler_example:
|
||
|
|
||
11 years ago
|
Example: The Cobbler External Inventory Script
|
||
|
``````````````````````````````````````````````
|
||
|
|
||
10 years ago
|
It is expected that many Ansible users with a reasonable amount of physical hardware may also be `Cobbler <http://cobbler.github.com>`_ users. (note: Cobbler was originally written by Michael DeHaan and is now led by James Cammarata, who also works for Ansible, Inc).
|
||
11 years ago
|
|
||
|
While primarily used to kickoff OS installations and manage DHCP and DNS, Cobbler has a generic
|
||
|
layer that allows it to represent data for multiple configuration management systems (even at the same time), and has
|
||
11 years ago
|
been referred to as a 'lightweight CMDB' by some admins.
|
||
11 years ago
|
|
||
8 years ago
|
To tie Ansible's inventory to Cobbler (optional), copy `this script <https://raw.github.com/ansible/ansible/devel/contrib/inventory/cobbler.py>`_ to ``/etc/ansible`` and ``chmod +x`` the file. cobblerd will now need
|
||
11 years ago
|
to be running when you are using Ansible and you'll need to use Ansible's ``-i`` command line option (e.g. ``-i /etc/ansible/cobbler.py``).
|
||
11 years ago
|
This particular script will communicate with Cobbler using Cobbler's XMLRPC API.
|
||
11 years ago
|
|
||
8 years ago
|
Also a ``cobbler.ini`` file should be added to ``/etc/ansible`` so Ansible knows where the Cobbler server is and some cache improvements can be used. For example::
|
||
9 years ago
|
|
||
|
|
||
|
[cobbler]
|
||
|
|
||
|
# Set Cobbler's hostname or IP address
|
||
|
host = http://127.0.0.1/cobbler_api
|
||
|
|
||
|
# API calls to Cobbler can be slow. For this reason, we cache the results of an API
|
||
|
# call. Set this to the path you want cache files to be written to. Two files
|
||
|
# will be written to this directory:
|
||
|
# - ansible-cobbler.cache
|
||
|
# - ansible-cobbler.index
|
||
|
|
||
|
cache_path = /tmp
|
||
|
|
||
|
# The number of seconds a cache file is considered valid. After this many
|
||
|
# seconds, a new API call will be made, and the cache file will be updated.
|
||
|
|
||
|
cache_max_age = 900
|
||
|
|
||
|
|
||
11 years ago
|
First test the script by running ``/etc/ansible/cobbler.py`` directly. You should see some JSON data output, but it may not have anything in it just yet.
|
||
11 years ago
|
|
||
8 years ago
|
Let's explore what this does. In Cobbler, assume a scenario somewhat like the following::
|
||
11 years ago
|
|
||
|
cobbler profile add --name=webserver --distro=CentOS6-x86_64
|
||
|
cobbler profile edit --name=webserver --mgmt-classes="webserver" --ksmeta="a=2 b=3"
|
||
|
cobbler system edit --name=foo --dns-name="foo.example.com" --mgmt-classes="atlanta" --ksmeta="c=4"
|
||
|
cobbler system edit --name=bar --dns-name="bar.example.com" --mgmt-classes="atlanta" --ksmeta="c=5"
|
||
|
|
||
11 years ago
|
In the example above, the system 'foo.example.com' will be addressable by ansible directly, but will also be addressable when using the group names 'webserver' or 'atlanta'. Since Ansible uses SSH, we'll try to contact system foo over 'foo.example.com', only, never just 'foo'. Similarly, if you try "ansible foo" it wouldn't find the system... but "ansible 'foo*'" would, because the system DNS name starts with 'foo'.
|
||
11 years ago
|
|
||
|
The script doesn't just provide host and group info. In addition, as a bonus, when the 'setup' module is run (which happens automatically when using playbooks), the variables 'a', 'b', and 'c' will all be auto-populated in the templates::
|
||
|
|
||
|
# file: /srv/motd.j2
|
||
|
Welcome, I am templated with a value of a={{ a }}, b={{ b }}, and c={{ c }}
|
||
|
|
||
|
Which could be executed just like this::
|
||
|
|
||
|
ansible webserver -m setup
|
||
|
ansible webserver -m template -a "src=/tmp/motd.j2 dest=/etc/motd"
|
||
|
|
||
|
.. note::
|
||
8 years ago
|
The name 'webserver' came from Cobbler, as did the variables for
|
||
11 years ago
|
the config file. You can still pass in your own variables like
|
||
|
normal in Ansible, but variables from the external inventory script
|
||
|
will override any that have the same name.
|
||
|
|
||
8 years ago
|
So, with the template above (``motd.j2``), this would result in the following data being written to ``/etc/motd`` for system 'foo'::
|
||
11 years ago
|
|
||
|
Welcome, I am templated with a value of a=2, b=3, and c=4
|
||
|
|
||
|
And on system 'bar' (bar.example.com)::
|
||
|
|
||
|
Welcome, I am templated with a value of a=2, b=3, and c=5
|
||
|
|
||
|
And technically, though there is no major good reason to do it, this also works too::
|
||
|
|
||
|
ansible webserver -m shell -a "echo {{ a }}"
|
||
|
|
||
11 years ago
|
So in other words, you can use those variables in arguments/actions as well.
|
||
11 years ago
|
|
||
11 years ago
|
.. _aws_example:
|
||
|
|
||
11 years ago
|
Example: AWS EC2 External Inventory Script
|
||
|
``````````````````````````````````````````
|
||
|
|
||
9 years ago
|
If you use Amazon Web Services EC2, maintaining an inventory file might not be the best approach, because hosts may come and go over time, be managed by external applications, or you might even be using AWS autoscaling. For this reason, you can use the `EC2 external inventory <https://raw.github.com/ansible/ansible/devel/contrib/inventory/ec2.py>`_ script.
|
||
11 years ago
|
|
||
|
You can use this script in one of two ways. The easiest is to use Ansible's ``-i`` command line option and specify the path to the script after
|
||
11 years ago
|
marking it executable::
|
||
11 years ago
|
|
||
|
ansible -i ec2.py -u ubuntu us-east-1d -m ping
|
||
|
|
||
9 years ago
|
The second option is to copy the script to `/etc/ansible/hosts` and `chmod +x` it. You will also need to copy the `ec2.ini <https://raw.githubusercontent.com/ansible/ansible/devel/contrib/inventory/ec2.ini>`_ file to `/etc/ansible/ec2.ini`. Then you can run ansible as you would normally.
|
||
11 years ago
|
|
||
11 years ago
|
To successfully make an API call to AWS, you will need to configure Boto (the Python interface to AWS). There are a `variety of methods <http://docs.pythonboto.org/en/latest/boto_config_tut.html>`_ available, but the simplest is just to export two environment variables::
|
||
11 years ago
|
|
||
|
export AWS_ACCESS_KEY_ID='AK123'
|
||
|
export AWS_SECRET_ACCESS_KEY='abc123'
|
||
|
|
||
11 years ago
|
You can test the script by itself to make sure your config is correct::
|
||
11 years ago
|
|
||
9 years ago
|
cd contrib/inventory
|
||
11 years ago
|
./ec2.py --list
|
||
|
|
||
|
After a few moments, you should see your entire EC2 inventory across all regions in JSON.
|
||
|
|
||
8 years ago
|
If you use Boto profiles to manage multiple AWS accounts, you can pass ``--profile PROFILE`` name to the ``ec2.py`` script. An example profile might be::
|
||
11 years ago
|
|
||
|
[profile dev]
|
||
|
aws_access_key_id = <dev access key>
|
||
|
aws_secret_access_key = <dev secret key>
|
||
|
|
||
|
[profile prod]
|
||
|
aws_access_key_id = <prod access key>
|
||
|
aws_secret_access_key = <prod secret key>
|
||
|
|
||
8 years ago
|
You can then run ``ec2.py --profile prod`` to get the inventory for the prod account, although this option is not supported by ``ansible-playbook``.
|
||
|
You can also use the ``AWS_PROFILE`` variable - for example: ``AWS_PROFILE=prod ansible-playbook -i ec2.py myplaybook.yml``
|
||
11 years ago
|
|
||
8 years ago
|
Since each region requires its own API call, if you are only using a small set of regions, you can edit the ``ec2.ini`` file and comment out the regions you are not using.
|
||
8 years ago
|
|
||
|
There are other config options in ``ec2.ini``, including cache control and destination variables. By default, the ``ec2.ini`` file is configured for **all Amazon cloud services**, but you can comment out any features that aren't applicable. For example, if you don't have ``RDS`` or ``elasticache``, you can set them to ``False`` ::
|
||
8 years ago
|
|
||
|
[ec2]
|
||
|
...
|
||
|
|
||
|
# To exclude RDS instances from the inventory, uncomment and set to False.
|
||
|
rds = False
|
||
|
|
||
|
# To exclude ElastiCache instances from the inventory, uncomment and set to False.
|
||
|
elasticache = False
|
||
|
...
|
||
11 years ago
|
|
||
11 years ago
|
At their heart, inventory files are simply a mapping from some name to a destination address. The default ``ec2.ini`` settings are configured for running Ansible from outside EC2 (from your laptop for example) -- and this is not the most efficient way to manage EC2.
|
||
11 years ago
|
|
||
|
If you are running Ansible from within EC2, internal DNS names and IP addresses may make more sense than public DNS names. In this case, you can modify the ``destination_variable`` in ``ec2.ini`` to be the private DNS name of an instance. This is particularly important when running Ansible within a private subnet inside a VPC, where the only way to access an instance is via its private IP address. For VPC instances, `vpc_destination_variable` in ``ec2.ini`` provides a means of using which ever `boto.ec2.instance variable <http://docs.pythonboto.org/en/latest/ref/ec2.html#module-boto.ec2.instance>`_ makes the most sense for your use case.
|
||
|
|
||
|
The EC2 external inventory provides mappings to instances from several groups:
|
||
|
|
||
11 years ago
|
Global
|
||
|
All instances are in group ``ec2``.
|
||
|
|
||
11 years ago
|
Instance ID
|
||
|
These are groups of one since instance IDs are unique.
|
||
|
e.g.
|
||
|
``i-00112233``
|
||
|
``i-a1b1c1d1``
|
||
|
|
||
|
Region
|
||
|
A group of all instances in an AWS region.
|
||
|
e.g.
|
||
|
``us-east-1``
|
||
|
``us-west-2``
|
||
|
|
||
|
Availability Zone
|
||
|
A group of all instances in an availability zone.
|
||
|
e.g.
|
||
|
``us-east-1a``
|
||
|
``us-east-1b``
|
||
|
|
||
|
Security Group
|
||
8 years ago
|
Instances belong to one or more security groups. A group is created for each security group, with all characters except alphanumerics, converted to underscores (_). Each group is prefixed by ``security_group_``. Currently, dashes (-) are also converted to underscores (_). You can change using the replace_dash_in_groups setting in ec2.ini (this has changed across several versions so check the ec2.ini for details).
|
||
11 years ago
|
e.g.
|
||
|
``security_group_default``
|
||
|
``security_group_webservers``
|
||
|
``security_group_Pete_s_Fancy_Group``
|
||
|
|
||
|
Tags
|
||
|
Each instance can have a variety of key/value pairs associated with it called Tags. The most common tag key is 'Name', though anything is possible. Each key/value pair is its own group of instances, again with special characters converted to underscores, in the format ``tag_KEY_VALUE``
|
||
|
e.g.
|
||
10 years ago
|
``tag_Name_Web`` can be used as is
|
||
|
``tag_Name_redis-master-001`` becomes ``tag_Name_redis_master_001``
|
||
|
``tag_aws_cloudformation_logical-id_WebServerGroup`` becomes ``tag_aws_cloudformation_logical_id_WebServerGroup``
|
||
11 years ago
|
|
||
|
When the Ansible is interacting with a specific server, the EC2 inventory script is called again with the ``--host HOST`` option. This looks up the HOST in the index cache to get the instance ID, and then makes an API call to AWS to get information about that specific instance. It then makes information about that instance available as variables to your playbooks. Each variable is prefixed by ``ec2_``. Here are some of the variables available:
|
||
|
|
||
|
- ec2_architecture
|
||
|
- ec2_description
|
||
|
- ec2_dns_name
|
||
|
- ec2_id
|
||
|
- ec2_image_id
|
||
|
- ec2_instance_type
|
||
|
- ec2_ip_address
|
||
|
- ec2_kernel
|
||
|
- ec2_key_name
|
||
|
- ec2_launch_time
|
||
|
- ec2_monitored
|
||
|
- ec2_ownerId
|
||
|
- ec2_placement
|
||
|
- ec2_platform
|
||
|
- ec2_previous_state
|
||
|
- ec2_private_dns_name
|
||
|
- ec2_private_ip_address
|
||
|
- ec2_public_dns_name
|
||
|
- ec2_ramdisk
|
||
|
- ec2_region
|
||
|
- ec2_root_device_name
|
||
|
- ec2_root_device_type
|
||
|
- ec2_security_group_ids
|
||
|
- ec2_security_group_names
|
||
|
- ec2_spot_instance_request_id
|
||
|
- ec2_state
|
||
|
- ec2_state_code
|
||
|
- ec2_state_reason
|
||
|
- ec2_status
|
||
|
- ec2_subnet_id
|
||
|
- ec2_tag_Name
|
||
|
- ec2_tenancy
|
||
|
- ec2_virtualization_type
|
||
|
- ec2_vpc_id
|
||
|
|
||
|
Both ``ec2_security_group_ids`` and ``ec2_security_group_names`` are comma-separated lists of all security groups. Each EC2 tag is a variable in the format ``ec2_tag_KEY``.
|
||
|
|
||
|
To see the complete list of variables available for an instance, run the script by itself::
|
||
|
|
||
9 years ago
|
cd contrib/inventory
|
||
11 years ago
|
./ec2.py --host ec2-12-12-12-12.compute-1.amazonaws.com
|
||
|
|
||
|
Note that the AWS inventory script will cache results to avoid repeated API calls, and this cache setting is configurable in ec2.ini. To
|
||
10 years ago
|
explicitly clear the cache, you can run the ec2.py script with the ``--refresh-cache`` parameter::
|
||
|
|
||
8 years ago
|
./ec2.py --refresh-cache
|
||
11 years ago
|
|
||
9 years ago
|
.. _openstack_example:
|
||
|
|
||
|
Example: OpenStack External Inventory Script
|
||
|
````````````````````````````````````````````
|
||
|
|
||
|
If you use an OpenStack based cloud, instead of manually maintaining your own inventory file, you can use the openstack.py dynamic inventory to pull information about your compute instances directly from OpenStack.
|
||
|
|
||
|
You can download the latest version of the OpenStack inventory script at: https://raw.githubusercontent.com/ansible/ansible/devel/contrib/inventory/openstack.py
|
||
|
|
||
|
You can use the inventory script explicitly (by passing the `-i openstack.py` argument to Ansible) or implicitly (by placing the script at `/etc/ansible/hosts`).
|
||
|
|
||
|
Explicit use of inventory script
|
||
|
++++++++++++++++++++++++++++++++
|
||
|
|
||
|
Download the latest version of the OpenStack dynamic inventory script and make it executable::
|
||
|
|
||
|
wget https://raw.githubusercontent.com/ansible/ansible/devel/contrib/inventory/openstack.py
|
||
|
chmod +x openstack.py
|
||
|
|
||
|
Source an OpenStack RC file::
|
||
|
|
||
|
source openstack.rc
|
||
|
|
||
|
.. note::
|
||
|
|
||
9 years ago
|
An OpenStack RC file contains the environment variables required by the client tools to establish a connection with the cloud provider, such as the authentication URL, user name, password and region name. For more information on how to download, create or source an OpenStack RC file, please refer to `Set environment variables using the OpenStack RC file <http://docs.openstack.org/cli-reference/common/cli_set_environment_variables_using_openstack_rc.html>`_.
|
||
9 years ago
|
|
||
|
You can confirm the file has been successfully sourced by running a simple command, such as `nova list` and ensuring it return no errors.
|
||
|
|
||
|
.. note::
|
||
|
|
||
9 years ago
|
The OpenStack command line clients are required to run the `nova list` command. For more information on how to install them, please refer to `Install the OpenStack command-line clients <http://docs.openstack.org/cli-reference/common/cli_install_openstack_command_line_clients.html>`_.
|
||
9 years ago
|
|
||
|
You can test the OpenStack dynamic inventory script manually to confirm it is working as expected::
|
||
|
|
||
|
./openstack.py --list
|
||
|
|
||
|
After a few moments you should see some JSON output with information about your compute instances.
|
||
|
|
||
|
Once you confirm the dynamic inventory script is working as expected, you can tell Ansible to use the `openstack.py` script as an inventory file, as illustrated below::
|
||
|
|
||
9 years ago
|
ansible -i openstack.py all -m ping
|
||
9 years ago
|
|
||
|
Implicit use of inventory script
|
||
|
++++++++++++++++++++++++++++++++
|
||
|
|
||
|
Download the latest version of the OpenStack dynamic inventory script, make it executable and copy it to `/etc/ansible/hosts`::
|
||
|
|
||
|
wget https://raw.githubusercontent.com/ansible/ansible/devel/contrib/inventory/openstack.py
|
||
|
chmod +x openstack.py
|
||
|
sudo cp openstack.py /etc/ansible/hosts
|
||
|
|
||
9 years ago
|
Download the sample configuration file, modify it to suit your needs and copy it to `/etc/ansible/openstack.yml`::
|
||
9 years ago
|
|
||
|
wget https://raw.githubusercontent.com/ansible/ansible/devel/contrib/inventory/openstack.yml
|
||
|
vi openstack.yml
|
||
|
sudo cp openstack.yml /etc/ansible/
|
||
|
|
||
|
You can test the OpenStack dynamic inventory script manually to confirm it is working as expected::
|
||
|
|
||
|
/etc/ansible/hosts --list
|
||
|
|
||
|
After a few moments you should see some JSON output with information about your compute instances.
|
||
|
|
||
|
Refresh the cache
|
||
|
+++++++++++++++++
|
||
|
|
||
8 years ago
|
Note that the OpenStack dynamic inventory script will cache results to avoid repeated API calls. To explicitly clear the cache, you can run the openstack.py (or hosts) script with the ``--refresh`` parameter::
|
||
9 years ago
|
|
||
9 years ago
|
./openstack.py --refresh --list
|
||
9 years ago
|
|
||
11 years ago
|
.. _other_inventory_scripts:
|
||
|
|
||
11 years ago
|
Other inventory scripts
|
||
|
```````````````````````
|
||
|
|
||
|
In addition to Cobbler and EC2, inventory scripts are also available for::
|
||
|
|
||
|
BSD Jails
|
||
10 years ago
|
DigitalOcean
|
||
11 years ago
|
Google Compute Engine
|
||
11 years ago
|
Linode
|
||
|
OpenShift
|
||
|
OpenStack Nova
|
||
9 years ago
|
Ovirt
|
||
|
SpaceWalk
|
||
11 years ago
|
Vagrant (not to be confused with the provisioner in vagrant, which is preferred)
|
||
|
Zabbix
|
||
|
|
||
9 years ago
|
Sections on how to use these in more detail will be added over time, but by looking at the "contrib/inventory" directory of the Ansible checkout
|
||
11 years ago
|
it should be very obvious how to use them. The process for the AWS inventory script is the same.
|
||
|
|
||
|
If you develop an interesting inventory script that might be general purpose, please submit a pull request -- we'd likely be glad
|
||
|
to include it in the project.
|
||
|
|
||
11 years ago
|
.. _using_multiple_sources:
|
||
|
|
||
9 years ago
|
Using Inventory Directories and Multiple Inventory Sources
|
||
|
``````````````````````````````````````````````````````````
|
||
11 years ago
|
|
||
8 years ago
|
If the location given to ``-i`` in Ansible is a directory (or as so configured in ``ansible.cfg``), Ansible can use multiple inventory sources
|
||
11 years ago
|
at the same time. When doing so, it is possible to mix both dynamic and statically managed inventory sources in the same ansible run. Instant
|
||
11 years ago
|
hybrid cloud!
|
||
|
|
||
9 years ago
|
In an inventory directory, executable files will be treated as dynamic inventory sources and most other files as static sources. Files which end with any of the following will be ignored::
|
||
|
|
||
|
~, .orig, .bak, .ini, .retry, .pyc, .pyo
|
||
|
|
||
|
You can replace this list with your own selection by configuring an ``inventory_ignore_extensions`` list in ansible.cfg, or setting the ANSIBLE_INVENTORY_IGNORE environment variable. The value in either case should be a comma-separated list of patterns, as shown above.
|
||
|
|
||
9 years ago
|
Any ``group_vars`` and ``host_vars`` subdirectories in an inventory directory will be interpreted as expected, making inventory directories a powerful way to organize different sets of configurations.
|
||
9 years ago
|
|
||
11 years ago
|
.. _static_groups_of_dynamic:
|
||
|
|
||
|
Static Groups of Dynamic Groups
|
||
|
```````````````````````````````
|
||
|
|
||
|
When defining groups of groups in the static inventory file, the child groups
|
||
|
must also be defined in the static inventory file, or ansible will return an
|
||
|
error. If you want to define a static group of dynamic child groups, define
|
||
|
the dynamic groups as empty in the static inventory file. For example::
|
||
|
|
||
|
[tag_Name_staging_foo]
|
||
|
|
||
|
[tag_Name_staging_bar]
|
||
|
|
||
|
[staging:children]
|
||
|
tag_Name_staging_foo
|
||
|
tag_Name_staging_bar
|
||
|
|
||
|
|
||
|
|
||
11 years ago
|
.. seealso::
|
||
|
|
||
|
:doc:`intro_inventory`
|
||
|
All about static inventory files
|
||
|
`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
|
||
13 years ago
|
|