Difference between revisions of "Category:OpenStack"

From Christoph's Personal Wiki
Jump to: navigation, search
Line 40: Line 40:
  
 
  $ pip install python-novaclient
 
  $ pip install python-novaclient
 +
 +
==Bash completion==
 +
 +
<pre>
 +
# 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
 +
</pre>
  
 
==See also==
 
==See also==
 
*[http://docs.openstack.org/glossary/content/glossary.html OpenStack Glossary]
 
*[http://docs.openstack.org/glossary/content/glossary.html OpenStack Glossary]

Revision as of 10:10, 9 December 2014

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.