Ansible configuration I use to manage my home lab consisting of a group of Raspberry Pi's.
 
 
Go to file
Jef Roosens b313c246ec
atuin: small fix + newer postgres
2024-10-01 14:35:23 +02:00
group_vars gitea: add config 2024-08-09 14:00:56 +02:00
roles atuin: small fix + newer postgres 2024-10-01 14:35:23 +02:00
.gitignore
README.md
Vagrantfile
ansible.cfg
first_run.yml
hosts.ini photoview: add config 2024-10-01 14:28:28 +02:00
hosts.template.ini
initial-hosts.ini
main.yml
nas.yml photoview: add config 2024-10-01 14:28:28 +02:00
ruby.yml photoview: add config 2024-10-01 14:28:28 +02:00
web.yml photoview: add config 2024-10-01 14:28:28 +02:00

README.md

Raspberry Pi NAS

Ansible configuration repository for my Raspberry Pi's.

Initial setup for new systems

  1. Flash Debian Raspberry Pi on the SD card.
  2. Configure /boot/firmware/sysconf.txt
    1. Set hostname to the desired name
    2. Set root_authorized_key to the contents of the current computer's public SSH key
  3. Put SD card in Pi and boot
  4. Connect Pi to wired internet
  5. Determine IP address given to the new Pi
  6. Add this IP address to the initial-hosts.ini file, along with the static_ip host var set to the desired static IP address
  7. Comment out ansible_ssh_user in group_vars/all/vars.yml, as this overwrites the one set in the hosts file
  8. Run ansible-playbook -i initial-hosts.ini first_run.yml. This command will hang at the restart networking step; at this point you can Ctrl-C.