2022-11-30 23:49:07 +01:00
|
|
|
#
|
|
|
|
# Essential
|
|
|
|
#
|
2024-09-17 23:44:20 +02:00
|
|
|
|
2022-11-30 23:49:07 +01:00
|
|
|
user: tudattr
|
|
|
|
timezone: Europe/Berlin
|
2023-05-11 15:09:52 +02:00
|
|
|
puid: "1000"
|
|
|
|
pgid: "1000"
|
2023-11-27 22:51:08 +01:00
|
|
|
pk_path: "/mnt/veracrypt1/genesis"
|
2023-07-12 00:02:17 +02:00
|
|
|
pubkey: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqc9fnzfCz8fQDFzla+D8PBhvaMmFu2aF+TYkkZRxl9 tuan@genesis-2022-01-20"
|
|
|
|
|
2024-09-17 23:44:20 +02:00
|
|
|
public_domain: tudattr.dev
|
|
|
|
internal_domain: seyshiro.de
|
2022-11-30 23:49:07 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Packages
|
|
|
|
#
|
2024-09-17 23:44:20 +02:00
|
|
|
|
2022-11-30 23:49:07 +01:00
|
|
|
common_packages:
|
2024-09-17 23:44:20 +02:00
|
|
|
- build-essential
|
|
|
|
- curl
|
2022-11-30 23:49:07 +01:00
|
|
|
- git
|
|
|
|
- iperf3
|
2024-09-17 23:44:20 +02:00
|
|
|
- neovim
|
2022-12-06 16:36:21 +01:00
|
|
|
- rsync
|
2024-09-17 23:44:20 +02:00
|
|
|
- smartmontools
|
|
|
|
- sudo
|
2022-12-21 22:28:46 +01:00
|
|
|
- systemd-timesyncd
|
2024-09-17 23:44:20 +02:00
|
|
|
- tree
|
feat(ansible): add Docker host configuration with NFS mounts and utility packages
- Introduce Docker host configuration playbooks in `docker_host` role
- Install Docker and Docker Compose via apt repository
- Configure Docker user, group, and required directories (`/opt/docker`, `/media`)
- Add NFS mounts for Docker data, series, movies, and songs directories
- Add extra utility packages (`bat`, `ripgrep`, `fd-find`, `screen`, `eza`, `neovim`)
- Set up and manage `bash_aliases` for user-friendly command replacements (`batcat`, `nvim`, `eza`)
- Enhance `/group_vars` and `/host_vars` for Docker-related settings and secure access
- Add `docker-host00` and `docker-host01` entries to production and staging inventories
Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
2024-11-10 21:37:22 +01:00
|
|
|
- screen
|
|
|
|
- bat
|
|
|
|
- fd-find
|
|
|
|
- ripgrep
|
|
|
|
|
|
|
|
arch: "{{ 'arm64' if ansible_architecture == 'aarch64' else 'amd64' }}"
|