Ansible (software)
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. HistoryThe 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] ArchitectureOverviewAnsible 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] DependenciesAnsible 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] Control nodeThe 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. Design goalsThe design goals of Ansible include:[18]
ModulesModules[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] Inventory configurationLocation of target nodes is specified through inventory configuration lists (INI or YAML formatted) located at An example inventory format (INI 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 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] PlaybooksPlaybooks 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] Ansible Automation PlatformThe 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 17+ upstream open source projects including the AWX upstream project (formerly Ansible Tower derived from), 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] Platform supportControl 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 Ansible can deploy to bare metal hosts, virtual machines, and cloud environments.[18] AnsibleFestAnsibleFest is an annual conference of the Ansible community of users, contributors, etc.[39]
See alsoReferences
External links |
Portal di Ensiklopedia Dunia