Jump to: navigation, search

Difference between revisions of "TripleO/TuskarGlossary"

m (Tzumainn moved page Tuskar/Glossary to TripleO/TuskarGlossary: move Tuskar under TripleO program)
(Updated with Icehouse terminology)
Line 3: Line 3:
 
Tuskar is built with Triple-O in mind; as such, it may be useful to familiarize yourself with the [https://github.com/openstack/tripleo-incubator#architecture Triple-O architecture].
 
Tuskar is built with Triple-O in mind; as such, it may be useful to familiarize yourself with the [https://github.com/openstack/tripleo-incubator#architecture Triple-O architecture].
  
'''''* Names marked with an asterisk may change in the future'''''
+
== Overcloud ==
  
== Resource Class ==
+
== Resource Category ==
  
A Resource Class can be thought of as a cloud 'building block'. It consists of a set of Racks, and defines the services provided by the Nodes in those Racks.
+
One way an Overcloud can be configured is by specifying the scale of the services that will run once it is deployed (e.g., 3 Controller instances and 2 Compute instances).  These services are specified by Resource Categories:
  
Tuskar supports four Resource Class types:
+
* '''Controller''' - provides all services other than compute and storage services
 +
* '''Compute''' - defines and provides compute services
 +
* '''Object Storage''' - defines and provides object storage services
 +
* '''Block Storage''' - defines and provides block storage service
  
* '''Controller Class''' Class that provides all services other than compute and storage services
+
On a functional level, a Resource Category points to an image in Glance that will be used by Heat for provisioning.
* '''Compute Class''' Class that defines and provides compute services
 
* '''Object Storage Class''' Class that defines and provides object storage services
 
* '''Block Storage Class''' Class that defines and provides block storage service
 
  
=== Overcloud Flavor ===
+
== Node ==
  
An Overcloud Flavor is a virtual hardware configurationIts definition is aligned with the "instance_type" (aka 'Flavor') used in the OpenStack Nova API.
+
A Node is a single physical compute unitIt corresponds to a compute Node in Nova Baremetal or Ironic.
  
Overcloud Flavors are defined for a given Compute Resource Class and semantically describe the types of compute instances that can be launched for that Resource Class. Each Overcloud Flavor has a set of Capacities that describe a particular aspect of the virtual hardware configuration, such as cpu, memory or storage.
+
In Tuskar, a Node can either be:
  
When a Node is provisioned, the Overcloud Flavors that are defined for that Node's Resource Class are registered in Nova,
+
* '''Resource''' - a Heat Resource is running on the Node
 
+
* '''Free''' - available for use
== Resource (Rack and Node) ==
 
 
 
There are two kinds of Resources:
 
 
 
* '''Node''' A Node is a single physical compute unit.  It corresponds to a compute Node in Nova Baremetal (and eventually, in Ironic).
 
* '''Rack''' A Rack is a physical or logical grouping of Nodes.  It can be thought of as a server rack in a datacenter.  A Rack is assigned to a Resource Class, and can be managed as a single unit.
 
 
 
 
 
There are two types of Racks:
 
 
 
* '''Controller Rack''' A Rack that belongs to a Controller Resource Class.
 
* '''Resource Rack''' A Rack that belongs to a Compute/Object Storage/Block Storage Resource Class.
 
 
 
== Image ==
 
 
 
An Image is provisioned on Nova Baremetal Nodes.
 

Revision as of 15:06, 14 January 2014

Overview

Tuskar is built with Triple-O in mind; as such, it may be useful to familiarize yourself with the Triple-O architecture.

Overcloud

Resource Category

One way an Overcloud can be configured is by specifying the scale of the services that will run once it is deployed (e.g., 3 Controller instances and 2 Compute instances). These services are specified by Resource Categories:

  • Controller - provides all services other than compute and storage services
  • Compute - defines and provides compute services
  • Object Storage - defines and provides object storage services
  • Block Storage - defines and provides block storage service

On a functional level, a Resource Category points to an image in Glance that will be used by Heat for provisioning.

Node

A Node is a single physical compute unit. It corresponds to a compute Node in Nova Baremetal or Ironic.

In Tuskar, a Node can either be:

  • Resource - a Heat Resource is running on the Node
  • Free - available for use