Category:OpenStack

From Christoph's Personal Wiki
Revision as of 10:10, 9 December 2014 by Christoph (Talk | contribs)

Jump to: navigation, search

Overview

  • Havana features
    • vSphere enhancements / Hyper-V dynamic memory
    • LXC + Docker (containers)
    • Cinder: new arrays / vmfs volumes
    • Neutron: FWaaS (firewall) + IPSEC VPN

Install project clients

$ pip install python-PROJECTclient

replace "PROJECT" with one of the following:

  • 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
  • trove - Database Service API

For an example, the following command will install the nova client using `pip`:

$ pip install python-novaclient

Bash completion

# Save this in /etc/bash_completion.d/nova
_nova()
{   
    local cur=${COMP_WORDS[COMP_CWORD]}
    COMPREPLY=( $(compgen -W "`nova bash-completion`" -- $cur) )
}
complete -F _nova nova

See also

Pages in category "OpenStack"

The following 3 pages are in this category, out of 3 total.