blob: f07198b1b559f580b8e71df13a009c565d62c2a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
---
install:
cloud:
credentials: "{{ vault_hroot_robot_account }}"
server_name: "{{ host_name }}"
disks:
layout: sata_raid
root_lvm_size: 10G
network:
nameservers: "{{ vm_host.network.dns }}"
domain: "{{ host_domain }}"
interfaces:
- name: br-public
address: "{{ vm_host.network.bridges.public.prefix | ipaddr(vm_host.network.bridges.public.offsets[inventory_hostname]) | ipaddr('address/prefix') }}"
apt_repo_components:
- main
- contrib ## for zfs
- non-free ## for microcode updates
zfs_arc_size:
min: "{{ 1 * 1024 * 1024 * 1024 }}"
max: "{{ 4 * 1024 * 1024 * 1024 }}"
zfs_zpools:
storage:
mountpoint: /srv/storage
create_vdevs: mirror /dev/disk/by-id/ata-SAMSUNG_HD753LJ_S13UJ1LS801071-part3 /dev/disk/by-id/ata-SAMSUNG_HD753LJ_S13UJ1BQ802393-part3
zfs_sanoid_modules:
storage/vm:
use_template: production
recursive: yes
process_children_only: yes
|