Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chaseofthejungle/intro-to-ansible
An overview guide of Ansible commands and playbook features.
https://github.com/chaseofthejungle/intro-to-ansible
ansible infrastructure-as-code
Last synced: 3 days ago
JSON representation
An overview guide of Ansible commands and playbook features.
- Host: GitHub
- URL: https://github.com/chaseofthejungle/intro-to-ansible
- Owner: chaseofthejungle
- Created: 2024-12-21T00:16:31.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-02-15T17:47:48.000Z (5 days ago)
- Last Synced: 2025-02-15T18:33:21.994Z (5 days ago)
- Topics: ansible, infrastructure-as-code
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Intro to Ansible
**Definition/Overview:** Ansible is an open-source collection of infrastructure-as-code (IaC) automation tools and a declarative language for making and managing system configurations, app deployments, and software provisions, providing orchestration of both app lifecycle and workflow. It describes app infrastructure via Ansible 'playbooks', which its automation engine executes. Ansible provides readily human readable automation services, enabling systems to be reliably productive and execute processes sequentially/as defined. Its agentless architecture provides both simple efficiency and security, without a need for constant updates.
#### Table of Contents
1. [Installation Commands](#install)
2. [Supplemental Resources](#resources)
## 1. Installation Commands
pip:
`$ pip install ansible`Fedora:
`$ sudo dnf install ansible`CentOS or RHEL:
`$ sudo yum install ansible`
## 2. Supplemental Resources
[Getting Started with Ansible (Official)](http://www.ansible.com/get-started)
[Ansible Collaborative (Community for learning and sharing Ansible content)](https://www.redhat.com/en/ansible-collaborative)
[Ansible Galaxy (Provides collections/roles, which contain pre-packaged Ansible content)](http://galaxy.ansible.com)