Ansible is a powerful automation tool that lets you manage your infrastructure using simple, repeatable playbooks. In this first part of the series, you’ll install Ansible, configure SSH access, and run your first task — laying the foundation for automating your homelab.
Install Ansible
Install Ansible on your local workstation or control node. In my case I use a my macbook as “control node”.
Ensure pip is available and up to date:
python3 -m ensurepip --upgrade
python3 -m pip install --upgrade pipInstall Ansible:
pip install ansibleVerify the installation:
ansible --versionSet Up SSH Key Access
Ansible connects to remote machines via SSH. To avoid typing passwords every time, set up SSH key authentication.
If you already use Tailscale to access your nodes, you can use Tailscale SSH instead of managing your own SSH keys.
Generate a key pair
ssh-keygen -t ed25519Press enter to use the default file location. Leave the passphrase empty for automation.
Copy your public key to a remote host
ssh-copy-id user@your-server-ipThen test your connection:
ssh user@your-server-ipIf you’re logged in without a password prompt, you’re ready to automate.
Project Structure
Here’s a basic layout for organizing your Ansible project:
homelab-ansible/
├── ansible.cfg
├── inventory/
│ └── hosts.yml
├── playbooks/
│ └── install-htop.yml
└── README.mdCreate the Ansible configuration file
The ansible.cfg file is typically located either in your home directory or in the /etc/ansible directory.
[defaults]
inventory = ./inventory/hosts.yml
host_key_checking = False
retry_files_enabled = False
timeout = 10This configuration:
- Points to your inventory file
- Disables SSH host key prompts
- Improves reliability by disabling retry files and adding a timeout
Define Your Inventory
Create a static inventory file to list your homelab machines. This file is typically placed in your current working directory, alongside your playbooks and roles in the inventory folder
all:
homelab:
hosts:
server01:
server02:Replace server01 and server02 with actual IPs or hostnames.
Test SSH Connectivity
Use Ansible’s ping module to confirm everything is working:
ansible -m ping homelabEach machine should return pong if SSH and the inventory are set up correctly.
First Playbook: Install htop
Let’s create a simple Ansible playbook to install a package (in this case, htop) on all your homelab servers. It’s a good practice to save your playbooks in a dedicated playbooks/ directory. If you don’t have this folder yet, you can create it.
Save the following content as playbooks/install-htop.yml:
- name: Install htop on homelab servers
hosts: homelab
become: true
tasks:
- name: Ensure htop is installed
ansible.builtin.apt:
name: htop
state: presentThis playbook:
- Connects to all hosts in the
homelabgroup - Uses
sudo(become: true) - Installs the
htoppackage if it’s not already present
Run the Playbook
From your project root:
ansible-playbook playbooks/install-htop.yml --ask-become-passIf your user has passwordless sudo, you can skip the --ask-become-pass flag.
Recap
You’ve now:
- Installed Ansible
- Set up SSH key access to your servers
- Created a clean project structure
- Written and executed a basic playbook
What’s Next
In the next parts of this series, we’ll cover:
- Organizing your automation with roles
- Reacting to changes using handlers
- Managing secrets securely with Ansible Vault
You’re now ready to scale up your homelab automation. Let’s continue.

