2013-05-02 14:50:57 -04:00
|
|
|
[metadata]
|
|
|
|
name = ironic
|
|
|
|
summary = OpenStack Bare Metal Provisioning
|
|
|
|
description-file =
|
|
|
|
README.rst
|
|
|
|
author = OpenStack
|
|
|
|
author-email = openstack-dev@lists.openstack.org
|
2016-02-05 18:05:35 +08:00
|
|
|
home-page = http://docs.openstack.org/developer/ironic/
|
2013-05-02 14:50:57 -04:00
|
|
|
classifier =
|
|
|
|
Environment :: OpenStack
|
|
|
|
Intended Audience :: Information Technology
|
|
|
|
Intended Audience :: System Administrators
|
|
|
|
License :: OSI Approved :: Apache Software License
|
|
|
|
Operating System :: POSIX :: Linux
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 2
|
|
|
|
Programming Language :: Python :: 2.7
|
|
|
|
|
|
|
|
[files]
|
|
|
|
packages =
|
|
|
|
ironic
|
2016-02-23 16:47:38 +01:00
|
|
|
ironic_tempest_plugin
|
2013-05-02 14:50:57 -04:00
|
|
|
|
|
|
|
[entry_points]
|
2015-11-19 14:50:38 +08:00
|
|
|
oslo.config.opts =
|
|
|
|
ironic = ironic.conf.opts:list_opts
|
|
|
|
|
2017-04-12 16:13:21 +03:00
|
|
|
oslo.config.opts.defaults =
|
|
|
|
ironic = ironic.conf.opts:update_opt_defaults
|
|
|
|
|
2016-10-03 10:44:08 +03:00
|
|
|
oslo.policy.enforcer =
|
|
|
|
ironic = ironic.common.policy:get_oslo_policy_enforcer
|
|
|
|
|
2016-06-03 15:43:12 -07:00
|
|
|
oslo.policy.policies =
|
|
|
|
ironic.api = ironic.common.policy:list_policies
|
|
|
|
|
2013-05-02 14:50:57 -04:00
|
|
|
console_scripts =
|
2013-05-06 20:07:49 -07:00
|
|
|
ironic-api = ironic.cmd.api:main
|
2013-05-10 11:48:08 -07:00
|
|
|
ironic-dbsync = ironic.cmd.dbsync:main
|
2013-06-22 12:10:21 -07:00
|
|
|
ironic-conductor = ironic.cmd.conductor:main
|
2015-01-31 13:44:28 +08:00
|
|
|
ironic-rootwrap = oslo_rootwrap.cmd:main
|
2013-05-02 14:50:57 -04:00
|
|
|
|
2014-08-05 23:50:56 +00:00
|
|
|
ironic.dhcp =
|
|
|
|
neutron = ironic.dhcp.neutron:NeutronDHCPApi
|
|
|
|
none = ironic.dhcp.none:NoneDHCPApi
|
|
|
|
|
Restructuring driver API and inheritance.
Based on discussions during and after the Ironic team meeting on June
03, regarding support for substantially different driver work flows,
this is a re-working of the internal driver API.
tl;dr: The strict separation of "control" and "deploy" driver was an
artefact of the ipmi + pxe implementation used in nova-baremetal,
and does not map on to all drivers. Furthermore, the prior
implementation did not accurately represent the separation of
"core", "standard", and "vendor-specific" driver functionality.
These changes impact the v1 API structure, but since that is largely not
implemented yet, this change does not attempt to affect the public API
itself.
Highlights:
- No more deploy + control driver; nodes have one and only one driver.
This drops the deploy_driver and deploy_info parameters,
and renames control_driver -> driver, and control_info -> driver_info.
- Interfaces for core, standard, and vendor functionality now clearly
defined in the driver API.
- Improve Fake driver to demonstrate use of interfaces.
- Convert IPMI and SSH driver classes into interfaces, and move to
drivers/modules/ directory.
- Stub for the pxe interfaces.
- Stub implementations of pxe+ipmi and pxe+ssh drivers.
- driver_info field uses more standard names, but requires
driver-specific data to be in a nested object. Examples in
tests/db/utils.py as before.
A separate doc change will follow this to update the API v1 spec.
Also includes some cosmetic cleanup of test_ssh.py and test_ipmi.py.
Change-Id: I057ede8e07b1b57010e81ef58415debe0ba8b934
2013-06-04 12:19:18 -07:00
|
|
|
ironic.drivers =
|
2014-08-08 23:18:59 +05:30
|
|
|
agent_ilo = ironic.drivers.ilo:IloVirtualMediaAgentDriver
|
2017-01-19 16:35:49 +01:00
|
|
|
agent_ipmitool = ironic.drivers.ipmi:AgentAndIPMIToolDriver
|
|
|
|
agent_ipmitool_socat = ironic.drivers.ipmi:AgentAndIPMIToolAndSocatDriver
|
2015-01-17 00:13:24 +09:00
|
|
|
agent_irmc = ironic.drivers.irmc:IRMCVirtualMediaAgentDriver
|
2015-06-15 11:09:32 -03:00
|
|
|
agent_pxe_oneview = ironic.drivers.oneview:AgentPXEOneViewDriver
|
2014-06-18 13:49:59 -07:00
|
|
|
agent_ssh = ironic.drivers.agent:AgentAndSSHDriver
|
2015-02-27 12:47:03 +05:30
|
|
|
agent_ucs = ironic.drivers.agent:AgentAndUcsDriver
|
Restructuring driver API and inheritance.
Based on discussions during and after the Ironic team meeting on June
03, regarding support for substantially different driver work flows,
this is a re-working of the internal driver API.
tl;dr: The strict separation of "control" and "deploy" driver was an
artefact of the ipmi + pxe implementation used in nova-baremetal,
and does not map on to all drivers. Furthermore, the prior
implementation did not accurately represent the separation of
"core", "standard", and "vendor-specific" driver functionality.
These changes impact the v1 API structure, but since that is largely not
implemented yet, this change does not attempt to affect the public API
itself.
Highlights:
- No more deploy + control driver; nodes have one and only one driver.
This drops the deploy_driver and deploy_info parameters,
and renames control_driver -> driver, and control_info -> driver_info.
- Interfaces for core, standard, and vendor functionality now clearly
defined in the driver API.
- Improve Fake driver to demonstrate use of interfaces.
- Convert IPMI and SSH driver classes into interfaces, and move to
drivers/modules/ directory.
- Stub for the pxe interfaces.
- Stub implementations of pxe+ipmi and pxe+ssh drivers.
- driver_info field uses more standard names, but requires
driver-specific data to be in a nested object. Examples in
tests/db/utils.py as before.
A separate doc change will follow this to update the API v1 spec.
Also includes some cosmetic cleanup of test_ssh.py and test_ipmi.py.
Change-Id: I057ede8e07b1b57010e81ef58415debe0ba8b934
2013-06-04 12:19:18 -07:00
|
|
|
fake = ironic.drivers.fake:FakeDriver
|
2015-07-31 00:34:08 +09:00
|
|
|
fake_soft_power = ironic.drivers.fake:FakeSoftPowerDriver
|
2014-06-18 13:49:59 -07:00
|
|
|
fake_agent = ironic.drivers.fake:FakeAgentDriver
|
2015-05-29 16:28:33 +02:00
|
|
|
fake_inspector = ironic.drivers.fake:FakeIPMIToolInspectorDriver
|
2013-09-09 20:52:18 +00:00
|
|
|
fake_ipmitool = ironic.drivers.fake:FakeIPMIToolDriver
|
2016-07-14 11:17:24 +09:00
|
|
|
fake_ipmitool_socat = ironic.drivers.fake:FakeIPMIToolSocatDriver
|
Restructuring driver API and inheritance.
Based on discussions during and after the Ironic team meeting on June
03, regarding support for substantially different driver work flows,
this is a re-working of the internal driver API.
tl;dr: The strict separation of "control" and "deploy" driver was an
artefact of the ipmi + pxe implementation used in nova-baremetal,
and does not map on to all drivers. Furthermore, the prior
implementation did not accurately represent the separation of
"core", "standard", and "vendor-specific" driver functionality.
These changes impact the v1 API structure, but since that is largely not
implemented yet, this change does not attempt to affect the public API
itself.
Highlights:
- No more deploy + control driver; nodes have one and only one driver.
This drops the deploy_driver and deploy_info parameters,
and renames control_driver -> driver, and control_info -> driver_info.
- Interfaces for core, standard, and vendor functionality now clearly
defined in the driver API.
- Improve Fake driver to demonstrate use of interfaces.
- Convert IPMI and SSH driver classes into interfaces, and move to
drivers/modules/ directory.
- Stub for the pxe interfaces.
- Stub implementations of pxe+ipmi and pxe+ssh drivers.
- driver_info field uses more standard names, but requires
driver-specific data to be in a nested object. Examples in
tests/db/utils.py as before.
A separate doc change will follow this to update the API v1 spec.
Also includes some cosmetic cleanup of test_ssh.py and test_ipmi.py.
Change-Id: I057ede8e07b1b57010e81ef58415debe0ba8b934
2013-06-04 12:19:18 -07:00
|
|
|
fake_ssh = ironic.drivers.fake:FakeSSHDriver
|
|
|
|
fake_pxe = ironic.drivers.fake:FakePXEDriver
|
2014-08-11 11:53:59 -07:00
|
|
|
fake_ilo = ironic.drivers.fake:FakeIloDriver
|
2014-06-10 12:28:29 +02:00
|
|
|
fake_drac = ironic.drivers.fake:FakeDracDriver
|
2014-04-16 15:59:08 +01:00
|
|
|
fake_snmp = ironic.drivers.fake:FakeSNMPDriver
|
2014-12-28 03:39:30 +09:00
|
|
|
fake_irmc = ironic.drivers.fake:FakeIRMCDriver
|
2015-02-27 12:47:03 +05:30
|
|
|
fake_ucs = ironic.drivers.fake:FakeUcsDriver
|
2015-09-01 12:32:23 +01:00
|
|
|
fake_cimc = ironic.drivers.fake:FakeCIMCDriver
|
2015-10-12 18:03:10 +01:00
|
|
|
fake_oneview = ironic.drivers.fake:FakeOneViewDriver
|
2014-08-26 00:33:16 +05:30
|
|
|
iscsi_ilo = ironic.drivers.ilo:IloVirtualMediaIscsiDriver
|
2015-01-17 00:13:24 +09:00
|
|
|
iscsi_irmc = ironic.drivers.irmc:IRMCVirtualMediaIscsiDriver
|
2015-06-15 11:09:32 -03:00
|
|
|
iscsi_pxe_oneview = ironic.drivers.oneview:ISCSIPXEOneViewDriver
|
2017-01-19 16:35:49 +01:00
|
|
|
pxe_ipmitool = ironic.drivers.ipmi:PXEAndIPMIToolDriver
|
|
|
|
pxe_ipmitool_socat = ironic.drivers.ipmi:PXEAndIPMIToolAndSocatDriver
|
Restructuring driver API and inheritance.
Based on discussions during and after the Ironic team meeting on June
03, regarding support for substantially different driver work flows,
this is a re-working of the internal driver API.
tl;dr: The strict separation of "control" and "deploy" driver was an
artefact of the ipmi + pxe implementation used in nova-baremetal,
and does not map on to all drivers. Furthermore, the prior
implementation did not accurately represent the separation of
"core", "standard", and "vendor-specific" driver functionality.
These changes impact the v1 API structure, but since that is largely not
implemented yet, this change does not attempt to affect the public API
itself.
Highlights:
- No more deploy + control driver; nodes have one and only one driver.
This drops the deploy_driver and deploy_info parameters,
and renames control_driver -> driver, and control_info -> driver_info.
- Interfaces for core, standard, and vendor functionality now clearly
defined in the driver API.
- Improve Fake driver to demonstrate use of interfaces.
- Convert IPMI and SSH driver classes into interfaces, and move to
drivers/modules/ directory.
- Stub for the pxe interfaces.
- Stub implementations of pxe+ipmi and pxe+ssh drivers.
- driver_info field uses more standard names, but requires
driver-specific data to be in a nested object. Examples in
tests/db/utils.py as before.
A separate doc change will follow this to update the API v1 spec.
Also includes some cosmetic cleanup of test_ssh.py and test_ipmi.py.
Change-Id: I057ede8e07b1b57010e81ef58415debe0ba8b934
2013-06-04 12:19:18 -07:00
|
|
|
pxe_ssh = ironic.drivers.pxe:PXEAndSSHDriver
|
2014-08-11 11:53:59 -07:00
|
|
|
pxe_ilo = ironic.drivers.pxe:PXEAndIloDriver
|
2014-06-10 12:28:29 +02:00
|
|
|
pxe_drac = ironic.drivers.drac:PXEDracDriver
|
2016-07-15 17:02:04 +02:00
|
|
|
pxe_drac_inspector = ironic.drivers.drac:PXEDracInspectorDriver
|
2014-04-16 15:59:08 +01:00
|
|
|
pxe_snmp = ironic.drivers.pxe:PXEAndSNMPDriver
|
2014-12-28 03:39:30 +09:00
|
|
|
pxe_irmc = ironic.drivers.pxe:PXEAndIRMCDriver
|
2015-02-27 12:47:03 +05:30
|
|
|
pxe_ucs = ironic.drivers.pxe:PXEAndUcsDriver
|
2015-09-01 12:32:23 +01:00
|
|
|
pxe_iscsi_cimc = ironic.drivers.pxe:PXEAndCIMCDriver
|
|
|
|
pxe_agent_cimc = ironic.drivers.agent:AgentAndCIMCDriver
|
2013-05-21 18:32:13 -07:00
|
|
|
|
2016-07-01 17:52:11 +02:00
|
|
|
ironic.hardware.interfaces.boot =
|
|
|
|
fake = ironic.drivers.modules.fake:FakeBoot
|
2017-02-22 19:27:28 -08:00
|
|
|
ilo-pxe = ironic.drivers.modules.ilo.boot:IloPXEBoot
|
|
|
|
ilo-virtual-media = ironic.drivers.modules.ilo.boot:IloVirtualMediaBoot
|
2017-01-04 09:22:30 +07:00
|
|
|
irmc-pxe = ironic.drivers.modules.irmc.boot:IRMCPXEBoot
|
2017-01-26 17:02:40 +07:00
|
|
|
irmc-virtual-media = ironic.drivers.modules.irmc.boot:IRMCVirtualMediaBoot
|
2017-02-22 19:27:28 -08:00
|
|
|
pxe = ironic.drivers.modules.pxe:PXEBoot
|
2016-07-01 17:52:11 +02:00
|
|
|
|
2016-11-04 17:43:17 +01:00
|
|
|
ironic.hardware.interfaces.console =
|
2016-07-01 17:52:11 +02:00
|
|
|
fake = ironic.drivers.modules.fake:FakeConsole
|
2017-02-22 19:27:28 -08:00
|
|
|
ilo = ironic.drivers.modules.ilo.console:IloConsoleInterface
|
2017-01-19 16:35:49 +01:00
|
|
|
ipmitool-shellinabox = ironic.drivers.modules.ipmitool:IPMIShellinaboxConsole
|
|
|
|
ipmitool-socat = ironic.drivers.modules.ipmitool:IPMISocatConsole
|
2016-11-04 17:43:17 +01:00
|
|
|
no-console = ironic.drivers.modules.noop:NoConsole
|
|
|
|
|
2016-07-01 17:52:11 +02:00
|
|
|
ironic.hardware.interfaces.deploy =
|
2016-11-22 11:19:26 +01:00
|
|
|
direct = ironic.drivers.modules.agent:AgentDeploy
|
2016-07-01 17:52:11 +02:00
|
|
|
fake = ironic.drivers.modules.fake:FakeDeploy
|
2017-02-22 19:27:28 -08:00
|
|
|
iscsi = ironic.drivers.modules.iscsi_deploy:ISCSIDeploy
|
2016-07-01 17:52:11 +02:00
|
|
|
|
2016-11-04 17:43:17 +01:00
|
|
|
ironic.hardware.interfaces.inspect =
|
2016-07-01 17:52:11 +02:00
|
|
|
fake = ironic.drivers.modules.fake:FakeInspect
|
2017-02-22 19:27:28 -08:00
|
|
|
ilo = ironic.drivers.modules.ilo.inspect:IloInspect
|
2016-11-22 11:19:26 +01:00
|
|
|
inspector = ironic.drivers.modules.inspector:Inspector
|
2017-01-26 17:02:40 +07:00
|
|
|
irmc = ironic.drivers.modules.irmc.inspect:IRMCInspect
|
2017-02-22 19:27:28 -08:00
|
|
|
no-inspect = ironic.drivers.modules.noop:NoInspect
|
2016-11-04 17:43:17 +01:00
|
|
|
|
2016-07-01 17:52:11 +02:00
|
|
|
ironic.hardware.interfaces.management =
|
|
|
|
fake = ironic.drivers.modules.fake:FakeManagement
|
2017-02-22 19:27:28 -08:00
|
|
|
ilo = ironic.drivers.modules.ilo.management:IloManagement
|
2017-01-19 16:35:49 +01:00
|
|
|
ipmitool = ironic.drivers.modules.ipmitool:IPMIManagement
|
2017-01-26 17:02:40 +07:00
|
|
|
irmc = ironic.drivers.modules.irmc.management:IRMCManagement
|
2017-02-27 17:03:28 +00:00
|
|
|
redfish = ironic.drivers.modules.redfish.management:RedfishManagement
|
2016-07-01 17:52:11 +02:00
|
|
|
|
2016-05-17 13:59:39 +03:00
|
|
|
ironic.hardware.interfaces.network =
|
|
|
|
flat = ironic.drivers.modules.network.flat:FlatNetwork
|
2016-05-17 14:00:00 +03:00
|
|
|
neutron = ironic.drivers.modules.network.neutron:NeutronNetwork
|
2017-02-22 19:27:28 -08:00
|
|
|
noop = ironic.drivers.modules.network.noop:NoopNetwork
|
2016-05-17 13:59:39 +03:00
|
|
|
|
2016-07-01 17:52:11 +02:00
|
|
|
ironic.hardware.interfaces.power =
|
|
|
|
fake = ironic.drivers.modules.fake:FakePower
|
2017-02-22 19:27:28 -08:00
|
|
|
ilo = ironic.drivers.modules.ilo.power:IloPower
|
2017-01-19 16:35:49 +01:00
|
|
|
ipmitool = ironic.drivers.modules.ipmitool:IPMIPower
|
2017-01-26 17:02:40 +07:00
|
|
|
irmc = ironic.drivers.modules.irmc.power:IRMCPower
|
2017-02-27 17:03:28 +00:00
|
|
|
redfish = ironic.drivers.modules.redfish.power:RedfishPower
|
2016-07-01 17:52:11 +02:00
|
|
|
|
2016-11-04 17:43:17 +01:00
|
|
|
ironic.hardware.interfaces.raid =
|
2016-11-22 11:19:26 +01:00
|
|
|
agent = ironic.drivers.modules.agent:AgentRAID
|
2016-07-01 17:52:11 +02:00
|
|
|
fake = ironic.drivers.modules.fake:FakeRAID
|
2016-11-04 17:43:17 +01:00
|
|
|
no-raid = ironic.drivers.modules.noop:NoRAID
|
|
|
|
|
|
|
|
ironic.hardware.interfaces.rescue =
|
|
|
|
no-rescue = ironic.drivers.modules.noop:NoRescue
|
|
|
|
|
2016-07-27 14:50:51 -04:00
|
|
|
ironic.hardware.interfaces.storage =
|
|
|
|
fake = ironic.drivers.modules.fake:FakeStorage
|
|
|
|
noop = ironic.drivers.modules.storage.noop:NoopStorage
|
2017-04-19 13:26:22 -04:00
|
|
|
cinder = ironic.drivers.modules.storage.cinder:CinderStorage
|
2016-07-27 14:50:51 -04:00
|
|
|
|
2016-11-04 17:43:17 +01:00
|
|
|
ironic.hardware.interfaces.vendor =
|
2016-07-01 17:52:11 +02:00
|
|
|
fake = ironic.drivers.modules.fake:FakeVendorB
|
2017-05-19 13:24:46 +02:00
|
|
|
ipmitool = ironic.drivers.modules.ipmitool:VendorPassthru
|
2016-11-04 17:43:17 +01:00
|
|
|
no-vendor = ironic.drivers.modules.noop:NoVendor
|
|
|
|
|
2016-07-01 17:52:11 +02:00
|
|
|
ironic.hardware.types =
|
|
|
|
fake-hardware = ironic.drivers.fake_hardware:FakeHardware
|
2017-02-22 19:27:28 -08:00
|
|
|
ilo = ironic.drivers.ilo:IloHardware
|
2017-01-19 16:35:49 +01:00
|
|
|
ipmi = ironic.drivers.ipmi:IPMIHardware
|
2017-01-26 17:02:40 +07:00
|
|
|
irmc = ironic.drivers.irmc:IRMCHardware
|
2017-02-22 19:27:28 -08:00
|
|
|
manual-management = ironic.drivers.generic:ManualManagementHardware
|
2017-02-27 17:03:28 +00:00
|
|
|
redfish = ironic.drivers.redfish:RedfishHardware
|
2016-07-01 17:52:11 +02:00
|
|
|
|
2014-09-30 17:01:04 +02:00
|
|
|
ironic.database.migration_backend =
|
|
|
|
sqlalchemy = ironic.db.sqlalchemy.migration
|
|
|
|
|
2015-11-17 14:12:53 +09:00
|
|
|
tempest.test_plugins =
|
|
|
|
ironic_tests = ironic_tempest_plugin.plugin:IronicTempestPlugin
|
|
|
|
|
2013-05-25 08:03:45 +02:00
|
|
|
[pbr]
|
|
|
|
autodoc_index_modules = True
|
2015-08-07 10:27:49 -07:00
|
|
|
autodoc_exclude_modules =
|
|
|
|
ironic.db.sqlalchemy.alembic.env
|
|
|
|
ironic.db.sqlalchemy.alembic.versions.*
|
2016-08-04 17:59:38 +03:00
|
|
|
ironic_tempest_plugin.*
|
2017-07-03 16:34:42 +01:00
|
|
|
api_doc_dir = contributor/api
|
2013-05-25 08:03:45 +02:00
|
|
|
|
2013-05-02 14:50:57 -04:00
|
|
|
[build_sphinx]
|
|
|
|
all_files = 1
|
|
|
|
build-dir = doc/build
|
|
|
|
source-dir = doc/source
|
2017-03-04 19:11:26 +01:00
|
|
|
warning-is-error = 1
|
2013-05-02 14:50:57 -04:00
|
|
|
|
|
|
|
[egg_info]
|
2014-01-13 18:10:24 +00:00
|
|
|
tag_build =
|
2013-05-02 14:50:57 -04:00
|
|
|
tag_date = 0
|
|
|
|
tag_svn_revision = 0
|
|
|
|
|
|
|
|
[compile_catalog]
|
|
|
|
directory = ironic/locale
|
|
|
|
domain = ironic
|
|
|
|
|
|
|
|
[update_catalog]
|
|
|
|
domain = ironic
|
|
|
|
output_dir = ironic/locale
|
|
|
|
input_file = ironic/locale/ironic.pot
|
|
|
|
|
|
|
|
[extract_messages]
|
|
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
|
|
mapping_file = babel.cfg
|
2013-05-02 15:55:48 -04:00
|
|
|
output_file = ironic/locale/ironic.pot
|
2013-11-19 09:56:09 +01:00
|
|
|
|
|
|
|
[wheel]
|
|
|
|
universal = 1
|