2013-05-02 14:50:57 -04:00
|
|
|
[metadata]
|
|
|
|
name = ironic
|
2014-04-01 08:27:33 -07:00
|
|
|
version = 2014.2
|
2013-05-02 14:50:57 -04:00
|
|
|
summary = OpenStack Bare Metal Provisioning
|
|
|
|
description-file =
|
|
|
|
README.rst
|
|
|
|
author = OpenStack
|
|
|
|
author-email = openstack-dev@lists.openstack.org
|
|
|
|
home-page = http://www.openstack.org/
|
|
|
|
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
|
|
|
|
Programming Language :: Python :: 2.6
|
|
|
|
|
|
|
|
[files]
|
|
|
|
packages =
|
|
|
|
ironic
|
|
|
|
|
|
|
|
[entry_points]
|
|
|
|
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
|
2014-01-13 18:10:24 +00:00
|
|
|
ironic-rootwrap = oslo.rootwrap.cmd:main
|
2014-08-06 22:16:03 +03:00
|
|
|
ironic-nova-bm-migrate = ironic.migrate_nova.migrate_db: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-06-18 13:49:59 -07:00
|
|
|
agent_ipmitool = ironic.drivers.agent:AgentAndIPMIToolDriver
|
|
|
|
agent_pyghmi = ironic.drivers.agent:AgentAndIPMINativeDriver
|
|
|
|
agent_ssh = ironic.drivers.agent:AgentAndSSHDriver
|
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
|
2014-06-18 13:49:59 -07:00
|
|
|
fake_agent = ironic.drivers.fake:FakeAgentDriver
|
2013-09-09 20:52:18 +00:00
|
|
|
fake_ipmitool = ironic.drivers.fake:FakeIPMIToolDriver
|
2013-09-17 19:45:35 +00:00
|
|
|
fake_ipminative = ironic.drivers.fake:FakeIPMINativeDriver
|
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-01-17 14:25:02 -08:00
|
|
|
fake_seamicro = ironic.drivers.fake:FakeSeaMicroDriver
|
2013-10-10 17:20:02 +01:00
|
|
|
fake_iboot = ironic.drivers.fake:FakeIBootDriver
|
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
|
2013-09-09 20:52:18 +00:00
|
|
|
pxe_ipmitool = ironic.drivers.pxe:PXEAndIPMIToolDriver
|
2013-09-17 19:45:35 +00:00
|
|
|
pxe_ipminative = ironic.drivers.pxe:PXEAndIPMINativeDriver
|
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-01-17 14:25:02 -08:00
|
|
|
pxe_seamicro = ironic.drivers.pxe:PXEAndSeaMicroDriver
|
2013-10-10 17:20:02 +01:00
|
|
|
pxe_iboot = ironic.drivers.pxe:PXEAndIBootDriver
|
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
|
2013-05-21 18:32:13 -07:00
|
|
|
|
2013-05-25 08:03:45 +02:00
|
|
|
[pbr]
|
|
|
|
autodoc_index_modules = True
|
|
|
|
|
2013-05-02 14:50:57 -04:00
|
|
|
[build_sphinx]
|
|
|
|
all_files = 1
|
|
|
|
build-dir = doc/build
|
|
|
|
source-dir = doc/source
|
|
|
|
|
|
|
|
[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
|