~openstack-gd/nova/lp785816-joinedload

« back to all changes in this revision

Viewing changes to doc/source/devref/compute.rst

  • Committer: Todd Willey
  • Date: 2010-11-07 19:51:40 UTC
  • mto: (386.2.41 trunkdoc)
  • mto: This revision was merged to the branch mainline in revision 398.
  • Revision ID: todd@ansolabs.com-20101107195140-djbg5mkmbz0jc03w
Merge lp:~termie/nova/trunkdoc (via patch, since bzr though it was already merged)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
      under the License.
17
17
 
18
18
 
19
 
Virtualization Programming Guide
20
 
================================
21
 
 
22
 
This page contains the Compute Package documentation.
23
 
 
24
 
Manager
 
19
Virtualization
 
20
==============
 
21
 
 
22
 
 
23
Compute
25
24
-------
26
25
 
27
26
Documentation for the compute manager and related files.  For reading about
28
27
a specific virtualization backend, read Drivers_.
29
28
 
30
29
 
31
 
The :mod:`manager` Module
 
30
The :mod:`nova.compute.manager` Module
32
31
~~~~~~~~~~~~~~~~~~~~~~~~~
33
32
 
34
33
.. automodule:: nova.compute.manager
36
35
    :undoc-members:
37
36
    :show-inheritance:
38
37
 
39
 
The :mod:`connection` Module
 
38
The :mod:`nova.virt.connection` Module
40
39
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
41
40
 
42
41
.. automodule:: nova.virt.connection
44
43
    :undoc-members:
45
44
    :show-inheritance:
46
45
 
47
 
The :mod:`disk` Module
 
46
The :mod:`nova.compute.disk` Module
48
47
~~~~~~~~~~~~~~~~~~~~~~
49
48
 
50
49
.. automodule:: nova.compute.disk
52
51
    :undoc-members:
53
52
    :show-inheritance:
54
53
 
55
 
The :mod:`images` Module
 
54
The :mod:`nova.virt.images` Module
56
55
~~~~~~~~~~~~~~~~~~~~~~~~
57
56
 
58
57
.. automodule:: nova.virt.images
61
60
    :show-inheritance:
62
61
 
63
62
 
64
 
The :mod:`instance_types` Module
 
63
The :mod:`nova.compute.instance_types` Module
65
64
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
66
65
 
67
66
.. automodule:: nova.compute.instance_types
70
69
    :show-inheritance:
71
70
 
72
71
 
73
 
The :mod:`power_state` Module
 
72
The :mod:`nova.compute.power_state` Module
74
73
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
75
74
 
76
75
.. automodule:: nova.compute.power_state
82
81
Drivers
83
82
-------
84
83
 
85
 
Libvirt Implementations
86
 
~~~~~~~~~~~~~~~~~~~~~~~
87
 
 
88
 
The libvirt driver is capable of supporting KVM, QEMU, and UML.
89
 
 
90
 
The :mod:`libvirt_conn` Module
91
 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
84
 
 
85
The :mod:`nova.virt.libvirt_conn` Driver
 
86
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
92
87
 
93
88
.. automodule:: nova.virt.libvirt_conn
94
89
    :members:
95
90
    :undoc-members:
96
91
    :show-inheritance:
97
92
 
98
 
XEN
99
 
~~~
100
93
 
101
 
The :mod:`xenapi` Module
102
 
^^^^^^^^^^^^^^^^^^^^^^^^
 
94
The :mod:`nova.virt.xenapi` Driver
 
95
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
103
96
 
104
97
.. automodule:: nova.virt.xenapi
105
98
    :members:
106
99
    :undoc-members:
107
100
    :show-inheritance:
108
101
 
109
 
FAKE
110
 
~~~~
 
102
 
 
103
The :mod:`nova.virt.fake` Driver
 
104
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
111
105
 
112
106
.. automodule:: nova.virt.fake
113
107
    :members:
114
108
    :undoc-members:
115
109
    :show-inheritance:
116
110
 
 
111
 
117
112
Monitoring
118
113
----------
119
114
 
120
 
The :mod:`monitor` Module
 
115
The :mod:`nova.compute.monitor` Module
121
116
~~~~~~~~~~~~~~~~~~~~~~~~~
122
117
 
123
118
.. automodule:: nova.compute.monitor