blob: 35e1242536ccbb4d75197ae03ee5e93f6699eaf5 (
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
|
---
__vmhost_bridge_interface_zones__:
eno3:
- iot
- mgmt
- c3voc
eno4:
- magenta
__vmhost_bridge_interface_zones_yaml__: |
{% for interface in (__vmhost_bridge_interface_zones__.keys() | sort) %}
{% for zone in __vmhost_bridge_interface_zones__[interface] %}
{{ zone }}:
interfaces:
- {{ interface }}.{{ network_zones[zone].vlan }}
{% endfor %}
{% endfor %}
lan:
interfaces:
- eno1
svc:
interfaces:
- eno2
vm_host:
name: ch-phoebe
network:
bridges: "{{ __vmhost_bridge_interface_zones_yaml__ | from_yaml }}"
zfs:
default:
pool: nvme
name: vm
properties:
compression: lz4
|