Jump to: navigation, search

Difference between revisions of "UnifiedCLI"

m (Text replace - "__NOTOC__" to "")
Line 1: Line 1:
__NOTOC__
+
 
 
= UnifiedCLI =
 
= UnifiedCLI =
  

Revision as of 23:30, 17 February 2013

UnifiedCLI

Status: In progress

The python-openstackclient project is underway and still alive but not completed. Progress for implementing the commands can be tracked in the blueprints, there is one for each corresponding OpenStack CLI binary. The short summary as of this writing is keystone and nova server commands are done. The command mapping shows the translation of the project cli commands to openstackclient.

Summary

A unified OpenStack CLI will provide users with an improved experience in dealing with the variety of commands and arguments required to interact with OpenStack. The unified CLI is intended to be a complete substitute for the bundled CLI binaries supplied with the OpenStack project clients. Where possible it will utilize the existing client modules to minimize duplication of effort.

Supplemental Documents

Rationale

The user experience with OpenStack CLI tools is a frustrating one right now due to a number of inconsistencies between the various tools, not to mention making a user know that keystone is the user/tenant tool and nova is the instance/flavor/image tools and glance is the image tool that replaces the image functions in nova. Those tools will remain as the reference implementation that comes bundled with the client libraries but a new unified (in spirit, if not in implementation) OpenStack CLI interface will provide a better user experience.

The existing binaries can be replaced with one (or more) binaries that have a uniform command structure and option usage. The intended model is similar to that used by git (multiple binaries front-ended by a single interface) or libvirt's virsh (a single monolithic binary that does everything) where they follow the form cli-tool command arguments. In addition, the virsh-like mode of an embedded command line can be supported that would be able to speed up operations by caching authentication and other data between commands.

Goals

  • use the OpenStack Python client API modules, extending them as required
  • use consistent naming and structure for commands and arguments
  • consistent output formats with the option of reliably machine parsable formats
  • use a single-binary approach that also contains an embedded command-line that can execute multiple commands on a single authentication (see libvirt's virsh for an example)
  • independence from the OpenStack project names

Design

There is a Human Interface Guidelines document being prepared that replaces this section.

The existing command sets for Keystone, Nova, Glance and Quantum have been mapped into the new command format.

Command Structure

  • The top level command name is openstack
  • Sub-commands take the form:
openstack [<global-options>] <verb> <subject> [<command-local-arguments>]

Command Arguments

  • All long options names shall use '-' as the interpolation character
  • Authentication options conform to a revised version of the original CLIAuth
  • Global arguments generally have a corresponding environment variable that may also be used to set the value. If both are present, the command-line option takes priority. The environment variable names can be derived from the option by dropping the leading '--', converting all embedded dashes ('-') to underscores ('_'), and converting to upper case.
  • Positional arguments trail command options. Some commands require two objects be acted upon, both objects will appesr in the command subject and both positional arguments appear in the same order as in the command subject.

Other

  • Arguments that normally require an ID in the OS-API may also use the name or other short identifier where reasonable to support
  • Output option for character-delimited format, character can be specified, default to '|' (TODO(dtroyer): update this with cliff's capabilities).

Implementation

Additional Information

Other Resources