ansible-playbooks/README.md

46 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2022-04-19 14:40:54 +00:00
# Ansible Playbooks
A collection of Ansible playbooks I use to provision things.
2022-04-28 13:56:42 +00:00
## Ansible VPS setup
Ansible playbook to provision a plain Ubuntu VPS from digitalocean. Expects ssh access for user root.
- Create user
- Secure ssh
- Configure ufw
### Setup
Copy or rename `vars.samle.yml` to `vars.yml` and set:
- **regular_user**: Default username to create
- **user_password**: Password for new user
- **sshd_port**: Change ssh port
### Note
The port change is tested for Ubuntu 20.04 LTS and 22.04 LTS. This wont work for 21.10, as ubuntu changed ssh to use socket based activation.
2022-04-28 13:56:42 +00:00
### Run on a single host
```
ansible-playbook -i $hostname, ansible-vps-setup/playbook.yml
```
2022-04-19 14:40:54 +00:00
## Ansible Docker Ubuntu
2022-04-28 13:56:42 +00:00
Ansible playbook to provision an standart Ubuntu LTS server VM. Expects the user *regular_user* to be already created.
2022-04-19 14:40:54 +00:00
- update and upgrade repo packages
- install basic necessities
- install `docker`
- install `docker compose`
- copy frequently used config files
2022-05-31 14:10:11 +00:00
- configure swap
- install maintenance services to clean trash and docker build cache
2022-04-19 14:40:54 +00:00
### Setup
Copy or rename `vars.samle.yml` to `vars.yml` and set:
- **regular_user**: Default username
### Run on a single host
```
ansible-playbook -i $hostname, -K ansible-docker-ubuntu/playbook.yml
```