nova (1) Linux Manual Page
nova – OpenStack Nova command line client
Synopsis
nova [options] <command> [command-options]nova help
nova help <command>
Description
nova is a command line client for controlling OpenStack Nova, the cloud computing fabric controller. It implements 100% of the Nova API, allowing management of instances, images, quotas and much more.Before you can issue commands with nova, you must ensure that your environment contains the necessary variables so that you can prove to the CLI who you are and what credentials you have to issue the commands. See Getting Credentials for a CLI section of OpenStack CLI Guide for more info.
See OpenStack Nova CLI Guide for a full-fledged guide.
Options
To get a list of available commands and options run:
nova helpTo get usage and options of a command run:
nova help <command>
Examples
Get information about boot command:
nova help bootList available images:
nova image-listList available flavors:
nova flavor-listLaunch an instance:
nova boot myserver –image some-image –flavor 2View instance information:
nova show myserverList instances:
nova listTerminate an instance:
nova delete myserver
