Chapter 1. OpenStack Command-line Clients
1.1. Overview
You can use the OpenStack command-line clients to run simple commands that make API calls. You can run these commands from the command line or in scripts to automate tasks. If you provide OpenStack credentials, you can run these commands on any computer.
Internally, each client command runs cURL commands that embed API requests. The OpenStack APIs are RESTful APIs that use the HTTP protocol, including methods, URIs, media types, and response codes.
These open-source Python clients run on Linux or Mac OS X systems and are easy to learn and use. Each OpenStack service has its own command-line client. On some client commands, you can specify a debug
parameter to show the underlying API request for the command. This is a good way to become familiar with the OpenStack API calls.
The following table lists the command-line client for some of the OpenStack services.
Service | Client | Package | Description |
---|---|---|---|
Bare Metal |
| python-ironicclient | Manage and provision physical machines. |
Block Storage |
| python-cinderclient | Create and manage volumes. |
Compute |
| python-novaclient | Create and manage images, instances, and flavors. |
Director |
| python-tripleoclient | Manage a director-based cloud. |
Identity |
| python-keystoneclient | Create and manage users, tenants, roles, endpoints, and credentials. |
Image Service |
| python-glanceclient | Create and manage images. |
Hardware Introspection for Bare Metal |
| openstack-ironic-inspector | An auxiliary service for discovering hardware properties for the Bare Metal service. |
Hardware Introspection for Bare Metal |
| python-ironic-inspector-client | A client for the bare metal hardware introspection. |
Networking |
| python-neutronclient |
Configure networks for guest servers. This client was previously called |
Object Storage |
| python-swiftclient | Gather statistics, list items, update metadata, and upload, download, and delete files stored by the Object Storage service. Gain access to an Object Storage installation for ad hoc processing. |
Orchestration |
| python-heatclient | Launch stacks from templates, view details of running stacks including events and resources, and update and delete stacks. |
Telemetry |
| python-ceilometerclient | Create and collect measurements across OpenStack. |
For client installation instructions, see Section 1.2, “Install the OpenStack Command-line Clients”.
1.2. Install the OpenStack Command-line Clients
Install the prerequisite software and the Python package for each OpenStack client.
1.2.1. Install the Prerequisite Software
The following table lists the software that you need to have to run the command-line clients, and provides installation instructions as needed.
Prerequisite | Description |
---|---|
Python 2.6 or later | Currently, the clients do not support Python 3. |
python-setuptools package | python-setuptools is a collection of tools to allow for building, distribution, and installation of Python packages. |
1.2.2. Install the Clients
When following the instructions in this section, replace PROJECT with the lowercase name of the client to install, such as nova
. Repeat for each client. The valid values include:
-
ceilometer
- Telemetry API -
cinder
- Block Storage API and extensions -
glance
- Image Service API -
heat
- Orchestration API -
keystone
- Identity service API and extensions -
neutron
- Networking API -
nova
- Compute API and extensions -
swift
- Object Storage API
The following example shows the command for installing the nova client with yum.
#
yum install python-novaclient
1.2.2.1. Installing from Packages
On Red Hat Enterprise Linux, use yum
to install the clients:
#
yum install python-PROJECTclient
1.2.3. Upgrade or Remove Clients
To upgrade a client, add the --upgrade
option to the yum install
command:
#
yum install --upgrade python-PROJECTclient
To remove the a client, run the yum erase
command:
#
yum erase python-PROJECTclient
1.2.4. What’s Next
Before you can run client commands, you must create and source the PROJECT-openrc.sh
file to set environment variables. See Section 1.4, “Set Environment Variables Using the OpenStack RC File”.
1.3. Discover the Version Number for a Client
Run the following command to discover the version number for a client:
$
PROJECT --version
For example, to see the version number for the nova
client, run the following command:
$
nova --version
The version number (3.3.0 in the example) is returned.
3.3.0
1.4. Set Environment Variables Using the OpenStack RC File
To set the required environment variables for the OpenStack command-line clients, you must create an environment file called an OpenStack rc file, or openrc.sh
file.If your OpenStack installation provides it, you can download the file from the OpenStack dashboard as an administrative user or any other user. This project-specific environment file contains the credentials that all OpenStack services use.
When you source the file, environment variables are set for your current shell. The variables enable the OpenStack client commands to communicate with the OpenStack services that run in the cloud.
Defining environment variables using an environment file is not a common practice on Microsoft Windows. Environment variables are usually defined in the Advanced
tab of the System Properties dialog box.
1.4.1. Download and Source the OpenStack RC File
- Log in to the OpenStack dashboard, choose the project for which you want to download the OpenStack RC file, and click btn:[Access & Security].
-
On the API Access tab, click btn:[Download OpenStack RC File] and save the file. The filename will be of the form
PROJECT-openrc.sh
where PROJECT is the name of the project for which you downloaded the file. Copy the
PROJECT-openrc.sh
file to the computer from which you want to run OpenStack commands.For example, copy the file to the computer from which you want to upload an image with a
glance
client command.On any shell from which you want to run OpenStack commands, source the
PROJECT-openrc.sh
file for the respective project.In the following example, the
demo-openrc.sh
file is sourced for the demo project:$
source demo-openrc.sh
-
When you are prompted for an OpenStack password, enter the password for the user who downloaded the
PROJECT-openrc.sh
file.
1.4.2. Create and Source the OpenStack RC File
Alternatively, you can create the PROJECT-openrc.sh
file from scratch, if for some reason you cannot download the file from the dashboard.
In a text editor, create a file named
PROJECT-openrc.sh
file and add the following authentication information:export OS_USERNAME=username export OS_PASSWORD=password export OS_TENANT_NAME=projectName export OS_AUTH_URL=https://identityHost:portNumber/v2.0 # The following lines can be omitted export OS_TENANT_ID=tenantIDString export OS_REGION_NAME=regionName
The following example shows the information for a project called
admin
, where the OS username is alsoadmin
, and the identity host is located atcontroller
.export OS_USERNAME=admin export OS_PASSWORD=ADMIN_PASS export OS_TENANT_NAME=admin export OS_AUTH_URL=http://controller:35357/v2.0
On any shell from which you want to run OpenStack commands, source the
PROJECT-openrc.sh
file for the respective project. In this example, you source theadmin-openrc.sh
file for the admin project:$
source admin-openrc.sh
You are not prompted for the password with this method. The password lives in clear text format in the PROJECT-openrc.sh
file. Restrict the permissions on this file to avoid security problems. You can also remove the OS_PASSWORD
variable from the file, and use the --password
parameter with OpenStack client commands instead.
1.4.3. Override Environment Variable Values
When you run OpenStack client commands, you can override some environment variable settings by using the options that are listed at the end of the help
output of the various client commands. For example, you can override the OS_PASSWORD
setting in the PROJECT-openrc.sh
file by specifying a password on a keystone
command, as follows:
$
keystone --os-password PASSWORD service-list
Where PASSWORD is your password.