The ironic.drivers.modules.inspector Module

Modules required to work with ironic_inspector:
https://pypi.python.org/pypi/ironic-inspector
class ironic.drivers.modules.inspector.Inspector[source]

Bases: ironic.drivers.base.InspectInterface

In-band inspection via ironic-inspector project.

classmethod create_if_enabled(driver_name)[source]

Create instance of Inspector if it’s enabled.

Reports log warning with given driver_name if it’s not.

Returns:Inspector instance or None
get_properties()[source]

Return the properties of the interface.

Returns:dictionary of <property name>:<property description> entries.
inspect_hardware(task)[source]

Inspect hardware to obtain the hardware properties.

This particular implementation only starts inspection using ironic-inspector. Results will be checked in a periodic task.

Parameters:task – a task from TaskManager.
Returns:states.INSPECTING
validate(task)[source]

Validate the driver-specific inspection information.

If invalid, raises an exception; otherwise returns None.

Parameters:task – a task from TaskManager.

Project Source

This Page