The goal of this playbook is to be a One-Command-Homelab. Its purpose in life is to automate the setup and configuration of my homelab by running one command:
./run.sh
Additionally, this giant playbook defines my homelab almost entirely. Effectively running my Homelab as Code - HaC.
It's a constant work in progress...
Click here for a comprehensive list of features and their status.
All infrastructure is provisioned and configured using ansible playbooks which leverage custom roles from my homelab collection on ansible galaxy. Playbooks are called with a simple bash script.
Most of my servers are Ubuntu 22.04 VMs in Proxmox. This playbook currently supports configuring both Ubuntu 22.04 and Fedora 40 servers (VMs or bare metal). Support for other OSes may come in the future.
What configurations are made on the servers? -- See FEATURES.md
See tailscale-info
The playbook goes a bit beyond simply installing Docker. It will also deploy Portainer, which provides an intuitive web GUI for managing containers, and Nautical Backup, a container that automatically backs up all Docker container bind mounts from the host to a mounted SMB share via rsync.
All services are run in docker containers, each tied to a tailscale container for networking. This is sometimes referred to as a "sidecar" container, as the tailscale container does not provide any services itself and must have another container connected to it to be useful.
For more info see tailscale-info
Before attempting to use this playbook for your own homelab, ensure that you have read the description above so that you will have an understanding of how it will build containers.
- Tailscale account
- HTTPS enabled on your Tailscale account
- Two OAuth Clients created in the Tailscale admin console (one for containers and one for servers)
- Two tags created in your Tailscale config file (containers and servers)
- A Proxmox cluster
First, you'll need an inventory file. This can be written in either YAML or INI format. See the Ansible docs on building your inventory for more info.
An example hosts file (EXAMPLE_production.yml) is included in this repository for reference. Ensure the following groups exist:
- proxmox_hosts -- Each of your individual proxmox hosts
- proxmox_api -- One of your proxmox hosts. You can use any of them, but I recommend using the one that you normally use to log in to the web interface with.
- ubuntu
- fedora
- pihole
- docker
- One group for each container being run, named after the container. If the container name contains a hyphen (such as uptime-kuma) then it should be replaced with an underscore (uptime_kuma)
You must have a file in the vars directory that contains all of your sensitive variables. It is recommended to encrypt this file with Ansible Vault.
cd vars
ansible-vault create secrets.yml