The Ansible community learning by example.

800+ tutorials with copy-paste code examples. Playbooks, modules, roles, troubleshooting, cloud automation — all free, all practical.

The Home of Ansible Automation

Learn, practice, and master infrastructure automation.

800+ Copy-Paste Tutorials

Every tutorial includes working YAML code you can copy directly into your project. No fluff, just practical automation.

---
- name: Configure web servers
hosts: webservers
become: true
tasks:
- name: Install nginx
ansible.builtin.apt:
name: nginx
state: present
- name: Start nginx service
ansible.builtin.service:
name: nginx
state: started

AI Playground

Practice with an AI assistant that knows Ansible inside out.

8 Published Books

By Luca Berton — Ansible, Kubernetes, RHEL, and Linux automation.

View Books
Practical RHEL AIKubernetes RecipesRHEL 9 for SysAdminsMastering RHCE ExamRed Hat Ansible AutomationHands-on Ansible AutomationAnsible for KubernetesAnsible for VMware

Created by an Ansible expert trusted by thousands of engineers

Red Hat Certified

RHCE & RHCSA

8 Books

Published author

Conference Speaker

Red Hat Summit, KubeCon

800+ Tutorials

And growing weekly

Start Learning

Pick a topic, copy the code, and automate.