ansible/README.md

48 lines
1.7 KiB
Markdown
Raw Normal View History

2020-10-17 00:21:57 -05:00
# Salt's Ansible Repository
Useful for management across all of 9iron, thefuck, and desu.
2020-11-01 05:00:27 -06:00
## TODO
This branch is kinda-sorta a port of master, so it still needs to reach some form of feature parity with it. Namely:
2020-12-24 09:46:17 -06:00
* Pleroma (Well shit, now that @p's acknowledged me and @sjw's following me, I can't really put it down, can I?)
2020-11-01 05:00:27 -06:00
2020-11-07 00:47:18 -06:00
* Matrix(? Do I still want to keep this around? Is there a better alternative? Will my friends even use it?)
2020-11-01 05:00:27 -06:00
* Monitoring (Doesn't necessarily have to be grafana)
2020-10-28 22:42:11 -05:00
## Initialization
2020-11-07 00:47:18 -06:00
Clone the repo, `cd` in. Done.
2020-10-28 22:42:11 -05:00
2020-10-17 00:21:57 -05:00
## Deployment
Adding a new server will require the following be fulfilled:
* The server is accessible from the Ansible host;
* The server has a user named `ansible` which:
* Accepts the public key located in `contrib/desu.pub`; and
* Has passwordless sudo capabilities as root
* The server is added to `inventory/hosts.yml` in an appropriate place;
* DNS records for the machine are set; and
2020-10-17 00:21:57 -05:00
* The server is running Ubuntu 20.04 or greater
2020-10-17 00:21:57 -05:00
From there, running the playbook `site.yml` should get the machine up to snuff. To automate the host-local steps, use the script file `contrib/bootstrap.sh`.
2020-11-07 00:47:18 -06:00
## Ansible Galaxy
Several of the roles in this repository are sourced from Ansible Galaxy. They're mirrored here for both easy compatibility with `ansible-pull` and in case the sources go down. Despite this, they're still managed in `roles/requirements.yml` for ease of management, source tracking, and updating. Any forks or deviations from these sources should be thoroughly documented.
Should you need to reinitialize them, the following command (run from the root of the repo) will initialize all Galaxy assets:
```
ansible-galaxy install -r roles/requirements.yml
```