64272cf1f1
There's no good reason to provide our own defaults for Ironic driver and interface configuration. It easily gets out of sync with changes in Ironic. Let's remove our defaults, and let Ironic provide them. Note that this changes several of the defaults, which are listed in the release note. Users are still able to override them using the existing variables in ironic.yml. Change-Id: Ie27adca0029e41439720eaac49b24cf13fc8068d
131 lines
4.5 KiB
Plaintext
131 lines
4.5 KiB
Plaintext
---
|
|
###############################################################################
|
|
# Ironic configuration.
|
|
|
|
# Specify the list of hardware types to load during service initialization.
|
|
kolla_ironic_enabled_hardware_types:
|
|
|
|
# Specify the list of bios interfaces to load during service initialization.
|
|
kolla_ironic_enabled_bios_interfaces:
|
|
|
|
# Default bios interface to be used for nodes that do not have bios_interface
|
|
# field set.
|
|
kolla_ironic_default_bios_interface:
|
|
|
|
# Specify the list of boot interfaces to load during service initialization.
|
|
kolla_ironic_enabled_boot_interfaces:
|
|
|
|
# Default boot interface to be used for nodes that do not have boot_interface
|
|
# field set.
|
|
kolla_ironic_default_boot_interface:
|
|
|
|
# Specify the list of console interfaces to load during service initialization.
|
|
kolla_ironic_enabled_console_interfaces:
|
|
|
|
# Default console interface to be used for nodes that do not have
|
|
# console_interface field set.
|
|
kolla_ironic_default_console_interface:
|
|
|
|
# Specify the list of deploy interfaces to load during service initialization.
|
|
kolla_ironic_enabled_deploy_interfaces:
|
|
|
|
# Default deploy interface to be used for nodes that do not have
|
|
# deploy_interface field set.
|
|
kolla_ironic_default_deploy_interface:
|
|
|
|
# Specify the list of inspect interfaces to load during service initialization.
|
|
kolla_ironic_enabled_inspect_interfaces:
|
|
|
|
# Default inspect interface to be used for nodes that do not have
|
|
# inspect_interface field set.
|
|
kolla_ironic_default_inspect_interface:
|
|
|
|
# Specify the list of management interfaces to load during service
|
|
# initialization.
|
|
kolla_ironic_enabled_management_interfaces:
|
|
|
|
# Default management interface to be used for nodes that do not have
|
|
# management_interface field set.
|
|
kolla_ironic_default_management_interface:
|
|
|
|
# Specify the list of network interfaces to load during service initialization.
|
|
kolla_ironic_enabled_network_interfaces:
|
|
|
|
# Default network interface to be used for nodes that do not have
|
|
# network_interface field set.
|
|
kolla_ironic_default_network_interface:
|
|
|
|
# Specify the list of power interfaces to load during service initialization.
|
|
kolla_ironic_enabled_power_interfaces:
|
|
|
|
# Default power interface to be used for nodes that do not have power_interface
|
|
# field set.
|
|
kolla_ironic_default_power_interface:
|
|
|
|
# Specify the list of raid interfaces to load during service initialization.
|
|
kolla_ironic_enabled_raid_interfaces:
|
|
|
|
# Default raid interface to be used for nodes that do not have
|
|
# raid_interface field set.
|
|
kolla_ironic_default_raid_interface:
|
|
|
|
# Specify the list of rescue interfaces to load during service initialization.
|
|
kolla_ironic_enabled_rescue_interfaces:
|
|
|
|
# Default rescue interface to be used for nodes that do not have
|
|
# rescue_interface field set.
|
|
kolla_ironic_default_rescue_interface:
|
|
|
|
# Specify the list of storage interfaces to load during
|
|
# service initialization.
|
|
kolla_ironic_enabled_storage_interfaces:
|
|
|
|
# Default storage interface to be used for nodes that do not
|
|
# have storage_interface field set.
|
|
kolla_ironic_default_storage_interface:
|
|
|
|
# Specify the list of vendor interfaces to load during service initialization.
|
|
kolla_ironic_enabled_vendor_interfaces:
|
|
|
|
# Default vendor interface to be used for nodes that do not have
|
|
# vendor_interface field set.
|
|
kolla_ironic_default_vendor_interface:
|
|
|
|
# Name of the Neutron network to use for cleaning.
|
|
kolla_ironic_cleaning_network: "{{ kolla_ironic_provisioning_network if cleaning_net_name == provision_wl_net_name else 'cleaning-net' }}"
|
|
|
|
# Name of the Neutron network to use for provisioning.
|
|
kolla_ironic_provisioning_network: 'provision-net'
|
|
|
|
# List of default kernel parameters to append for baremetal PXE boot.
|
|
kolla_ironic_pxe_append_params_default:
|
|
- nofb
|
|
- nomodeset
|
|
- vga=normal
|
|
- console=tty0
|
|
- console=ttyS0,115200n8
|
|
|
|
# List of additional kernel parameters to append for baremetal PXE boot.
|
|
kolla_ironic_pxe_append_params_extra: []
|
|
|
|
# List of kernel parameters to append for baremetal PXE boot.
|
|
kolla_ironic_pxe_append_params: >
|
|
{{ kolla_ironic_pxe_append_params_default +
|
|
kolla_ironic_pxe_append_params_extra }}
|
|
|
|
###############################################################################
|
|
# Ironic Node Configuration
|
|
|
|
# Whether or not to enable the serial consoles on post configure
|
|
ironic_serial_console_autoenable: false
|
|
|
|
# This defines the start of the range of TCP ports to used for the IPMI socat
|
|
# serial consoles
|
|
ironic_serial_console_tcp_pool_start: 30000
|
|
|
|
# This defines the end of the range of TCP ports to used for the IPMI socat
|
|
# serial consoles
|
|
ironic_serial_console_tcp_pool_end: 31000
|
|
|
|
###############################################################################
|