A python client implementing the Ironic API.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Zuul dd8e146a4c Merge "Add support for node inventory" 2 days ago
doc remove unicode from code 10 months ago
ironicclient Merge "Add support for node inventory" 2 days ago
playbooks/functional Fix missing tox in functional devstack-minimal based job 3 years ago
releasenotes Add support for node inventory 4 days ago
tools Remove unused check_python_version 11 months ago
zuul.d Add Python3 antelope unit tests 9 months ago
.coveragerc Fix coverage target 7 years ago
.gitignore Drop python 2.7 support and testing 4 years ago
.gitreview OpenDev Migration Patch 4 years ago
.stestr.conf Replace testr with stestr 6 years ago
CONTRIBUTING.rst Update the documentation link for doc migration 6 years ago
LICENSE Add initial files 10 years ago
README.rst Add PyPi link to readme.rst 2 years ago
bindep.txt Fix for missing fonts in PDF jobs 2 years ago
requirements.txt Drop lower-constraints.txt and its testing 1 year ago
setup.cfg Add support for node inventory 4 days ago
setup.py Cleanup py27 support 3 years ago
test-requirements.txt Move pep8 dependencies from test-requirements to tox.ini 2 years ago
tox.ini Update dependencies for pep8: to hacking v6 2 months ago

README.rst

Python bindings for the Ironic API

Team and repository tags

image

Overview

This is a client for the OpenStack Bare Metal API. It provides:

  • a Python API: the ironicclient module, and
  • a command-line interfaces: openstack baremetal

Development takes place via the usual OpenStack processes as outlined in the developer guide. The master repository is on opendev.org.

python-ironicclient is licensed under the Apache License, Version 2.0, like the rest of OpenStack.

Contents:

Project resources

Python API

Quick-start Example:

>>> from ironicclient import client
>>>
>>> kwargs = {'os_auth_token': '3bcc3d3a03f44e3d8377f9247b0ad155',
>>>           'ironic_url': 'http://ironic.example.org:6385/'}
>>> ironic = client.get_client(1, **kwargs)

openstack baremetal CLI

The openstack baremetal command line interface is available when the bare metal plugin (included in this package) is used with the OpenStackClient.

There are two ways to install the OpenStackClient (python-openstackclient) package:

  • along with this python-ironicclient package:

    # pip install python-ironicclient[cli]
  • directly:

    # pip install python-openstackclient

An example of creating a basic node with the ipmi driver:

$ openstack baremetal node create --driver ipmi

An example of creating a port on a node:

$ openstack baremetal port create --node <UUID> AA:BB:CC:DD:EE:FF

An example of updating driver properties for a node:

$ openstack baremetal node set --driver-info ipmi_address=<IPaddress> <UUID or name>

For more information about the openstack baremetal command and the subcommands available, run:

$ openstack help baremetal