6c59da3daf
virtualenv is not a part of the core python installation, but venv is. Let's use it to be slimmer and avoid issues with virtualenv installation. At the same time, remove some existing hacks around selinux, systemd, PyYAML and libvirt. Change-Id: Icd60aca084323cede944ee261d2cf5941b320e4b
45 lines
1.6 KiB
Plaintext
45 lines
1.6 KiB
Plaintext
---
|
|
# Map physical network names to their source device. This can be either an
|
|
# existing interface or an existing bridge.
|
|
physnet_mappings: {}
|
|
|
|
system_requirements:
|
|
- python3-libvirt
|
|
|
|
# Tenks bridge type. Options are "openvswitch", "linuxbridge". Default is
|
|
# "openvswitch". Note that this relates to bridges created by Tenks, not the
|
|
# source devices in physnet_mappings.
|
|
bridge_type: "openvswitch"
|
|
|
|
# Naming scheme for bridges created by tenks for physical networks is
|
|
# {{ bridge_prefix + i }}, where `i` is the index of the physical network in
|
|
# physnet_mappings (sorted alphabetically by key).
|
|
bridge_prefix: brtenks
|
|
|
|
# Prefix for all veth links.
|
|
veth_prefix: 'p-'
|
|
|
|
# Suffix for veth links attached to a Tenks bridge.
|
|
veth_bridge_peer_suffix: '-{% if bridge_type == "openvswitch" %}ovs{% else %}br{% endif %}'
|
|
# Suffix for veth links attached to a source Linux bridge.
|
|
veth_bridge_source_suffix: '-phy'
|
|
|
|
# Suffix for veth links attached to a Tenks bridge.
|
|
veth_node_peer_suffix: '-{% if bridge_type == "openvswitch" %}ovs{% else %}br{% endif %}'
|
|
# Suffix for veth links attached to a node. Nodes aren't physical so '-phy'
|
|
# doesn't seem right.
|
|
veth_node_source_suffix: '-tap'
|
|
|
|
# Directory in which to store Tenks logs.
|
|
log_directory: /var/log/tenks/
|
|
|
|
# The address on which VBMC will listen for node IPMI communication.
|
|
ipmi_address: 0.0.0.0
|
|
# The range of ports available for use for node IPMI communication.
|
|
ipmi_port_range_start: 6230
|
|
ipmi_port_range_end: 6240
|
|
# The username to use for node IPMI communication.
|
|
ipmi_username: username
|
|
# The password to use for node IPMI communication.
|
|
ipmi_password: password
|