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-11-10 01:30:34 -05:00
playbooks Add datastore role for validating config of datastore setup 2021-11-10 00:22:43 -05:00
resources
roles Add documentation for datastore role 2021-11-10 00:41:55 -05:00
tasks/meta Update state directory to mabe not break itself on every reboot 2021-11-09 00:03:05 -05:00
vars Add jq to global packages 2021-11-10 01:30:34 -05:00
.gitignore
.pre-commit-config.yaml
ansible
ansible.cfg
inventory.yaml Add legacy local aliases to hosts config 2021-11-10 00:17:40 -05:00
LICENSE.md
poetry.lock
pyproject.toml
README.md Fix bootstrap instructions to include group id 2021-11-06 20:46:32 -04:00

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