
Adds support for iPXE scripting. Allows for the operator to specify a remote iPXE kernel to pull in newer iPXE kernel features and specify a remote default iPXE script for customizing the multi node for other types of deployments. Switches the installations to use netboot installer kernels instead of ISO retrival and extraction. Restructures directory to allow for future multi node configs instead of just debian based installs. Change-Id: Ie97f021dbd33ad3d852132b0b2850f54d4e13476
25 lines
691 B
Django/Jinja
25 lines
691 B
Django/Jinja
# Physical interface, could be bond. This only needs to be set once
|
|
{% set server_networks = hostvars[item]['server_networks'] %}
|
|
|
|
{% for key, value in server_networks.items()|sort(attribute='1.iface') %}
|
|
{% if value.iface is defined %}
|
|
auto {{ value.iface }}
|
|
iface {{ value.iface }} inet manual
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% for key, value in server_networks.items()|sort(attribute='1.iface') %}
|
|
auto br-{{ key }}
|
|
iface br-{{ key }} inet {{ value.inet_type }}
|
|
bridge_stp off
|
|
bridge_waitport 10
|
|
bridge_fd 0
|
|
bridge_ports {{ value.iface | default('none') }}
|
|
offload-sg off
|
|
{% if value.address is defined %}
|
|
address {{ value.address }}
|
|
{% endif %}
|
|
|
|
{% endfor %}
|