Add bridge_device entry to config

Used to properly allow bridged networks to be formed.

Ref parallelvirtualcluster/pvc#64
This commit is contained in:
Joshua Boniface 2023-09-01 15:42:22 -04:00
parent 91b9b6b294
commit f68ba7a735
2 changed files with 9 additions and 0 deletions

View File

@ -80,6 +80,14 @@ pvc_nodes:
ipmi_user: "{{ username_ipmi_host }}"
ipmi_password: "{{ passwd_ipmi_host }}"
# Bridge device entry
# This device is passed to PVC and is used when creating bridged networks. Normal managed networks are
# created on top of the "cluster" interface defined below, however bridged networks must be created
# directly on an underlying non-vLAN network device. This can be the same underlying device as the
# upstream/cluster/storage networks (especially if the upstream network device is not a vLAN itself),
# or a different device separate from the other 3 main networks.
pvc_bridge_device: bondU # Replace based on your network configuration
# Configuration file networks
# > Taken from base.yml's configuration; do not modify this section.
pvc_upstream_device: "{{ networks['upstream']['device'] }}"

View File

@ -77,6 +77,7 @@ pvc:
log_keepalive_storage_details: {{ pvc_log_keepalive_storage_details }}
console_log_lines: {{ pvc_log_console_lines }}
networking:
bridge_device: {{ pvc_bridge_device }}
upstream:
device: {{ pvc_upstream_device }}
mtu: {{ pvc_upstream_mtu }}