Jump to content

Ansible (software)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Amux (talk | contribs) at 02:05, 29 August 2016 (→‎Design goals: idempotence is a goal, not a property of the project). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Ansible
Original author(s)Michael DeHaan
Developer(s)Red Hat
Initial releaseFebruary 20, 2012; 12 years ago (2012-02-20)
Stable release
2.1.1.0 / July 28, 2016; 7 years ago (2016-07-28)
Repository
Written inPython
Operating systemLinux, Unix-like, Windows
TypeConfiguration management, Infrastructure as Code, Orchestration engine
LicenseGNU General Public License
Websitewww.ansible.com

Ansible is a free-software platform for configuring and managing computers which combines multi-node software deployment, ad hoc task execution, and configuration management.[1] It manages nodes (Linux nodes must have Python 2.4 or later installed on them, Windows nodes require PowerShell 3.0 or later) over SSH or over PowerShell.[2] Modules work over JSON and standard output and can be written in any programming language. The system uses YAML to express reusable descriptions of systems.[3]

Michael DeHaan, the author of the provisioning server application Cobbler and co-author of the Func framework for remote administration, developed the platform.[4] It is included as part of the Fedora distribution of Linux, owned by Red Hat Inc., and is also available for Red Hat Enterprise Linux, CentOS, and Scientific Linux via Extra Packages for Enterprise Linux (EPEL) as well as for other operating systems.[5]

Ansible, Inc. (originally AnsibleWorks, Inc.) was the company set up to commercially support and sponsor Ansible.[6][7] It was acquired by Red Hat in October 2015.[8][9]

The name "Ansible" references the fictional instantaneous hyperspace communication system (featured in Orson Scott Card's Ender's Game,[10] and originally invented by Ursula K. Le Guin for her 1966 novel Rocannon's World).

Architecture

As with most configuration management software, Ansible distinguishes two types of servers: controlling machines and nodes. First, there is a single controlling machine which is where orchestration begins. Nodes are managed by a controlling machine over SSH. The controlling machine describes the location of nodes through its inventory.

To orchestrate nodes, Ansible deploys modules to nodes over SSH. Modules are temporarily stored in the nodes and communicate with the controlling machine through a JSON protocol over the standard output.[11] When Ansible is not managing nodes, it does not consume resources because no daemons or programs are executing for Ansible in the background.[12]

In contrast with popular configuration management software — such as Chef, Puppet, and CFEngine — Ansible uses an agentless architecture.[12] With an agent-based architecture, nodes must have a locally installed daemon that communicates with a controlling machine. With an agentless architecture, nodes are not required to install and run background daemons to connect with a controlling machine. This type of architecture reduces the overhead on the network by preventing the nodes from polling the controlling machine.[12]

Design goals

The design goals of Ansible[11] include:

  • Minimal in nature. Management systems should not impose additional dependencies on the environment.[12]
  • Consistent.[clarification needed]
  • Secure. Ansible does not deploy agents to nodes. Only OpenSSH is required, which is thoroughly tested.[12]
  • Highly reliable. When carefully written, the an Ansible playbook can be idempotent, in order to prevent unexpected side-effects on the managed systems.[1] It has to be noted, anyway, that is perfectly possible to have a poorly written playbook that is not idempotent.
  • Low learning curve. Playbooks use an easy and descriptive language based on YAML and Jinja templates.

Modules

Modules are considered to be the units of work in Ansible. Each module is mostly standalone and can be written in a standard scripting language (examples include: Python, Perl, Ruby, bash, etc.). One of the guiding properties of modules is idempotency, which means that even if an operation is repeated multiple times (i.e.; upon recovery from an outage), it will always place the system into the same state.[11]

Inventory configuration

The Inventory is a description of the nodes that can be accessed by Ansible. By default, the Inventory is described by a configuration file, in INI format, whose default location is in /etc/ansible/hosts. The configuration file lists either the IP address or hostname of each node that is accessible by Ansible. In addition, nodes can be assigned to groups.[13]

An example configuration file:

192.168.6.1

[webservers]
foo.example.com
bar.example.com

This configuration file specifies three nodes. The first node is specified by an IP address and the latter two nodes are specified by hostnames. Additionally, the latter two nodes are grouped under the webservers group name.

Ansible can also be pointed towards a custom "Dynamic Inventory" script, which can pull data from any different software system.

Playbooks

Playbooks express configurations, deployment, and orchestration in Ansible.[14] The Playbook format is YAML. Each Playbook maps a group of hosts to a set of roles. Each role is represented by calls to Ansible call tasks.

Platform support

Control machines must have Python 2.6 or 2.7. Operating systems supported on control machines include most Linux and Unix distributions, such as Red Hat, Debian, CentOS, OS X, BSD, and Ubuntu among others.

Managed nodes must have Python 2.4 or later. For managed nodes with Python 2.5 or earlier, the python-simplejson package is also required.[15] Ansible can manage Windows[16] nodes starting from version 1.7.[15]

Cloud integration

Ansible can deploy to virtualization environments and public and private cloud environments, including Amazon Web Services, CloudStack, DigitalOcean, Eucalyptus Cloud, Google Cloud Platform, KVM, Microsoft Azure, OpenStack, Rackspace, SoftLayer, VMware, and XenServer.[11]

Big data integration

Ansible can deploy big data, storage, and analytics environments, including Hadoop, Riak, and Aerospike. In these environments, Ansible helps manage each node's resource consumption, consuming little CPU time and memory in the process. Furthermore, Ansible provides monitoring capabilities that measure such properties as available CPU resources, which can help in the supervision of these nodes.[11][failed verification]

See also

References

  1. ^ a b "Achieving Rolling Updates and Continuous Deployment with Zero Downtime" (pdf).
  2. ^ "Getting Started | Ansible". 2014-02-06.
  3. ^ "Ansible: CM, Deployment, and Ad Hoc Task Execution All in One". DZone. 18 April 2012.
  4. ^ "An Interview with Ansible Author Michael DeHaan". Colo and Cloud. 17 April 2012.
  5. ^ "Ansible". Linux Packages Search.
  6. ^ "About Ansible". Ansible, Inc. Archived from the original on 2015-09-05. Retrieved 2016-07-08.
  7. ^ "Ansible, Inc.: Private Company Information". Businessweek. Bloomberg, Inc. Retrieved 2016-07-08.
  8. ^ Jordan Novet (October 16, 2015). "Source: Red Hat is buying Ansible for more than $100M". VentureBeat. Retrieved October 16, 2015.
  9. ^ "Red Hat to Acquire IT Automation and DevOps Leader Ansible". redhat.com. October 16, 2015. Retrieved October 16, 2015.
  10. ^ "Ansible FAQ".
  11. ^ a b c d e "Ansible in Depth" (pdf).
  12. ^ a b c d e "The Benefits of Agentless Architecture" (pdf).
  13. ^ "Inventory | Ansible". 2014-04-26.
  14. ^ "Playbooks | Ansible". 2014-04-26.
  15. ^ a b "Getting | Started". 2014-02-06.
  16. ^ "Ansible 1.7 is released - Windows beta and more!". 2014-08-07.