Difference between revisions of "Category:OpenStack"
From Christoph's Personal Wiki
(→Overview) |
|||
Line 1: | Line 1: | ||
==Overview== | ==Overview== | ||
− | * [https://wiki.openstack.org/wiki/Main_Page OpenStack] (" | + | * [https://wiki.openstack.org/wiki/Main_Page OpenStack] ("[http://www.openstack.org/software/juno/ Juno]") |
**Computing | **Computing | ||
***[https://wiki.openstack.org/wiki/Nova Compute] ("Nova") | ***[https://wiki.openstack.org/wiki/Nova Compute] ("Nova") | ||
Line 9: | Line 9: | ||
***[https://wiki.openstack.org/wiki/Cinder Block Storage] ("Cinder") | ***[https://wiki.openstack.org/wiki/Cinder Block Storage] ("Cinder") | ||
***[https://wiki.openstack.org/wiki/Swift Object Storage] ("Swift") | ***[https://wiki.openstack.org/wiki/Swift Object Storage] ("Swift") | ||
+ | **Database | ||
+ | ***[https://wiki.openstack.org/wiki/Trove Database Service] ("Trove") | ||
**Other | **Other | ||
***[https://wiki.openstack.org/wiki/Horizon Dashboard] ("Horizon") | ***[https://wiki.openstack.org/wiki/Horizon Dashboard] ("Horizon") | ||
Line 14: | Line 16: | ||
***[https://wiki.openstack.org/wiki/Heat Orchestration] ("Heat") — aims to orchestrate multiple cloud applications for OpenStack | ***[https://wiki.openstack.org/wiki/Heat Orchestration] ("Heat") — aims to orchestrate multiple cloud applications for OpenStack | ||
***[https://wiki.openstack.org/wiki/Ceilometer Ceilometer] ("Metering") — provides metering and billing facilities for OpenStack | ***[https://wiki.openstack.org/wiki/Ceilometer Ceilometer] ("Metering") — provides metering and billing facilities for OpenStack | ||
+ | ***[https://wiki.openstack.org/wiki/Sahara Data Processing] ("Sahara") | ||
* Havana features | * Havana features |
Revision as of 20:19, 6 March 2015
Overview
- OpenStack ("Juno")
- Computing
- Compute ("Nova")
- Image service ("Glance")
- Networking
- Networking ("Neutron")
- Storing
- Block Storage ("Cinder")
- Object Storage ("Swift")
- Database
- Database Service ("Trove")
- Other
- Dashboard ("Horizon")
- Identity ("Keystone")
- Orchestration ("Heat") — aims to orchestrate multiple cloud applications for OpenStack
- Ceilometer ("Metering") — provides metering and billing facilities for OpenStack
- Data Processing ("Sahara")
- Computing
- 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
_trove() { local cur=${COMP_WORDS[COMP_CWORD]} COMPREPLY=( $(compgen -W "--configuration --marker database-list metadata-show secgroup-delete-rule cluster-delete user-revoke-access root-show --users database-delete --limit datastore-show configuration-detach backup-list user-grant-access help configuration-list delete --region --replica_of metadata-update create show -h cluster-show user-create --include-clustered configuration-create restart configuration-default metadata-list --backup --detach-replica-source user-update-attributes --new_password metadata-edit configuration-parameter-show backup-show --new_host flavor-show datastore-list configuration-instances --databases list --description root-enable secgroup-list-rules configuration-patch metadata-create resize-flavor --help cluster-list --remove_configuration --collate user-list datastore-version-list --instance cluster-instances cluster-create database-create secgroup-add-rule --datastore configuration-update configuration-parameter-list secgroup-show backup-list-instance backup-delete limit-list flavor-list --host --character_set --name resize-instance resize-volume --availability_zone --datastore_version update user-show-access datastore-version-show configuration-delete --size detach-replica backup-create user-delete --nic configuration-show configuration-attach secgroup-list --parent backup-copy user-show --new_name metadata-delete" -- $cur) ) } complete -F _trove trove
See also
External links
- Official website
- List of OpenStack IRC channels (chat.freenode.net)
Pages in category "OpenStack"
The following 3 pages are in this category, out of 3 total.