python-moganclient Documentation Release

OpenStack Foundation

Sep 14, 2017

Contents

1 Installation 3

2 python-moganclient Contributor Documentation5 2.1 Contributing to python-moganclient...... 5 2.2 Testing...... 6

3 python-moganclient User Documentation7 3.1 OpenStack Client Command-Line Interface (CLI)...... 7

4 Indices and tables 21

i ii python-moganclient Documentation, Release

This is a client for OpenStack Mogan API. There’s a Python API (the moganclient modules), and a set of event related commands which are integrated with the OSC CLI tool. Each implements the entire Mogan API. Contents:

Contents 1 python-moganclient Documentation, Release

2 Contents CHAPTER 1

Installation

At the command line:

$ pip install python-moganclient

Or, if you have virtualenvwrapper installed:

$ mkvirtualenv python-moganclient $ pip install python-moganclient

3 python-moganclient Documentation, Release

4 Chapter 1. Installation CHAPTER 2

python-moganclient Contributor Documentation

2.1 Contributing to python-moganclient

If you’re interested in contributing to the python-moganclient project, the following will help get you started.

2.1.1 #openstack-mogan on Freenode IRC Network

There is a very active chat channel at irc://freenode.net/#openstack-mogan. This is usually the best place to ask questions and find your way around. IRC stands for Internet Relay Chat and it is a way to chat online in real time. You can ask a question and come back later to read the answer in the log files. Logs for the #openstack-mogan IRC channel are stored at http://eavesdrop.openstack.org/irclogs/%23openstack-mogan/.

2.1.2 Contributor License Agreement

In order to contribute to the python-moganclient project, you need to have signed OpenStack’s contributor’s agreement. See also: • https://docs.openstack.org/infra/manual/developers.html • https://wiki.openstack.org/wiki/CLA

2.1.3 LaunchPad Project

Most of the tools used for OpenStack depend on a launchpad.net ID for authentication. After signing up for a launch- pad account, join the “openstack” team to have access to the mailing list and receive notifications of important events. See also: • https://launchpad.net • https://launchpad.net/python-moganclient

5 python-moganclient Documentation, Release

• https://launchpad.net/~openstack

2.1.4 Project Hosting Details

Bug tracker https://launchpad.net/python-moganclient Mailing list (prefix subjects with [mogan] for faster responses) http://lists.openstack.org/cgi-bin/mailman/ listinfo/openstack-dev Code Hosting https://git.openstack.org/cgit/openstack/python-moganclient Code Review https://review.openstack.org/#/q/status:open+project:openstack/python-moganclient,n,z

2.2 Testing

2.2.1 Python Guideline Enforcement

All code has to pass the pep8 style guideline to merge into OpenStack, to validate the code against these guidelines you can run:

$ tox -e pep8

2.2.2 Unit Testing

It is strongly encouraged to run the unit tests locally under one or more test environments prior to submitting a patch. To run all the recommended environments sequentially and pep8 style guideline run:

$ tox

You can also selectively pick specific test environments by listing your chosen environments after a -e flag:

$ tox -e py35,py27,pep8,pypy

Note: Tox sets up virtual environment and installs all necessary dependencies. Sharing the environment with devstack testing is not recommended due to conflicting configuration with system dependencies.

6 Chapter 2. python-moganclient Contributor Documentation CHAPTER 3

python-moganclient User Documentation

3.1 OpenStack Client Command-Line Interface (CLI)

3.1.1 Synopsis

openstack [options] baremetalcompute [command-options] openstack help baremetalcompute

3.1.2 Description

The OpenStack Client plugin interacts with the Bare Metal service through the openstack baremetalcompute command line interface (CLI). To use openstack CLI, the OpenStackClient should be installed:

# pip install python-openstackclient

To 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/identity

This CLI is provided by python-openstackclient and osc-lib projects: • https://git.openstack.org/openstack/python-openstackclient

7 python-moganclient Documentation, Release

• https://git.openstack.org/openstack/osc-lib

3.1.3 Getting help

To get a list of available (sub)commands and options, run:

$ openstack help baremetalcompute

To get usage and options of a command, run:

$ openstack help baremetalcompute

3.1.4 Examples

Get information about the openstack baremetalcompute server create command:

$ openstack help baremetalcompute server create

Get a list of baremetalcompute flavors:

$ openstack baremetalcompute flavor list

Boot a Bare metal server:

$ openstack baremetalcompute server create --flavor --image --nic

˓→net-id= test

Get a list of nodes aggregates:

$ openstack baremetalcompute aggregate list

3.1.5 Command Reference

List of released CLI commands available in openstack client. These commands can be referenced by doing openstack help baremetalcompute.

Baremetalcompute server baremetalcompute server create

Create a new baremetal server openstack baremetalcompute server create --flavor --image --nic [--description ] [--availability-zone ] [--file ] [--user-data ]

8 Chapter 3. python-moganclient User Documentation python-moganclient Documentation, Release

[--key-name ] [--property ] [--partition ] [--min ] [--max ] [--hint ]

--flavor Create server with this flavor (name or ID) --image Create server boot disk from this image (name or ID) --nic Create a NIC on the server. Specify option multiple times to create multiple NICs. --description Baremetal server description --availability-zone Select an availability zone for the server --file File to inject into image before boot (repeat option to set multiple files) --user-data User data file to inject into the server --key-name Keypair to inject into this server (optional extension) --property Set a property on this server (repeat option to set multiple values) --partition Create a partition on the root disk of this server, only root_gb(required), ephemeral_gb, and swap_mb allowed (repeat option to set multiple partitions) --min Minimum number of servers to launch (default=1) --max Maximum number of servers to launch (default=1) --hint Hints for the Mogan scheduler (optional extension) name New baremetal server name baremetalcompute server show

Display baremetal server details openstack baremetalcompute server show server Baremetal server to display (name or UUID)

3.1. OpenStack Client Command-Line Interface (CLI) 9 python-moganclient Documentation, Release baremetalcompute server list

List all baremetal servers openstack baremetalcompute server list[--long][-n][--all-projects]

--long List additional fields in output -n, --no-name-lookup Skip flavor and image name lookup. --all-projects Include all projects (admin only) baremetalcompute server delete

Delete existing baremetal erver(s) openstack baremetalcompute server delete [ ...] server Baremetal server(s) to delete (name or UUID) baremetalcompute server add floating ip

Add floating IP address to server openstack baremetalcompute server add floating ip [--fixed-ip-address ]

--fixed-ip-address Fixed IP address to associate with this floating IP address server Server to receive the floating IP address (name or ID) ip-address Floating IP address to assign to server (IP only) baremetalcompute server add port

Add interface to server openstack baremetalcompute server add port (--net-id | --port-id )

--net-id Network to link to server --port-id Port to link to server

10 Chapter 3. python-moganclient User Documentation python-moganclient Documentation, Release server Server to attach interface for baremetalcompute server lock

Lock baremetal server(s). openstack baremetalcompute server lock [ ...] server Baremetal server(s) to lock (name or UUID) baremetalcompute server netinfo

Display baremetal server’s network info openstack baremetalcompute server netinfo server Baremetal server to display its network information (name or UUID) baremetalcompute server reboot

Reboot baremetal server(s). openstack baremetalcompute server reboot [ ...] server Baremetal server(s) to reboot (name or UUID) baremetalcompute server remove floating ip

Remove floating IP address from server openstack baremetalcompute server remove floating ip server Server to remove the floating IP address from (name or ID) ip-address Floating IP address to remove from server (IP only) baremetalcompute server remove port

Remove interface from server openstack baremetalcompute server remove port

3.1. OpenStack Client Command-Line Interface (CLI) 11 python-moganclient Documentation, Release port-id Interface to remove from server server Server to remove the interface from baremetalcompute server set

Set properties for a baremetal server openstack baremetalcompute server set [--description ] [--name ] [--property ]

--description Baremetal Server description --name Baremetal server description --property Property to set on this server (repeat option to set multiple properties) server Baremetal server to update (name or UUID) baremetalcompute server start

Start a baremetal server. openstack baremetalcompute server start [ ...] server Baremetal server(s) to start (name or UUID) baremetalcompute server stop

Stop baremetal server(s). openstack baremetalcompute server stop [ ...] server Baremetal server(s) to stop (name or UUID) baremetalcompute server unlock

UnLock baremetal server(s). openstack baremetalcompute server unlock [ ...] server Baremetal server(s) to unlock (name or UUID)

12 Chapter 3. python-moganclient User Documentation python-moganclient Documentation, Release baremetalcompute server unset

Unset properties for a baremetal server openstack baremetalcompute server unset[--property ]

--property Property to remove from this server (repeat option to remove multiple properties) server Baremetal server to unset its properties (name or UUID) baremetalcompute server rebuild

Rebuild a baremetal server. openstack baremetalcompute server rebuild [--image ] [--preserve-ephemeral]

--image Rebuild baremetal server with this image (name or ID) --preserve-ephemeral Preserve the ephemeral disk partition when rebuilding server Baremetal server to be rebuilt (name or UUID)

Baremetalcompute server group baremetalcompute server group create

Create a new baremetal server group openstack baremetalcompute server group create [--policy ]

--policy Add a policy to (‘affinity’ or ‘anti-affinity’, default to ‘affinity’) name New baremetal server group name baremetalcompute server group show

Display baremetal server group details. openstack baremetalcompute server group show server-group Baremetal server group to display (name or ID)

3.1. OpenStack Client Command-Line Interface (CLI) 13 python-moganclient Documentation, Release baremetalcompute server group list

List all baremetal server groups. openstack baremetalcompute server group list[--all-projects][--long]

--all-projects Display information from all projects (admin only) --long List additional fields in output baremetalcompute server group delete

Delete existing baremetal server group(s). openstack baremetalcompute server group delete [ ...] server-group Baremetal server group(s) to delete (name or ID)

BaremetalCompute flavor baremetalcompute flavor create

Create a new baremetal flavor openstack baremetalcompute flavor create [--public | --private | --disabled ] [--description ] [--resources ]

--public Flavor is available to other projects (default) --private Flavor is not available to other projects --disabled Flavor is disabled for users. --description Flavor description --resources Resources to add to this flavor (repeat option to set multiple resources) name New baremetal flavor name

14 Chapter 3. python-moganclient User Documentation python-moganclient Documentation, Release baremetalcompute flavor delete

Delete existing baremetal flavor(s) openstack baremetalcompute flavor delete [ ...] flavor Flavor(s) to delete (name or UUID) baremetalcompute flavor list

List all baremetal flavors openstack baremetalcompute flavor list[--long]

--long List additional fields in output baremetalcompute flavor set

Set baremetal flavor properties openstack baremetalcompute flavor set [--project ] [--name ] [--is-public ] [--disabled ]

--project Set flavor access to project (name or ID) (admin only) --name Set a new name to a flavor (admin only) --is-public Set a flavor to be public or private (admin only) --disabled Set a flavor to be disabled or enabled (admin only) flavor Flavor to modify (name or UUID) baremetalcompute flavor show

Display baremetal flavor details openstack baremetalcompute flavor show flavor Flavor to display (name or UUID)

3.1. OpenStack Client Command-Line Interface (CLI) 15 python-moganclient Documentation, Release baremetalcompute flavor unset

Unset baremetal flavor properties openstack baremetalcompute flavor unset[--project ]

--project Remove flavor access from project (name or ID) (admin only) flavor Flavor to modify (name or UUID)

BaremetalCompute aggregate baremetalcompute aggregate add node

Add a node for a specified node aggregate openstack baremetalcompute aggregate add node aggregate Aggregate to add nodes (name or UUID) node Name of baremetal node baremetalcompute aggregate create

Create a node aggregate openstack baremetalcompute aggregate create [--property ]

--property Property to add to this node aggregate (repeat option to set multiple properties) name Name of baremetal node aggregate baremetalcompute aggregate delete

Delete existing baremetal node aggregate(s) openstack baremetalcompute aggregate delete [ ...] aggregate Aggregate(s) to delete (name or UUID)

16 Chapter 3. python-moganclient User Documentation python-moganclient Documentation, Release baremetalcompute aggregate list

List all baremetal node aggregates openstack baremetalcompute aggregate list baremetalcompute aggregate list node

List all baremetal nodes names of a specified node aggregate openstack baremetalcompute aggregate list node aggregate Aggregate to list its nodes (name or UUID) baremetalcompute aggregate remove node

Remove a node for a specified node aggregate openstack baremetalcompute aggregate remove node aggregate Aggregate to delete its node (name or UUID) node Name of baremetal node baremetalcompute aggregate set

Set properties for a baremetal node aggregate openstack baremetalcompute aggregate set [--name ] [--property ]

--name Set a new name to a node aggregate (admin only) --property Property to set on this node aggregate (repeat option to set multiple properties) aggregate Aggregate(s) to delete (name or UUID) baremetalcompute aggregate show

Display baremetal node aggregate details openstack baremetalcompute aggregate show aggregate Aggregate to display (name or UUID)

3.1. OpenStack Client Command-Line Interface (CLI) 17 python-moganclient Documentation, Release baremetalcompute aggregate unset

Unset properties for a baremetal node aggregate openstack baremetalcompute aggregate unset [--property ]

--property Property to remove from this node aggregate (repeat option to remove multiple properties) aggregate Aggregate(s) to delete (name or UUID)

BaremetalCompute keypair baremetalcompute keypair create

Create new public or private key for baremetal server ssh access openstack baremetalcompute keypair create [--user ] [--key-type ] [--public-key ]

--user ID of user to whom to add key-pair (Admin only) --key-type Keypair type. Can be ssh or x509. --public-key Filename for public key to add. If not used, creates a private key. name Name of key baremetalcompute keypair delete

Delete baremetal server public or private key(s) openstack baremetalcompute keypair delete [--user ] [ ...]

--user ID of user to whom to add key-pair (Admin only) key Name of key(s) to delete (name only)

18 Chapter 3. python-moganclient User Documentation python-moganclient Documentation, Release baremetalcompute keypair list

List baremetal server key fingerprints openstack baremetalcompute keypair list[--user ]

--user ID of user to whom to add key-pair (Admin only) baremetalcompute keypair show

Display baremetal server key details openstack baremetalcompute keypair show[--user ]

--user ID of user to whom to add key-pair (Admin only) keypair Keypair to display (name only)

BaremetalCompute node baremetalcompute node list

List all baremetal nodes names openstack baremetalcompute node list

BaremetalCompute availability zone baremetalcompute availability zone list

List all available zones openstack baremetalcompute availability zone list

BaremetalCompute manageable server baremetalcompute manageable server list

List all manageable servers openstack baremetalcompute manageable server list[--long]

--long List additional fields in output

3.1. OpenStack Client Command-Line Interface (CLI) 19 python-moganclient Documentation, Release baremetalcompute server manage

Manage an existing bare metal node openstack baremetalcompute server manage [--description ] [--property ]

--description Bare metal server description --property Set a property on this server (repeat option to set multiple values) node_uuid The manageable bare metal node uuid name New bare metal server name

20 Chapter 3. python-moganclient User Documentation CHAPTER 4

Indices and tables

• genindex • search

21 python-moganclient Documentation, Release

22 Chapter 4. Indices and tables Index

Symbols openstack-baremetalcompute-server-rebuild com- –all-projects mand line option, 13 openstack-baremetalcompute-server-group-list com- –is-public mand line option, 14 openstack-baremetalcompute-flavor-set command openstack-baremetalcompute-server-list command line option, 15 line option, 10 –key-name –availability-zone openstack-baremetalcompute-server-create com- openstack-baremetalcompute-server-create com- mand line option,9 mand line option,9 –key-type –description openstack-baremetalcompute-keypair-create com- openstack-baremetalcompute-flavor-create com- mand line option, 18 mand line option, 14 –long openstack-baremetalcompute-server-create com- openstack-baremetalcompute-flavor-list command mand line option,9 line option, 15 openstack-baremetalcompute-server-manage com- openstack-baremetalcompute-manageable-server- mand line option, 20 list command line option, 19 openstack-baremetalcompute-server-set command openstack-baremetalcompute-server-group-list com- line option, 12 mand line option, 14 –disabled openstack-baremetalcompute-server-list command openstack-baremetalcompute-flavor-create com- line option, 10 mand line option, 14 –max –disabled openstack-baremetalcompute-server-create com- openstack-baremetalcompute-flavor-set command mand line option,9 line option, 15 –min –file openstack-baremetalcompute-server-create com- openstack-baremetalcompute-server-create com- mand line option,9 mand line option,9 –name –fixed-ip-address openstack-baremetalcompute-server-set command openstack-baremetalcompute-server-add-floating-ip line option, 12 command line option, 10 –name –flavor <flavor> openstack-baremetalcompute-aggregate-set com- openstack-baremetalcompute-server-create com- mand line option, 17 mand line option,9 openstack-baremetalcompute-flavor-set command –hint line option, 15 openstack-baremetalcompute-server-create com- –net-id mand line option,9 openstack-baremetalcompute-server-add-port com- –image mand line option, 10 openstack-baremetalcompute-server-create com- –nic mand line option,9 openstack-baremetalcompute-server-create com- mand line option,9

23 python-moganclient Documentation, Release

–partition –user-data openstack-baremetalcompute-server-create com- openstack-baremetalcompute-server-create com- mand line option,9 mand line option,9 –policy -n, –no-name-lookup openstack-baremetalcompute-server-group-create openstack-baremetalcompute-server-list command command line option, 13 line option, 10 –port-id openstack-baremetalcompute-server-add-port com- A mand line option, 10 aggregate –preserve-ephemeral openstack-baremetalcompute-aggregate-add-node openstack-baremetalcompute-server-rebuild com- command line option, 16 mand line option, 13 openstack-baremetalcompute-aggregate-delete com- –private mand line option, 16 openstack-baremetalcompute-flavor-create com- openstack-baremetalcompute-aggregate-list-node mand line option, 14 command line option, 17 –project openstack-baremetalcompute-aggregate-remove- openstack-baremetalcompute-flavor-set command node command line option, 17 line option, 15 openstack-baremetalcompute-aggregate-set com- openstack-baremetalcompute-flavor-unset command mand line option, 17 line option, 16 openstack-baremetalcompute-aggregate-show com- –property mand line option, 17 openstack-baremetalcompute-aggregate-create com- openstack-baremetalcompute-aggregate-unset com- mand line option, 16 mand line option, 18 openstack-baremetalcompute-aggregate-set com- mand line option, 17 F openstack-baremetalcompute-server-create com- flavor mand line option,9 openstack-baremetalcompute-flavor-delete com- openstack-baremetalcompute-server-manage com- mand line option, 15 mand line option, 20 openstack-baremetalcompute-flavor-set command openstack-baremetalcompute-server-set command line option, 15 line option, 12 openstack-baremetalcompute-flavor-show command –property line option, 15 openstack-baremetalcompute-aggregate-unset com- openstack-baremetalcompute-flavor-unset command mand line option, 18 line option, 16 openstack-baremetalcompute-server-unset com- mand line option, 13 I –public ip-address openstack-baremetalcompute-flavor-create com- openstack-baremetalcompute-server-add-floating-ip mand line option, 14 command line option, 10 –public-key <file> openstack-baremetalcompute-server-remove- openstack-baremetalcompute-keypair-create com- floating-ip command line option, 11 mand line option, 18 –resources openstack-baremetalcompute-flavor-create com- K mand line option, 14 key –user openstack-baremetalcompute-keypair-delete com- openstack-baremetalcompute-keypair-create com- mand line option, 18 mand line option, 18 keypair openstack-baremetalcompute-keypair-delete com- openstack-baremetalcompute-keypair-show com- mand line option, 18 mand line option, 19 openstack-baremetalcompute-keypair-list command line option, 19 L openstack-baremetalcompute-keypair-show com- license mand line option, 19 agreement,5

24 Index python-moganclient Documentation, Release

N openstack-baremetalcompute-flavor-create command line name option openstack-baremetalcompute-aggregate-create com- –description , 14 mand line option, 16 –disabled , 14 openstack-baremetalcompute-flavor-create com- –private, 14 mand line option, 14 –public, 14 openstack-baremetalcompute-keypair-create com- –resources , 14 mand line option, 18 name, 14 openstack-baremetalcompute-server-create com- openstack-baremetalcompute-flavor-delete command line mand line option,9 option openstack-baremetalcompute-server-group-create flavor, 15 command line option, 13 openstack-baremetalcompute-flavor-list command line openstack-baremetalcompute-server-manage com- option mand line option, 20 –long, 15 node openstack-baremetalcompute-flavor-set command line openstack-baremetalcompute-aggregate-add-node option command line option, 16 –disabled , 15 openstack-baremetalcompute-aggregate-remove- –is-public , 15 node command line option, 17 –name , 15 node_uuid –project , 15 openstack-baremetalcompute-server-manage com- flavor, 15 mand line option, 20 openstack-baremetalcompute-flavor-show command line option O flavor, 15 openstack-baremetalcompute-aggregate-add-node com- openstack-baremetalcompute-flavor-unset command line mand line option option aggregate, 16 –project , 16 node, 16 flavor, 16 openstack-baremetalcompute-aggregate-create command openstack-baremetalcompute-keypair-create command line option line option –property , 16 –key-type , 18 name, 16 –public-key <file>, 18 openstack-baremetalcompute-aggregate-delete command –user , 18 line option name, 18 aggregate, 16 openstack-baremetalcompute-keypair-delete command openstack-baremetalcompute-aggregate-list-node com- line option mand line option –user , 18 aggregate, 17 key, 18 openstack-baremetalcompute-aggregate-remove-node openstack-baremetalcompute-keypair-list command line command line option option aggregate, 17 –user , 19 node, 17 openstack-baremetalcompute-keypair-show command openstack-baremetalcompute-aggregate-set command line option line option –user , 19 –name , 17 keypair, 19 –property , 17 openstack-baremetalcompute-manageable-server-list aggregate, 17 command line option openstack-baremetalcompute-aggregate-show command –long, 19 line option openstack-baremetalcompute-server-add-floating-ip com- aggregate, 17 mand line option openstack-baremetalcompute-aggregate-unset command –fixed-ip-address , 10 line option ip-address, 10 –property , 18 server, 10 aggregate, 18

Index 25 python-moganclient Documentation, Release openstack-baremetalcompute-server-add-port command server, 11 line option openstack-baremetalcompute-server-reboot command –net-id , 10 line option –port-id , 10 server, 11 server, 10 openstack-baremetalcompute-server-rebuild command openstack-baremetalcompute-server-create command line option line option –image , 13 –availability-zone ,9 –preserve-ephemeral, 13 –description ,9 server, 13 –file ,9 openstack-baremetalcompute-server-remove-floating-ip –flavor <flavor>,9 command line option –hint ,9 ip-address, 11 –image ,9 server, 11 –key-name ,9 openstack-baremetalcompute-server-remove-port com- –max ,9 mand line option –min ,9 port-id, 11 –nic ,9 server, 12 –partition ,9 openstack-baremetalcompute-server-set command line –property ,9 option –user-data ,9 –description , 12 name,9 –name , 12 openstack-baremetalcompute-server-delete command –property , 12 line option server, 12 server, 10 openstack-baremetalcompute-server-show command line openstack-baremetalcompute-server-group-create com- option mand line option server,9 –policy , 13 openstack-baremetalcompute-server-start command line name, 13 option openstack-baremetalcompute-server-group-delete com- server, 12 mand line option openstack-baremetalcompute-server-stop command line server-group, 14 option openstack-baremetalcompute-server-group-list command server, 12 line option openstack-baremetalcompute-server-unlock command –all-projects, 14 line option –long, 14 server, 12 openstack-baremetalcompute-server-group-show com- openstack-baremetalcompute-server-unset command line mand line option option server-group, 13 –property , 13 openstack-baremetalcompute-server-list command line server, 13 option –all-projects, 10 P –long, 10 port-id -n, –no-name-lookup, 10 openstack-baremetalcompute-server-remove-port openstack-baremetalcompute-server-lock command line command line option, 11 option server, 11 S openstack-baremetalcompute-server-manage command server line option openstack-baremetalcompute-server-add-floating-ip –description , 20 command line option, 10 –property , 20 openstack-baremetalcompute-server-add-port com- name, 20 mand line option, 10 node_uuid, 20 openstack-baremetalcompute-server-delete com- openstack-baremetalcompute-server-netinfo command mand line option, 10 line option

26 Index python-moganclient Documentation, Release

openstack-baremetalcompute-server-lock command line option, 11 openstack-baremetalcompute-server-netinfo com- mand line option, 11 openstack-baremetalcompute-server-reboot com- mand line option, 11 openstack-baremetalcompute-server-rebuild com- mand line option, 13 openstack-baremetalcompute-server-remove- floating-ip command line option, 11 openstack-baremetalcompute-server-remove-port command line option, 12 openstack-baremetalcompute-server-set command line option, 12 openstack-baremetalcompute-server-show com- mand line option,9 openstack-baremetalcompute-server-start command line option, 12 openstack-baremetalcompute-server-stop command line option, 12 openstack-baremetalcompute-server-unlock com- mand line option, 12 openstack-baremetalcompute-server-unset com- mand line option, 13 server-group openstack-baremetalcompute-server-group-delete command line option, 14 openstack-baremetalcompute-server-group-show command line option, 13

Index 27