ansible is a free, open source orchestration & scheduling project written in Python and released under GPL-3.0. It has 70,719 GitHub stars, 24,336 forks and 837 open issues, and was last pushed 5 hours ago. On this registry it ranks #1 of 123 tracked projects in Orchestration & Scheduling, with 5 head-to-head comparisons available.

What is ansible?

Ansible is a radically simple, agentless IT automation platform, written in Python and licensed under GPL-3.0, that handles configuration management, application deployment, cloud provisioning, ad-hoc task execution, network automation, and multi-node orchestration for operators, developers, and network and cloud teams who manage machines over plain SSH.

What it is

Ansible is an open-source IT automation system developed in the ansible/ansible repository, with 70,719 stars, 24,336 forks, and 837 open issues as recorded in this listing, and released under the GPL-3.0 licence. It lives in the Python packaging ecosystem, published to PyPI as ansible-core, with documentation at docs.ansible.com and a project homepage at ansible.com. Its stated design principles are explicit: setup should be extremely simple with a minimal learning curve, machines should be managed quickly and in parallel, and infrastructure should be described in a language that is both machine and human friendly.

The concrete problem it solves is the operational cost of agent-based automation. Instead of installing a custom agent on every target and opening additional ports, Ansible is agentless and leverages the existing SSH daemon on remote systems. A new remote machine becomes manageable instantly, without bootstrapping any software, and the connection path administrators already audit becomes the automation path. It replaces the custom agents, extra listening ports, and per-host bootstrap steps that agent-based configuration management requires, and it can be used as a non-root user.

Key capabilities

  • Agentless operation over the existing SSH daemon, with no custom agent and no additional open ports on managed hosts.
  • Configuration management, application deployment, cloud provisioning, ad-hoc task execution, network automation, and multi-node orchestration from one system.
  • Zero-downtime rolling updates coordinated with load balancers.
  • Parallel management of machines, including newly added hosts that require no prior software bootstrap.
  • Playbooks and modules written in a language approaching plain English; the Ansible forum maintains tags for playbook and ansible-core discussion.
  • Module development permitted in any dynamic language, not only Python.
  • Usable as a non-root user.

Who uses it and how

  • Operations teams managing fleets of servers over SSH, where installing agents on every host is impractical or disallowed.
  • Network engineers automating device configuration, since network automation is treated as a first-class use case rather than an add-on.
  • Cloud teams provisioning infrastructure and deploying applications across many nodes at once.
  • Release and platform engineers performing rolling updates behind load balancers with zero downtime.
  • Contributors working from the devel branch, which carries the latest features and fixes and is reasonably stable but more likely to introduce breaking changes than a released version.

Getting started

Install a released version of Ansible with pip or a package manager, following the official installation guide at docs.ansible.com; power users and developers can run the devel branch directly for the latest features and fixes.

How it compares

No comparable tools are named in the facts for this entry, so Ansible stands alone in this registry at present. Its position here rests on its own characteristics: a GPL-3.0 licence, Python distribution through PyPI as ansible-core, and an agentless SSH transport rather than on any listed alternative.

When to use it — and when not to

Choose Ansible when the target fleet already exposes SSH, when custom agents and extra listening ports are not permitted, and when automation content must be reviewable and auditable by humans. A self-hoster runs the control node and its Python environment, and should expect installation guidance to live in the external installation guide rather than the README, which concentrates on community channels, contribution process, and communication. Avoid the devel branch unless involvement in the community is intended, because it is more likely than a released version to carry breaking changes.

project readme (upstream, from github) — read inline

PyPI version Docs badge Chat badge Ansible forum Build Status Ansible Code of Conduct Repository License Ansible CII Best Practices certification

Ansible

Ansible is a radically simple IT automation system. It handles configuration management, application deployment, cloud provisioning, ad-hoc task execution, network automation, and multi-node orchestration. Ansible makes complex changes like zero-downtime rolling updates with load balancers easy. More information on the Ansible website.

Design Principles

  • Have an extremely simple setup process with a minimal learning curve.
  • Manage machines quickly and in parallel.
  • Avoid custom-agents and additional open ports, be agentless by leveraging the existing SSH daemon.
  • Describe infrastructure in a language that is both machine and human friendly.
  • Focus on security and easy auditability/review/rewriting of content.
  • Manage new remote machines instantly, without bootstrapping any software.
  • Allow module development in any dynamic language, not just Python.
  • Be usable as non-root.
  • Be the easiest IT automation system to use, ever.

Use Ansible

You can install a released version of Ansible with pip or a package manager. See our installation guide for details on installing Ansible on a variety of platforms.

Power users and developers can run the devel branch, which has the latest features and fixes, directly. Although it is reasonably stable, you are more likely to encounter breaking changes when running the devel branch. We recommend getting involved in the Ansible community if you want to run the devel branch.

Communication

Join the Ansible forum to ask questions, get help, and interact with the community.

For more ways to get in touch, see Communicating with the Ansible community.

Contribute to Ansible

  • Check out the Contributor's Guide.
  • Read Community Information for all kinds of ways to contribute to and interact with the project, including how to submit bug reports and code to Ansible.
  • Submit a proposed code update through a pull request to the devel branch.
  • Talk to us before making larger changes to avoid duplicate efforts. This not only helps everyone know what is going on, but it also helps save time and effort if we decide some changes are needed.

Coding Guidelines

Development context for ansible-core can be found in the context directory.

We also document our Coding Guidelines in the Developer Guide. We particularly suggest you review:

Branch Info

  • The devel branch corresponds to the release actively under development.
  • The stable-2.X branches correspond to stable releases.
  • Create a branch based on devel and set up a dev environment if you want to open a PR.
  • See the Ansible release and maintenance page for information about active branches.

Roadmap

Based on team and community feedback, an initial roadmap will be published for a major or minor version (ex: 2.7, 2.8). The Ansible Roadmap page details what is planned and how to influence the roadmap.

Authors

Ansible was created by Michael DeHaan and has contributions from over 5000 users (and growing). Thanks everyone!

This project is substantially coded by humans.

Ansible is sponsored by Red Hat, Inc.

License

GNU General Public License v3.0 or later

See COPYING to see the full text.

Frequently asked questions

Is ansible free to use?

ansible is open source under the GPL-3.0 licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does ansible do?

Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and maintain. Automate everything from code deplo

What is ansible written in?

ansible is primarily written in Python. Its source is publicly available at https://github.com/ansible/ansible, and it has 70,719 GitHub stars.