Ansible (software)
Original author(s) | Michael DeHaan |
---|---|
Developer(s) | Ansible Community / Ansible Inc. / Red Hat Inc. |
Initial release | February 20, 2012 |
Stable release |
2.3.2.0
/ August 4, 2017[1] |
Repository | https://github.com/ansible/ansible, git://github.com/ansible/ansible.git |
Development status | Active |
Written in | Python, PowerShell |
Operating system | Linux, Unix-like, Windows |
Available in | English |
Type | Configuration management, Infrastructure as Code, Orchestration engine |
License | GNU General Public License |
Website |
www |
Ansible is an open-source automation engine that automates software provisioning, configuration management, and application deployment.[2]
Michael DeHaan, the author of the provisioning server application Cobbler and co-author of the Func framework for remote administration, developed the platform.[3] 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.[4]
Ansible, Inc. (originally AnsibleWorks, Inc.) was the company set up to commercially support and sponsor Ansible.[5][6] Red Hat acquired Ansible in October 2015.[7][8]
The name "Ansible" references a fictional instantaneous hyperspace communication system (as featured in Orson Scott Card's Ender's Game (1985),[9][10] and originally conceived by Ursula K. Le Guin for her novel Rocannon's World (1966)).
Architecture
As with most configuration management software, Ansible has 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.[11]
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.[12] When Ansible is not managing nodes, it does not consume resources because no daemons or programs are executing for Ansible in the background.[13]
In contrast with popular configuration management software — such as Chef, Puppet, and CFEngine — Ansible uses an agentless architecture.[13] 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.[13]
Design goals
The design goals of Ansible include:[12]
- Minimal in nature. Management systems should not impose additional dependencies on the environment.[13]
- Consistent.
- Secure. Ansible does not deploy agents to nodes. Only OpenSSH is required.[13]
- Highly reliable. When carefully written, an Ansible playbook can be idempotent, in order to prevent unexpected side-effects on the managed systems.[14] It should be noted, however, that it is entirely 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 (such as 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 (e.g., upon recovery from an outage), it will always place the system into the same state.[12]
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.[11]
An example inventory:
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.
Ansible can also use a custom Dynamic Inventory script, which can dynamically pull data from a different system.[15]
Playbooks
Playbooks express configurations, deployment, and orchestration in Ansible.[16] 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 tasks.[17]
Ansible Tower
Ansible Tower is an REST API, web service, and web-based console designed to make Ansible usable for IT teams. It is a hub for automation tasks. Tower is a commercial product supported by Red Hat, Inc. There are intentions by Red Hat, Inc. in releasing Tower as Open Source Software, as announced during AnsibleFest 2016 and documented by available registration web page for updates in this matter.[18][19]
There is an open source alternative to Tower, Semaphore, written in Go.[20][21]
Platform support
Control machines have to be a Linux/Unix host (for example, Red Hat Enterprise Linux, Debian, CentOS, OS X, BSD, Ubuntu[4]), and Python 2.6 or 2.7 is required (Python 3 support is available as a tech preview since ansible 2.2[22]).
Managed nodes, if they are Unix-like, must have Python 2.4 or later. For managed nodes with Python 2.5 or earlier, the python-simplejson
package is also required.[23] Since version 1.7, Ansible can also manage Windows[24] nodes.[23] In this case, native PowerShell remoting is used, instead of SSH.
Cloud integration
Apart from bare metal hosts, ansible can deploy to virtualization and cloud environments, including Amazon Web Services, Atomic, Centurylink, Cloudscale, CloudStack, DigitalOcean, Dimensiondata, Docker, Google Cloud Platform, KVM, Linode, LXC, LXD, Microsoft Azure, OpenStack, OVH, oVirt, Packet, Profitbricks, Pubnub, Rackspace, SmartOS, SoftLayer, Univention, VMware, Webfaction, and XenServer.[12][25]
See also
- Comparison of open-source configuration management software
- Chef
- Infrastructure as Code
- Otter
- Puppet
- Salt
- cdist
References
- ↑ "Releases - ansible/ansible". Retrieved 10 August 2017 – via GitHub.
- ↑ Staff writer. "Overview - How Ansible Works". ansible.com. Red Hat, Inc. p. 1. Retrieved December 7, 2016.
- ↑ Maughan, Mike (April 17, 2012). "An Interview with Ansible Author Michael DeHaan". coloandcloud.com. Maughansem LLC. p. 1. Retrieved November 5, 2012.
- 1 2 Ulianytskyi, Mykola. "ansible Download (DEB, RPM, TGZ, TXZ, XZ)". pkgs.org. Linux Packages Search. p. 1. Retrieved November 5, 2012.
- ↑ "About Ansible". Ansible, Inc. p. 1. Archived from the original on September 5, 2015. Retrieved July 8, 2016.
- ↑ Bloomberg Research. "Ansible, Inc.: Private Company Information". Internet Software and Services. Bloomberg L.P. p. 1. Retrieved July 8, 2016.
- ↑ Novet, Jordan (October 15, 2015). "Source: Red Hat is buying Ansible for more than $100M". venturebeat.com. VentureBeat, Inc. p. 1. Retrieved October 16, 2015.
- ↑ Staff writer (October 16, 2015). "Red Hat to Acquire IT Automation and DevOps Leader Ansible". redhat.com. Red Hat, Inc. Retrieved October 16, 2015.
- ↑ Ansible Community. "Frequently Asked Questions". docs.ansible.com. Ansible Documentation. Red Hat, Inc. p. 1. Retrieved April 30, 2013.
- ↑ DeHaan, Michael (January 29, 2014). "Google Groups Post - Ansible Project". groups.google.com. p. 1. Retrieved April 26, 2017.
- 1 2 Ansible Community. "Inventory". docs.ansible.com. Ansible Documentation. Red Hat, Inc. p. 1. Retrieved April 26, 2014.
- 1 2 3 4 "Ansible in Depth" (PDF). Red Hat, Inc. p. 5.
- 1 2 3 4 5 "The Benefits of Agentless Architecture" (PDF). Red Hat, Inc. p. 5.
- ↑ "Achieving Rolling Updates and Continuous Deployment with Zero Downtime" (PDF). Red Hat, Inc. p. 7.
- ↑ Ansible Community. "Dynamic Inventory". docs.ansible.com. Ansible Documentation. Red Hat, Inc. p. 1. Retrieved November 25, 2016.
- ↑ Ansible Community. "Playbooks". docs.ansible.com. Ansible Documentation. Red Hat, Inc. p. 1. Retrieved April 26, 2014.
- ↑ Ansible Community. "Task And Handler Organization For A Role". docs.ansible.com. Ansible Documentation. Red Hat, Inc. p. 1. Retrieved November 25, 2016.
- ↑ Redditors (February 19, 2016). "Ansible announces Tower to be Open Source in the near future on AnsibleFest!". reddit.com. Reddit. p. 1. Retrieved July 20, 2017.
- ↑ Staff writer. "The Open Tower Project". ansible.com/open-tower. Red Hat, Inc. p. 1. Retrieved January 21, 2017.
- ↑ Semaphore community. "Semaphore API". ansible-semaphore.github.io. p. 1. Retrieved July 20, 2017.
- ↑ Semaphore community. "ansible-semaphore". github.com/ansible-semaphore. Castaway Consulting LLC. Retrieved January 21, 2017.
- ↑ Ansible Community. "Python 3 Support". docs.ansible.com. Ansible Documentation. Red Hat, Inc. p. 1. Retrieved July 6, 2017.
- 1 2 Ansible Community. "Getting started". docs.ansible.com. Ansible Documentation. Red Hat, Inc. p. 1. Retrieved February 6, 2014.
- ↑ DeHaan, Michael (August 6, 2014). "Ansible 1.7 is released - Windows beta and more!". ansible.com/blog. The Inside Playbook. Ansible, Inc. p. 1. Retrieved August 7, 2014.
- ↑ Ansible Community. "List of cloud modules". docs.ansible.com. Ansible Documentation. Red Hat, Inc. p. 1. Retrieved April 28, 2017.
External links
- Official website
- Ansible Galaxy roles repository
- Official code - Ansible repository on ansible.com
- Official code - Ansible community repository on GitHub
- Continuous integration testing on Travis CI
- Ansible Index of Packages on PyPI
- Index of Packages matching "Ansible" on PyPI