Ansible configuration repo for the Skylab (my homelab)
This repository has been archived on 2023-05-19. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2021-12-21 17:45:01 -05:00
skylab/core Fix playbook import syntax 2021-12-21 17:45:01 -05:00
.gitignore Add logic for building local ansible 'virtualenv' 2021-12-20 18:44:48 -05:00
.pre-commit-config.yaml
ansible Update ansible script to use local collections path 2021-12-20 18:44:48 -05:00
ansible.cfg
dynamically-link-local-collections.bash Add logic for building local ansible 'virtualenv' 2021-12-20 18:44:48 -05:00
inventory.yaml
LICENSE.md
Makefile Add logic for building local ansible 'virtualenv' 2021-12-20 18:44:48 -05:00
poetry.lock
pyproject.toml
README.md
requirements.yaml

skylab-ansible

Ansible configs for the Skylab Homelab

Main entrypoint is through the ansible script in this repository. The script sets up basic environment variables to avoid conflicts with other environments and sets the inventory.

Bootstrap checklist:

  1. Install a supported operating system: Rocky Linux
  2. During installation create a user named ansible with any password
  3. After installation copy SSH key to the ansible user
  4. Enable password-less sudo access for the ansible user with this command:
sudo tee /etc/sudoers.d/30-ansible <<<"ansible ALL=(ALL) NOPASSWD:ALL"
  1. Change the UID/GID of the ansible user/group to 1400 with these commands:
sudo usermod -u 1400 ansible
sudo groupmod -g 1400 ansible