Difference between revisions of "Ansible"

From Freephile Wiki
Jump to navigation Jump to search
(more organization)
Line 5: Line 5:
 
# <code>ansible</code> - to execute an individual shell command or Ansible module 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-vault</code> - (optional) to encrypt or decrypt YAML files that Ansible uses.
 +
 +
== 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 ==
 
== Example Commands ==

Revision as of 12:01, 15 September 2016

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

Ansible provides three main commands:

  1. ansible-playbook - to execute an Ansible playbook on the specified systems
  2. ansible - to execute an individual shell command or Ansible module on the specified systems
  3. ansible-vault - (optional) to encrypt or decrypt YAML files that Ansible uses.

Modules[edit | edit source]

Ansible comes with over 200 modules that you should get familiar with in order to use the system effectively.

Example Commands[edit | edit source]

  1. ansible -m setup wiki.example.com will show you all the ansible 'facts' (aka ansible_variables) about that host.
  2. ansible all -m setup -a "filter=ansible_distribution*" use a filter action to see specific variables
  3. ansible -m debug -a "var=hostvars['wiki.example.com']" localhost gives you the 'ansible hostvars'
  4. ansible-playbook play1.yml play2.yml Run multiple playbooks

Variables[edit | edit source]

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[edit | edit source]

Ansible "Playbooks" use an easy and descriptive language based on YAML.

Targets[edit | edit source]

Ansible can deploy to virtualization environments and public and private cloud environments including VMWare, OpenStack, AWS, Eucalyptus Cloud, KVM, and CloudStack

Installation[edit | edit source]

The preferred way to install is to just git clone 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. However, when I ran my first ansible-playbook digitalocean.yml, I got an error message

Traceback (most recent call last):
  File "/usr/local/bin/ansible-playbook", line 44, in <module>
    import ansible.constants as C
ImportError: No module named ansible.constants

Clearly ansible is falling back to the OS installed version. After I ran source ~/bin/ansible/hacking/env-setup, then I was able to run my ansible playbook

Ansible with MediaWiki[edit | edit source]

https://github.com/Orain I've cloned the 'ansible-playbook'

Ansible with Drupal[edit | edit source]

  • 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.
geerlingguy.firewall
geerlingguy.git
geerlingguy.apache
geerlingguy.memcached
geerlingguy.mysql
geerlingguy.php
geerlingguy.php-pecl
geerlingguy.php-memcached
geerlingguy.php-mysql
geerlingguy.php-xdebug
geerlingguy.php-xhprof
geerlingguy.phpmyadmin
geerlingguy.composer
geerlingguy.drush
geerlingguy.daemonize
geerlingguy.mailhog
geerlingguy.java
geerlingguy.solr


Ansible in the cloud[edit | edit source]

Ansible has several core modules for working with various cloud providers. These include

  • OpenStack

Ansible on Fedora[edit | edit source]

The 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[edit | edit source]

Some of the docs pages I've visited


Ansible References[edit | edit source]