![]() | This article may be too technical for most readers to understand.(April 2022) |
![]() | |
Original author(s) | Michael DeHaan |
---|---|
Developer(s) | Ansible Community / Ansible Inc. / Red Hat Inc. |
Initial release | February 20, 2012[ citation needed ] |
Stable release | |
Repository | |
Written in | Python, PowerShell, Shell |
Operating system | Linux, Unix-like, MacOS, Windows |
Available in | English |
Type | Configuration management, infrastructure as code (IaC), Orchestration engine |
License | GNU General Public License version 3 |
Website | www![]() |
Ansible is a suite of software tools that enables infrastructure as code. It is open-source and the suite includes software provisioning, configuration management, and application deployment functionality. [2]
Originally written by Michael DeHaan in 2012, and acquired by Red Hat in 2015, Ansible is designed to configure both Unix-like systems and Microsoft Windows. Ansible is agentless, relying on temporary remote connections via SSH or Windows Remote Management which allows PowerShell execution. The Ansible control node runs on most Unix-like systems that are able to run Python, including Windows with Windows Subsystem for Linux installed. [3] System configuration is defined in part by using its own declarative language.
The term "ansible" was coined by Ursula K. Le Guin in her 1966 novel Rocannon's World , [4] and refers to fictional instantaneous communication systems. [5] [6]
The Ansible tool was developed by Michael DeHaan, the author of the provisioning server application Cobbler and co-author of the Fedora Unified Network Controller (Func) framework for remote administration. [7]
Ansible, Inc. (originally AnsibleWorks, Inc.) was the company founded in 2013 by DeHaan, Timothy Gerla, and Saïd Ziouani to commercially support and sponsor Ansible. [8] [9] [10] Red Hat acquired Ansible in October 2015. [11] [12]
Ansible is included as part of the Fedora distribution of Linux, owned by Red Hat, and is also available for Red Hat Enterprise Linux, CentOS, openSUSE, SUSE Linux Enterprise, Debian, Ubuntu, Scientific Linux, and Oracle Linux via Extra Packages for Enterprise Linux, as well as for other operating systems. [13]
Ansible helps to manage multiple machines by selecting portions of Ansible's inventory stored in simple plain text files. The inventory is configurable, and target machine inventory can be sourced dynamically or from cloud-based sources in different formats (YAML, INI). [14]
Sensitive data can be stored in encrypted files using Ansible Vault [15] since 2014. [16] In contrast with other popular configuration-management software — such as Chef, Puppet, Salt and CFEngine — Ansible uses an agentless architecture, [17] with Ansible software not normally running or even installed on the controlled node. [17] Instead, Ansible orchestrates a node by installing and running modules on the node temporarily via SSH. For the duration of an orchestration task, a process running the module communicates with the controlling machine with a JSON-based protocol via its standard input and output. [18] When Ansible is not managing a node, it does not consume resources on the node because no daemons are run or software installed. [17]
Ansible requires Python to be installed on all managing machines, including pip package manager along with configuration-management software and its dependent packages. Managed network devices require no extra dependencies and are agentless. [19]
The control node (master host) is intended to manage (orchestrate) target machines (nodes termed as "inventory", see below). [20] Control nodes can be run from Linux and Unix-like operating systems (including MacOS); Windows OSs are only supported through the Windows Subsystem for Linux. [21] Multiple control nodes are allowed. [20] Ansible does not require a single controlling machine for orchestration, [22] ensuring that disaster recovery is simple. [22] Nodes are managed by the controlling node over SSH.
The design goals of Ansible include: [18]
Modules [24] are mostly standalone and can be written in a standard scripting language (such as Python, Perl, Ruby, Bash, etc.)[ citation needed ]. One of the guiding goals 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. [18] [ non-primary source needed ]
Location of target nodes is specified through inventory configuration lists (INI or YAML formatted) located at /etc/ansible/hosts
(on Linux). [14] [25] 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. [14]
An example inventory format (INI file):
192.168.6.1[webservers]foo.example.combar.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, [26] and supports groups of groups. [27]
Playbooks are YAML files that store lists of tasks for repeated [28] [20] executions on managed nodes. [20] [29] Each Playbook maps (associates) a group of hosts to a set of roles. Each role is represented by calls to Ansible tasks. [30]
The Ansible Automation Platform (AAP) is a REST API, web service, and web-based interface (application) designed to make Ansible more accessible to people with a wide range of IT skillsets. It is a platform composed of multiple components including developer tooling, an operations interface, as well as an Automation Mesh to enable automation tasks at scale across data centers. AAP is a commercial product supported by Red Hat, Inc. but derived from 17+ upstream open source projects including the AWX upstream project (formerly Ansible Tower), which has been open source since September 2017. [31] [32] [33] [34]
There also is another open source alternative to Tower, Semaphore, written in Go. [35] [36]
Control machines have to be a Linux/Unix host (for example BSD, CentOS, Debian, macOS, Red Hat Enterprise Linux, SUSE Linux Enterprise, Ubuntu [13] ), and Python 2.7 or 3.5 is required. [19]
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. [37] Since version 1.7, Ansible can also manage Windows [38] nodes. [37] In this case, native PowerShell remoting supported by the WS-Management protocol is used instead of SSH.
Ansible can deploy to bare metal hosts, virtual machines, and cloud environments. [18]
AnsibleFest is an annual conference of the Ansible community of users, contributors, etc. [39]
Year | Location |
---|---|
2013 | New York, New York, US |
2013 | San Francisco, California, US |
2014 | New York, New York, US |
2014 | San Francisco, California, US |
2015 | London, UK |
2015 | New York, New York, US |
2015 | San Francisco, California, US |
2016 | London, UK |
2016 | San Francisco, California, US |
2016 | Brooklyn, New York, US |
2017 | London, UK |
2017 | San Francisco, California, US |
2018 | Austin, Texas, US |
2019 | Atlanta, Georgia, US |
2020 | Virtual only due to COVID-19 pandemic |
2021 | Virtual only due to COVID-19 pandemic |
2022 | Chicago, Illinois, US |
2023 | Boston, Massachusetts, US |
2024 | Denver, Colorado, US |
2025 | Boston, Massachusetts, US [40] |
{{cite web}}
: CS1 maint: multiple names: authors list (link)