2010-10-27 00:05:42 -04:00
|
|
|
..
|
|
|
|
Copyright 2010 United States Government as represented by the
|
|
|
|
Administrator of the National Aeronautics and Space Administration.
|
|
|
|
All Rights Reserved.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
not use this file except in compliance with the License. You may obtain
|
|
|
|
a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
License for the specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
|
2010-10-27 13:49:27 -04:00
|
|
|
|
2010-10-27 00:05:42 -04:00
|
|
|
Concepts and Introduction
|
|
|
|
=========================
|
|
|
|
|
|
|
|
|
|
|
|
Introduction
|
|
|
|
------------
|
|
|
|
|
|
|
|
Nova is the software that controls your Infrastructure as as Service (IaaS)
|
|
|
|
cloud computing platform. It is similar in scope to Amazon EC2 and Rackspace
|
|
|
|
CloudServers. Nova does not include any virtualization software, rather it
|
|
|
|
defines drivers that interact with underlying virtualization mechanisms that
|
|
|
|
run on your host operating system, and exposes functionality over a web API.
|
|
|
|
|
|
|
|
This document does not attempt to explain fundamental concepts of cloud
|
|
|
|
computing, IaaS, virtualization, or other related technologies. Instead, it
|
|
|
|
focues on describing how Nova's implementation of those concepts is achieved.
|
|
|
|
|
2010-10-27 13:49:27 -04:00
|
|
|
This page outlines concepts that you will need to understand as a user or
|
|
|
|
administrator of an OpenStack installation. Each section links to more more
|
|
|
|
detailed information in the `Administration Guide`_, but you'll probably want
|
|
|
|
to read this section straight-through before tackling the specifics presented
|
|
|
|
in the administration guide.
|
|
|
|
|
|
|
|
.. _`Administration Guide`: administration.guide.html
|
2010-10-27 00:05:42 -04:00
|
|
|
|
2010-10-27 13:49:27 -04:00
|
|
|
|
|
|
|
Concept: Users and Projects
|
|
|
|
---------------------------
|
2010-10-27 00:05:42 -04:00
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
* access to images is limited by project
|
|
|
|
* access/secret are per user
|
|
|
|
* keypairs are per user
|
|
|
|
* quotas are per project
|
2010-10-27 00:05:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
Concept: Virtualization
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
* KVM
|
|
|
|
* UML
|
|
|
|
* XEN
|
|
|
|
* HyperV
|
2010-10-27 15:52:06 -04:00
|
|
|
* qemu
|
2010-10-27 00:05:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
Concept: Volumes
|
|
|
|
----------------
|
|
|
|
|
|
|
|
Volumes
|
|
|
|
|
|
|
|
|
|
|
|
Concept: Quotas
|
|
|
|
---------------
|
|
|
|
|
|
|
|
* Defaults
|
|
|
|
* Override for project
|
|
|
|
|
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
Concept: RBAC
|
|
|
|
-------------
|
|
|
|
|
|
|
|
* Intersecting Roles
|
|
|
|
* cloudadmin vs. user admin flag
|
|
|
|
|
|
|
|
|
2010-10-27 00:05:42 -04:00
|
|
|
Concept: API
|
|
|
|
------------
|
|
|
|
|
|
|
|
* EC2
|
|
|
|
* OpenStack / Rackspace
|
|
|
|
|
|
|
|
|
|
|
|
Concept: Networking
|
|
|
|
-------------------
|
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
* VLAN
|
|
|
|
* Cloudpipe
|
|
|
|
* Certificates (See also: CA)
|
|
|
|
* Flat Networking
|
|
|
|
* Flat with DHCP
|
|
|
|
* How to generate addresses
|
|
|
|
* Floating Addresses
|
2010-10-27 00:05:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
Concept: Services
|
|
|
|
-----------------
|
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
* nova-api
|
|
|
|
* nova-scheduler
|
|
|
|
* nova-compute
|
|
|
|
* nova-volume
|
|
|
|
* nova-network
|
|
|
|
* nova-instancemonitor
|
|
|
|
|
|
|
|
|
|
|
|
Concept: nova-manage
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
nova manage
|
2010-10-27 00:05:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
Concept: Flags
|
|
|
|
--------------
|
|
|
|
|
|
|
|
python-gflags
|
|
|
|
|
|
|
|
|
|
|
|
Concept: Plugins
|
|
|
|
----------------
|
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
* Managers/Drivers: utils.import_object from string flag
|
|
|
|
* virt/connections: conditional loading from string flag
|
|
|
|
* db: LazyPluggable via string flag
|
|
|
|
* auth_manager: utils.import_class based on string flag
|
|
|
|
* Volumes: moving to pluggable driver instead of manager
|
|
|
|
* Network: pluggable managers
|
|
|
|
* Compute: same driver used, but pluggable at connection
|
2010-10-27 00:05:42 -04:00
|
|
|
|
|
|
|
|
2010-10-27 13:49:27 -04:00
|
|
|
Concept: IPC/RPC
|
|
|
|
----------------
|
2010-10-27 00:05:42 -04:00
|
|
|
|
|
|
|
Rabbit!
|
|
|
|
|
|
|
|
|
|
|
|
Concept: Fakes
|
|
|
|
--------------
|
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
* auth
|
|
|
|
* ldap
|
2010-10-27 00:05:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
Concept: Scheduler
|
|
|
|
------------------
|
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
* simple
|
|
|
|
* random
|
2010-10-27 00:05:42 -04:00
|
|
|
|
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
Concept: Security Groups
|
|
|
|
------------------------
|
2010-10-27 00:05:42 -04:00
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
Security groups
|
2010-10-27 00:05:42 -04:00
|
|
|
|
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
Concept: Certificate Authority
|
|
|
|
------------------------------
|
2010-10-27 00:05:42 -04:00
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
Per-project CA
|
|
|
|
* Images
|
|
|
|
* VPNs
|
2010-10-27 13:49:27 -04:00
|
|
|
|
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
Concept: Images
|
|
|
|
---------------
|
2010-10-27 13:49:27 -04:00
|
|
|
|
2010-10-27 15:52:06 -04:00
|
|
|
* launching
|
|
|
|
* bundling
|