blob: ccb3ca9203548918af13061771716d141aaf3be9 (
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
|
---
vm_host: ch-hroottest
install:
host: "{{ vm_host }}"
mem: 4096
numcpu: 4
disks:
primary: /dev/sda
scsi:
sda:
type: zfs
name: root
size: 20g
interfaces:
- bridge: br-public
name: primary0
autostart: True
network:
nameservers: "{{ hostvars[vm_host].vm_host.network.dns }}"
domain: "{{ host_domain }}"
systemd_link:
interfaces: "{{ install.interfaces }}"
primary:
interface: primary0
ip: "{{ hostvars[vm_host].vm_host.network.bridges.public.prefix | ipaddr(hostvars[vm_host].vm_host.network.bridges.public.offsets[inventory_hostname]) | ipaddr('address') }}"
mask: "{{ hostvars[vm_host].vm_host.network.bridges.public.prefix | ipaddr('netmask') }}"
gateway: "{{ hostvars[vm_host].vm_host.network.bridges.public.prefix | ipaddr('address') }}"
|