-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
for ironic-inspector to work with neutron, the following need to be set: enabled_inspect_interfaces must contain `inspector` each node must have its inspect interface set to `inspector` by running `openstack baremetal node set --reset-inspect-interface --inspect-interface inspector` OR, if `default_inspect_interface` is set to `inspector`, new nodes will have their interface set to this automatically, as well as when `--reset-inspect-interface` is called. Finally, inspection_network MUST be set, or ironic will return a cryptic error message about how "driver IPMI does not support managed inspection".
- Loading branch information
1 parent
d14a87d
commit c6a82e3
Showing
4 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[processing] | ||
|
||
# Which MAC addresses to add as ports during introspection. Possible | ||
# values: all (all MAC addresses), active (MAC addresses of NIC with | ||
# IP addresses), pxe (only MAC address of NIC node PXE booted from, | ||
# falls back to "active" if PXE MAC is not supplied by the ramdisk). | ||
add_ports = all | ||
|
||
# Which ports (already present on a node) to keep after introspection. | ||
# Possible values: all (do not delete anything), present (keep ports | ||
# which MACs were present in introspection data), added (keep only | ||
# MACs that we added during introspection). (string value) | ||
keep_ports = present | ||
|
||
# Whether to overwrite existing values in node database. Disable this | ||
# option to make introspection a non-destructive operation. (boolean | ||
# value) | ||
overwrite_existing = False | ||
|
||
# Whether to update the pxe_enabled value according to the | ||
# introspection data. This option has no effect if | ||
# [processing]overwrite_existing is set to False (boolean value) | ||
#update_pxe_enabled = true | ||
|
||
# The storage backend for storing introspection data. Possible values | ||
# are: 'none', 'database' and 'swift'. If set to 'none', introspection | ||
# data will not be stored. (string value) | ||
store_data = database |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters