Changes

Jump to navigation Jump to search
no edit summary
[[wp:Ansible_(software)]] is an open-source software platform for configuring and managing computers. It combines multi-node software deployment, ad hoc task execution, and configuration management. Written in Python, it is packaged by [[RedHat]]. As of July 2016, we're using Ansible 2.2.0
 A lot of this page is outdated.  Also, RedHat seems to have purposely made things very convoluted in terms of versioning, release cycles and product naming. So check https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html and see if you can figure it out. == Installation ==
The preferred way to [http://docs.ansible.com/intro_installation.html install] is to just <code>git clone</code> the source. Having the source makes it easy to upgrade, and it's self-contained, plus best of all you get all the examples and contribs.
Be sure to source the env-setup script
== Getting Started ==
You must source the environment setup script to begin using Ansible (assuming you are running from a git checkout) <code>source ~/bin/ansible/hacking/env-setup</code>
Ansible provides three main commands:
# <code>ansible-playbook</code> - to execute an Ansible playbook on the specified systems
# <code>ansible</code> - to execute an individual shell command or Ansible module on the specified systems
# <code>ansible-vault</code> - (optional) to encrypt or decrypt YAML files that Ansible uses.
#<code>ansible-playbook</code> - to execute an Ansible playbook on the specified systems#<code>ansible</code> - to execute an individual shell command or Ansible module on the specified systems#<code>ansible-vault</code> - (optional) to encrypt or decrypt YAML files that Ansible uses. === Global Config ===
<code>export ANSIBLE_HOST_KEY_CHECKING=False</code>
or set it in your ~/.ansible.cfg so that as you add new hosts it won't prompt you.
Also [https://docs.ansible.com/ansible/intro_getting_started.html#your-first-commands use 'ssh' instead of paramiko] when doing this.
=== Initialize a Project ===
'''Ansible Galaxy''' If you want to do a new project, you can use the <code>ansible-galaxy foo init</code> command which will create the directory and file structure for 'foo' in the current working directory.
Also, if you want to install other Ansible Galaxy projects, you can either do it "manually" <code> ansible-galaxy install -r </code> Or, setup a 'requirements.yml' file in your playbook that then gets run by your stack. <ref>https://stackoverflow.com/questions/25230376/how-to-automatically-install-ansible-galaxy-roles</ref> <code>ansible-galaxy [delete|import|info|init|install|list|login|remove|search|setup] [--help] [options]</code>
== Modules ==
Ansible comes with [https://docs.ansible.com/ansible/modules_by_category.html over 200 modules] that you should get familiar with in order to use the system effectively.
==Example Commands==
Note: control verbosity with <code>-vvvv</code>
== Example Commands ==Note: control verbosity with <code>-vvvv</code># <code>ansible --help</code> display help# <code>ansible --version</code> show version info# <code>ansible -c local -i ~/ansible_hosts -m ping all</code> ping all the hosts in the inventory file# <code>ansible '''-m setup''' wiki.example.com</code> Use the '''[https://docs.ansible.com/ansible/latest/setup_module.html setup]''' module to gather ansible 'facts' (aka [[ansible_variables]]) about that host.# <code>ansible '''localhost''' -m setup -a 'gather_subset=!all'</code> or look at the localhost# <code>ansible all -m setup -a '''"filter=ansible_distribution*"'''</code> use a filter action to see specific variables# <code>ansible localhost -m setup --tree /tmp/facts</code> store all facts in a file 'tree', based on hostname
#<code>ansible -m debug -a "var=hostvars['wiki.example.com']" localhost</code> gives you the '[[ansible hostvars]]'
# <code>ansible-playbook play1.yml play2.yml</code> Run multiple playbooks# <code>ansible-playbook -i production webservers.yml --tags ntp '''--list-tasks'''</code> confirm what task names would be run if I ran this command and said "just ntp tasks"# <code>ansible-playbook '''--list-tags''' launch.yml</code> see what tags exist in my playbook (the tasks list shows more detail + the tags)# <code>ansible-playbook -i production webservers.yml --limit boston '''--list-hosts'''</code> confirm what hostnames might be communicated with if I said "limit to boston" <ref>Choosing which host(s) to operate on https://docs.ansible.com/ansible/intro_patterns.html</ref># <code>~/bin/ansible/contrib/inventory/digital_ocean.py --list --pretty --api-token TOKEN_HERE</code> use the DO api to list your droplets (dynamic inventory)# <code>ansible-playbook -vvv launch.yml -l wiki.example.com --user=root -e do_name=wiki.example.com '''--start-at-task'''='remove empty wiki schema from database if it already exists'</code> start at a particular point in the task list# <code>php -r 'var_dump(json_decode(file_get_contents("/tmp/facts/localhost"), true));'</code> look at the json with php (or more interesting tools) With Ansible's Jinja2 filters, you can specify the output of a variable to be 'pretty' <nowiki>{{ some_variable | to_nice_json }}</nowiki> ==Variables==
== Variables ==; You have 3 plays in one playbook. Will play 3 be able to reference facts registered in play 1?:: facts, yes, play vars, no: vars associated to the host, persist, vars defined in the play, do not, set_facts, registered vars and gathered facts associate to the host so those do persist for the run
== Playbooks ==
Ansible "[http://docs.ansible.com/playbooks.html Playbooks]" use an easy and descriptive language based on YAML.
== Targets ==
Ansible can deploy to virtualization environments and public and private cloud environments including VMWare, OpenStack, AWS, Eucalyptus Cloud, KVM, and CloudStack
== Testing ==
{{#evu:https://www.youtube.com/watch?v=FaXVZ60o8L8&t=1244s
|alignment=right
[[File:Ansible linting and testing spectrum.png|thumb|left|The spectrum of testing you can employ in your Ansible deployments]]
Jeff Geerling talks about the spectrum of testing you can employ in your Ansible deployments<ref>https://www.youtube.com/live/FaXVZ60o8L8?si=gFoxE-ig5X0psuul&t=1244</ref>
 # <code>yamllint</code># <code>ansible-playbook --syntax-check</code># <code>ansible-lint</code># molecule test (integration)# <code>ansible-playbook --check</code> (against prod)# parallel infrastructure
In development
# Use the <tt>debug</tt> module
# Use the <tt>fail</tt> module to fail
# Use the <tt>assert</tt> module to make assertions (and fail if they don't match)
#Use the <tt>debug</tt> module#Use the <tt>fail</tt> module to fail#Use the <tt>assert</tt> module to make assertions (and fail if they don't match) == Best Practices ==
Building Ansible Automation Platform execution environments (EE)
 * https://www.redhat.com/architect/ansible-execution-environment-tips
Using Python 3
* https://docs.ansible.com/ansible/latest/reference_appendices/python_3_support.html
* https://docs.ansible.com/ansible/latest/dev_guide/developing_python_3.html
*https://docs.ansible.com/ansible/latest/reference_appendices/python_3_support.html*https://docs.ansible.com/ansible/latest/dev_guide/developing_python_3.html * Use tags to organize your Ansible work *Use caching (default is off) to be able to refer to host 'facts' without having to hit each host in a playbook.
* Use caching (default is off) register of [https://docs.ansible.com/ansible/playbooks_variables.html variables] to be able to refer to host create more 'facts' without having . Results vary from module to module. Use -v to hit each host in a playbooksee possible values.
* Use register There is an order of precedence with [https://docs.ansible.com/ansible/playbooks_variables.html playbook variables] to create more 'facts'. Results vary from module to module. Use -v to see possible values, with role defaults the lowest priority and extra vars the winner.
* There The array notation is an order of precedence with [https://docspreferred over the dot notation for accessing variables.ansible.com<br /ansible/playbooks_variables.html playbook variables], with role defaults the lowest priority and extra vars the winner.>
* The array notation is preferred over the dot notation for accessing variables.<br />
<nowiki>{{ ansible_eth0["ipv4"]["address"] }} over {{ ansible_eth0.ipv4.address }}</nowiki> because some keywords in Python would conflict
* Reserved words:** hostvars** group_names** groups** environemnt
* '''<code>inventory_hostname</code>''' is the name of the hostname as configured in Ansible's inventory host file. '''<code>ansible_hostname</code>''' is the discovered hostname
* You can use a variables file to put sensitive data in a different file (one excluded from git).
<source lang="yaml">
- hosts: all
</source>
* You can use variables on the command line (and besides key=value pairs, you can use json or yml)
<source lang="yaml">
---
<code>ansible-playbook release.yml --extra-vars "hosts=vipers user=starbuck"</code>
* Check [https://www.ansible.com/blog/ansible-performance-tuning Performance Tuning] like enabling <code>pipelining</code> which is off by default. *Truthy values should always be expressed as '''one of <code>[false, true]</code>'''. Although the Ansible docs show that [https://docs.ansible.com/ansible/latest/YAMLSyntax.html#yaml-basics you can use several forms of expression for boolean values], and [http://yaml.org/type/bool.html the YAML spec specifies a fuller range of possibilities] described below, the Ansible documentation now also [https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html clarifies that only lowercase 'true' or 'false'] is compatible with [[yamllint]] options.
* Truthy values should always be expressed as '''one of <code>[false, true]</code>'''. Although the Ansible docs show that [https://docs.ansible.com/ansible/latest/YAMLSyntax.html#yaml-basics you can use several forms of expression for boolean values], and [http://yaml.org/type/bool.html the YAML spec specifies a fuller range of possibilities] described below, the Ansible documentation now also [https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html clarifies that only lowercase 'true' or 'false'] is compatible with [[yamllint]] options.
;YAML boolean values, not Ansible:
:<syntaxhighlight lang="ebnf">
y|Y|yes|Yes|YES|n|N|no|No|NO
|true|True|TRUE|false|False|FALSE
</syntaxhighlight>
== Scope ==
Ansible has 3 main scopes:
'''Host''': variables directly associated to a host, like inventory, facts or registered task outputs
== Ansible with Vagrant ==
https://docs.ansible.com/ansible/guide_vagrant.html and [[Private:QualityBox/Vagrant]]
== Ansible with MediaWiki ==
https://github.com/Orain
I've cloned the '[https://github.com/freephile/ansible-playbook.git ansible-playbook]'
== Ansible with Drupal == * Jeff Geerling (geerlingguy) has his code on github https://github.com/geerlingguy/drupal-vm, and also a website http://www.drupalvm.com/. He's the author of Ansible for DevOps. The only problem I see with his code is that it installs everything from his own 'roles' (individual components) via the sharing site/mechanism called Ansible Galaxy. So, for example, phpMyAdmin comes from https://github.com/geerlingguy/ansible-role-phpmyadmin This is good in that he can make his system work, but it's bad in that you're getting all your bits from him and can't tweak any of it without manually checking each role for the code and instructions behind it so you know what you can set via variables and such. I'd rather see each of these roles contained in the project, community sourced, installed via git.
<pre>
geerlingguy.firewall
</pre>
* on [https://www.digitalocean.com/community/tutorials/how-to-create-an-ansible-playbook-to-automate-drupal-installation-on-ubuntu-14-04 Digital Ocean]
== Ansible in the cloud ==
Ansible has several core modules for working with various [http://docs.ansible.com/list_of_cloud_modules.html cloud providers]. These include
* Amazon* [[Digital Ocean]] http://docs.ansible.com/digital_ocean_module.html* [[Linode]] http://docs.ansible.com/linode_module.html* [[LXC]]
* OpenStack
== Ansible on Fedora ==
The [https://fedoraproject.org/wiki/Fedora_Project_Wiki Fedora Project] uses Ansible in it's Infrastructure team, and they publish their whole setup https://infrastructure.fedoraproject.org/cgit/ansible.git/tree/README
== Ansible Docs ==
Some of the docs pages I've visited
* https://docs.ansible.com/ansible/playbooks_intro.html* https://docs.ansible.com/ansible/intro_inventory.html* http://docs.ansible.com/playbooks_best_practices.html* http://docs.ansible.com/playbooks_loops.html* https://docs.ansible.com/ansible/playbooks_conditionals.html* https://docs.ansible.com/ansible/playbooks_startnstep.html* https://docs.ansible.com/ansible/playbooks_roles.html#task-include-files-and-encouraging-reuse* http://docs.ansible.com/YAMLSyntax.html* https://docs.ansible.com/ansible/become.html* https://docs.ansible.com/ansible/debug_module.html* https://docs.ansible.com/ansible/playbooks_debugger.html (<code>strategy:debug</code>)* https://docs.ansible.com/ansible/playbooks_conditionals.html#sts=The When Statement%C2%B6 
==Ansible References==
== Ansible References ==* http://tjelvarolsson.com/blog/taking-the-effort-out-of-server-configuration-using-ansible/* http://tjelvarolsson.com/blog/how-to-create-automated-and-reproducible-work-flows-for-installing-scientific-software/ < with Vagrant* http://jpmens.net/2012/06/06/configuration-management-with-ansible/* [http://jinja.pocoo.org/docs/dev/ Jinja] - the template engine for Ansible
* [https://cheat.readthedocs.io/en/latest/ansible/index.html Dan's Cheat Sheets]
{{References}}

Navigation menu