5a28c1790d
Change-Id: Id35cfe2ed3fa6a48d41efb29c3dab9e78bc7d051 |
||
---|---|---|
ironic_discoverd | ||
.gitignore | ||
.gitreview | ||
example.conf | ||
ironic-discoverd.8 | ||
LICENSE | ||
MANIFEST.in | ||
README.rst | ||
requirements.txt | ||
setup.py | ||
tox.ini |
Hardware properties discovery for OpenStack Ironic
This is an auxiliary service for discovering basic hardware properties for a node managed by OpenStack Ironic. Hardware introspection or hardware properties discovery is a process of getting hardware parameters required for scheduling from a bare metal node, given it's power management credentials (e.g. IPMI address, user name and password).
Support for ironic-discoverd is present in Tuskar UI -- OpenStack Horizon plugin for installation of OpenStack using OpenStack technologies (TripleO).
Hardware properties discovery flow using Tuskar UI is the following:
- User installs undercloud using e.g. instack-undercloud and logs into Tuskar UI.
- User uploads CSV file with power credentials for all nodes.
- Tuskar UI:
- creates nodes in Ironic with power credentials populated,
- sets maintenance mode for these nodes,
- posts node UUID's to ironic-discoverd.
- On receiving node UUID's ironic-discoverd:
- validates the nodes: their power credentials and current power state,
- allows access to PXE boot service for the nodes,
- issues reboot command for the nodes, so that they boot the discovery ramdisk.
- Discovery ramdisk collects the required information and posts it back to ironic-discoverd.
- On receiving data from the discovery ramdisk,
ironic-discoverd:
- validates received data,
- finds the node in Ironic database using it's BMC address (MAC address in case of SSH driver),
- fills missing node properties with received data and creates missing ports,
- sets
newly_discovered
flag in nodeextra
field totrue
.
Starting dnsmasq and configuring PXE boot environment is not part of this package and should be done separately.
ironic-discoverd requires OpenStack Juno (2014.2) release or newer.
Please use launchpad to report bugs and ask questions. Use PyPI for downloads and accessing the released version of this README.
Source code is hosted on StackForge, please follow Gerrit Workflow for contributing.
Installation
ironic-discoverd is available as an RPM from Fedora 22 repositories or from Juno RDO for Fedora 20, 21 and EPEL 7. It will be installed and preconfigured if you used instack-undercloud to build your undercloud. Otherwise after enabling required repositories install it using:
yum install openstack-ironic-discoverd
and proceed with Configuration.
Alternatively, you can install package from PyPI (you may want to use virtualenv to isolate your environment):
pip install ironic-discoverd
Configuration
Copy example.conf
to some permanent place
(/etc/ironic-discoverd/discoverd.conf
is what is used in
the RPM). Fill in at least configuration values with names starting with
os_. They configure how ironic-discoverd authenticates
with Keystone.
Note
Configuration file contains a password and thus should be owned by
root
and should have access rights like 0600.
As for PXE boot environment, you need:
TFTP server running and accessible.
Build and put into your TFTP directory kernel and ramdisk from the diskimage-builder discovery-ironic element. You can also use kernel and ramdisk prepared for Instack.
You need PXE boot server (e.g. dnsmasq) running on the same machine as ironic-discoverd. Don't do any firewall configuration: ironic-discoverd will handle it for you. In ironic-discoverd configuration file set
dnsmasq_interface
to the interface your PXE boot server listens on.Configure your
$TFTPROOT/pxelinux.cfg/default
with something like:default discover label discover kernel discovery.kernel append initrd=discovery.ramdisk ironic_callback_url=http://{IP}:5050/v1/continue ipappend 3
Replace
{IP}
with IP of the machine (do not use loopback interface, it will be accessed by ramdisk on a booting machine).
Use ironic-discoverd element as an example for this configuration.
Running
If you installed ironic-discoverd from the RPM, you already have a systemd unit, so you can:
systemctl enable openstack-ironic-discoverd
systemctl start openstack-ironic-discoverd
Otherwise run as root
:
ironic-discoverd /etc/ironic-discoverd/discoverd.conf
ironic-discoverd has a simple client library bundled within
it. It provides function ironic_discoverd.client.discover
,
accepting list of UUID's, base_url
--- optional
ironic-discoverd service URL and auth_token
---
optional Keystone token.
You can also use it from CLI:
python -m ironic_discoverd.client --auth-token TOKEN UUID1 UUID2
Developing
First of all, install tox utility. It's likely to be in your
distribution repositories under name of python-tox
.
Alternatively, you can install it from PyPI.
Next checkout and create environments:
git clone https://github.com/stackforge/ironic-discoverd.git
cd ironic-discoverd
tox
Repeat tox command each time you need to run tests. If you
don't have Python interpreter of one of supported versions (currently
2.7 and 3.3), use -e
flag to select only some environments,
e.g.
tox -e py27
Note
Support for Python 3 is highly experimental, stay with Python 2 for the production environment for now.
Run like:
.tox/py27/bin/ironic-discoverd example.conf
Of course you may have to modify example.conf
to match
your OpenStack environment.
Follow Gerrit Workflow to submit a patch.
API
By default ironic-discoverd listens on
0.0.0.0:5050
, this can be changed in configuration.
Protocol is JSON over HTTP;
HTTP API consist of 2 endpoints:
POST /v1/discover
initiate hardware discovery. Request body: JSON - list of UUID's of nodes to discover. All power management configuration for these nodes needs to be done prior to calling the endpoint. Requires X-Auth-Token header with Keystone token for authentication.Nodes will be put into maintenance mode during discovery. It's up to caller to put them back into use after discovery is done.
Note
Before version 0.2.0 this endpoint was not authenticated. Now it is, but check for admin role is not implemented yet - see bug #1391866.
Response:
- 202 - accepted discovery request
- 400 - bad request
- 404 - node cannot be found
POST /v1/continue
internal endpoint for the discovery ramdisk to post back discovered data. Should not be used for anything other than implementing the ramdisk. Request body: JSON dictionary with keys:cpus
number of CPUcpu_arch
architecture of the CPUmemory_mb
RAM in MiBlocal_gb
hard drive size in GiBinterfaces
dictionary filled with data from all NIC's, keys being interface names, values being dictionaries with keys:mac
MAC addressip
IP address
Response: always HTTP 202.
Change Log
v0.2.3
- Moved to StackForge and LaunchPad.
v0.2.2
/v1/discover
now does some sync sanity checks.- On each start-up make several attempts to check that Ironic is available.
- Now we try a bit harder to recover firewall state on every step.
discovery_timestamp
is added to node extra on starting discovery (part of future fix for bug #1391871).- Actually able to start under Python 3.3 (still very experimental).
- Updated unit tests and this documentation.
v0.2.1
- Expect
interfaces
instead ofmacs
in post-back from the ramdisk. - If
interfaces
is present, only add ports for NIC's with IP address set. - Now MAC's are white-listed for all drivers, not only SSH; option
ssh_driver_regex
was dropped. - Nodes will be always put into maintenance mode before discovery.
v0.2.0
- Authentication via Keystone.
- Simple client in
ironic_discoverd.client
. - Switch to setuptools entry points.
- Switch to tox.
- Periodic firewall update is now configurable.
- SSH driver regex is now configurable.
- Supported on Python 3.3.
- Enhanced documentation.
v0.1.1
- Added simple man page.
- Make interface configurable.
v0.1.0
- First stable release.