In the doc-migration, warning-is-error was never enabled for python-ironicclient. As such, I've enabled it and corrected the various document errors. Change-Id: I2d1b95fba25dba5d59da3f4b09b9974ff5196940
2.2 KiB
OpenStack Client Command-Line Interface (CLI)
openstack baremetal
Synopsis
openstack [options] baremetal <command>
[command-options]
openstack help baremetal <command>
Description
The OpenStack Client plugin interacts with the Bare Metal service
through the openstack baremetal command line interface
(CLI).
To use openstack CLI, the OpenStackClient should be
installed:
# pip install python-openstackclientTo use the CLI, you must provide your OpenStack username, password,
project, and auth endpoint. You can use configuration options
--os-username, --os-password,
--os-project-id (or --os-project-name), and
--os-auth-url, or set the corresponding environment
variables:
$ export OS_USERNAME=user
$ export OS_PASSWORD=password
$ export OS_PROJECT_NAME=project # or OS_PROJECT_ID
$ export OS_PROJECT_DOMAIN_ID=default
$ export OS_USER_DOMAIN_ID=default
$ export OS_IDENTITY_API_VERSION=3
$ export OS_AUTH_URL=http://auth.example.com:5000/identityThis CLI is provided by python-openstackclient and osc-lib projects:
- https://git.openstack.org/openstack/python-openstackclient
- https://git.openstack.org/openstack/osc-lib
Getting help
To get a list of available (sub)commands and options, run:
$ openstack help baremetalTo get usage and options of a command, run:
$ openstack help baremetal <sub-command>Examples
Get information about the openstack baremetal node create command:
$ openstack help baremetal node createGet a list of available drivers:
$ openstack baremetal driver listEnroll a node with "agent_ipmitool" driver:
$ openstack baremetal node create --driver agent_ipmitool --driver-info ipmi_address=1.2.3.4Get a list of nodes:
$ openstack baremetal node listThe baremetal API version can be specified via:
environment variable OS_BAREMETAL_API_VERSION:
$ export OS_BAREMETAL_API_VERSION=1.25or optional command line argument --os-baremetal-api-version:
$ openstack baremetal port group list --os-baremetal-api-version 1.25