ansible/hosts.yml

142 lines
3.4 KiB
YAML
Raw Normal View History

2022-09-04 17:25:14 +02:00
---
2022-08-30 10:00:27 +02:00
all:
hosts:
2022-08-30 17:27:09 +02:00
2022-10-18 12:05:45 +02:00
pikvm:
ansible_host: pikvm
ansible_user: ansible
ansible_port: 22
ansible_python_interpreter: /usr/bin/python3
ansible_become_method: doas
2022-10-18 18:16:13 +02:00
dags:
- acme_rsync
2022-10-18 12:05:45 +02:00
2022-08-30 10:09:52 +02:00
snitch:
ansible_host: snitch
2022-08-30 14:18:17 +02:00
ansible_user: ansible
2022-08-30 10:09:52 +02:00
ansible_port: 22
ansible_python_interpreter: /usr/bin/python3
2022-09-06 10:52:10 +02:00
ansible_become_method: doas
2022-10-19 17:58:20 +02:00
alpine_mode: diskless
2022-09-20 13:51:20 +02:00
alpine_version: v3.16
alpine_repos:
- main
suricata:
ansible_host: suricata
ansible_user: ansible
ansible_port: 22
ansible_python_interpreter: /usr/bin/python3
ansible_become_method: doas
2022-10-19 17:58:20 +02:00
alpine_mode: data
2022-09-20 13:51:20 +02:00
alpine_version: v3.16
alpine_repos:
- main
- community
2022-10-19 17:58:20 +02:00
dmcrypt_targets:
- name: "WDC WDS400T1R0A"
target: "disk0"
source_uuid: "202c924c-ee53-4321-9efd-1f776e939702"
key: "/luks_key.asc:gpg"
remdev: "/dev/mmcblk0p2"
2022-10-19 18:28:50 +02:00
options: "--allow-discards"
2022-10-19 17:58:20 +02:00
- name: "Samsung SSD 870"
target: "disk1"
source_uuid: "247ea237-54ce-45d2-9974-04344c06aba4"
key: "/luks_key.asc:gpg"
remdev: "/dev/mmcblk0p2"
2022-10-19 18:28:50 +02:00
options: "--allow-discards"
2022-10-19 17:58:20 +02:00
2022-09-20 13:51:20 +02:00
mounts:
2022-10-19 17:58:20 +02:00
- src: "/dev/mmcblk0p1"
path: "/media/mmcblk0p1"
2022-09-20 13:51:20 +02:00
fstype: "vfat"
opts: "noauto,defaults"
passno: "0"
2022-10-19 17:58:20 +02:00
- src: "/media/mmcblk0p1/boot"
path: "/boot"
2022-10-03 18:30:24 +02:00
fstype: "none"
opts: "defaults,bind"
passno: "0"
2022-10-19 17:58:20 +02:00
- src: "/dev/mmcblk0p2"
path: "/media/mmcblk0p2"
2022-09-20 13:51:20 +02:00
fstype: "ext4"
2022-09-20 14:27:22 +02:00
opts: "defaults"
2022-09-20 13:51:20 +02:00
passno: "0"
2022-10-19 17:58:20 +02:00
- src: "/dev/mapper/disk0"
path: "/mnt/btr_pool"
fstype: "btrfs"
opts: "subvolid=5,noatime"
passno: "0"
2022-10-19 17:58:20 +02:00
- src: "/dev/mapper/disk0"
path: "/var/log"
fstype: "btrfs"
opts: "subvol=logs,noatime"
passno: "0"
- src: "/dev/mapper/disk0"
path: "/home"
fstype: "btrfs"
opts: "subvol=home,noatime"
passno: "0"
- src: "/dev/mapper/disk0"
path: "/var/lib/builder/src"
fstype: "btrfs"
opts: "subvol=src,noatime"
passno: "0"
2022-10-30 15:54:15 +01:00
- src: "/dev/mapper/disk0"
path: "/etc/rancher"
fstype: "btrfs"
opts: "subvol=rancher_config,noatime"
passno: "0"
- src: "/dev/mapper/disk0"
path: "/var/lib/rancher"
fstype: "btrfs"
opts: "subvol=rancher_data,noatime"
passno: "0"
- src: "/dev/mapper/disk0"
path: "/var/lib/docker"
fstype: "btrfs"
opts: "subvol=docker,noatime"
passno: "0"
2022-09-20 15:02:53 +02:00
rpi_cfg:
- "enable_uart=1"
- "otg_mode=1"
2022-08-30 17:27:09 +02:00
caladan:
ansible_host: caladan
2022-08-30 18:26:16 +02:00
ansible_user: ansible
2022-08-30 17:27:09 +02:00
ansible_port: 22
ansible_python_interpreter: /usr/bin/python3
2022-09-06 10:52:10 +02:00
ansible_become_method: doas
2022-10-19 17:58:20 +02:00
alpine_mode: system
2022-09-20 13:51:20 +02:00
alpine_version: v3.16
alpine_repos:
- main
- community
2022-09-04 16:52:37 +02:00
narwhal:
ansible_host: narwhal
ansible_user: ansible
ansible_port: 22
ansible_python_interpreter: /usr/bin/python3
2022-09-22 11:19:46 +02:00
ansible_become_method: doas
2022-09-04 17:47:06 +02:00
fugu:
ansible_host: fugu
ansible_user: ansible
ansible_port: 22
ansible_python_interpreter: /usr/local/bin/python3
2022-09-06 10:52:10 +02:00
ansible_become_method: doas