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
Ethan Paul 1c417eda10
Add tox for static checks
Add toxdir to gitignore
Add ansible and yamllint
2022-01-08 22:16:40 -05:00
skylab/core Replace ansible dep with ansible-core 2022-01-08 21:56:11 -05:00
.ansible-lint.yaml Add tox for static checks 2022-01-08 22:16:40 -05:00
.gitignore Add tox for static checks 2022-01-08 22:16:40 -05:00
.pre-commit-config.yaml
.yamllintrc.yaml Add tox for static checks 2022-01-08 22:16:40 -05:00
ansible.cfg Consolidate ansible settings into config file 2021-12-28 00:27:46 -05:00
inventory.yaml
LICENSE.md
link-local-collections.sh
Makefile Add tox for static checks 2022-01-08 22:16:40 -05:00
poetry.lock Add tox for static checks 2022-01-08 22:16:40 -05:00
pyproject.toml Add tox for static checks 2022-01-08 22:16:40 -05:00
README.md Consolidate ansible settings into config file 2021-12-28 00:27:46 -05:00
requirements.yaml
tox.ini Add tox for static checks 2022-01-08 22:16:40 -05:00

skylab-ansible

Ansible configs for the Skylab Homelab

Local workstation setup:

make dev
poetry run ansible-playbook ...

Boostraping remote system for management:

  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