blob: 21b31e49254cb5341ad36328839cc9833e2f5c47 [file] [log] [blame]
Sean M. Collins09e550c2014-10-21 11:40:08 -04001DevStack - an OpenStack Community Production
2============================================
3
Dean Troyer63baba22014-10-29 21:57:31 -05004.. toctree::
5 :glob:
6 :maxdepth: 1
Sean M. Collins09e550c2014-10-21 11:40:08 -04007
Dean Troyer63baba22014-10-29 21:57:31 -05008 overview
9 configuration
10 plugins
11 faq
12 changes
13 contributing
Sean M. Collins09e550c2014-10-21 11:40:08 -040014
Dean Troyer26dd21b2014-11-06 09:33:02 -060015Quick Start
16-----------
Sean M. Collins09e550c2014-10-21 11:40:08 -040017
18#. Select a Linux Distribution
19
20 Only Ubuntu 14.04 (Trusty), Fedora 20 and CentOS/RHEL 6.5 are
21 documented here. OpenStack also runs and is packaged on other flavors
22 of Linux such as OpenSUSE and Debian.
23
24#. Install Selected OS
25
26 In order to correctly install all the dependencies, we assume a
27 specific minimal version of the supported distributions to make it as
28 easy as possible. We recommend using a minimal install of Ubuntu or
29 Fedora server in a VM if this is your first time.
30
31#. Download DevStack
32
33 ::
34
35 git clone https://git.openstack.org/openstack-dev/devstack
36
37 The ``devstack`` repo contains a script that installs OpenStack and
38 templates for configuration files
39
40#. Configure
41
Dean Troyerd224ae12014-11-06 09:33:02 -060042 We recommend at least a :doc:`minimal
43 configuration <configuration>` be set up.
Sean M. Collins09e550c2014-10-21 11:40:08 -040044
45#. Start the install
46
47 ::
48
49 cd devstack; ./stack.sh
50
51 It takes a few minutes, we recommend `reading the
52 script <stack.sh.html>`__ while it is building.
53
Dean Troyer63baba22014-10-29 21:57:31 -050054Guides
55======
56
57Walk through various setups used by stackers
Sean M. Collins09e550c2014-10-21 11:40:08 -040058
Dean Troyer26dd21b2014-11-06 09:33:02 -060059.. toctree::
60 :glob:
61 :maxdepth: 1
Sean M. Collins09e550c2014-10-21 11:40:08 -040062
Dean Troyer26dd21b2014-11-06 09:33:02 -060063 guides/single-vm
64 guides/single-machine
65 guides/multinode-lab
Sean M. Collins34296012014-10-27 11:57:20 -040066 guides/neutron
Sean M. Collins09e550c2014-10-21 11:40:08 -040067
Dean Troyer26dd21b2014-11-06 09:33:02 -060068All-In-One Single VM
69--------------------
Dean Troyer63baba22014-10-29 21:57:31 -050070
Dean Troyer26dd21b2014-11-06 09:33:02 -060071Run :doc:`OpenStack in a VM <guides/single-vm>`. The VMs launched in your cloud will be slow as
Dean Troyer63baba22014-10-29 21:57:31 -050072they are running in QEMU (emulation), but it is useful if you don't have
Dean Troyerd224ae12014-11-06 09:33:02 -060073spare hardware laying around. :doc:`[Read] <guides/single-vm>`
Dean Troyer63baba22014-10-29 21:57:31 -050074
Dean Troyer26dd21b2014-11-06 09:33:02 -060075All-In-One Single Machine
76-------------------------
Sean M. Collins09e550c2014-10-21 11:40:08 -040077
Dean Troyer26dd21b2014-11-06 09:33:02 -060078Run :doc:`OpenStack on dedicated hardware <guides/single-machine>` This can include a
79server-class machine or a laptop at home.
80:doc:`[Read] <guides/single-machine>`
Sean M. Collins09e550c2014-10-21 11:40:08 -040081
Dean Troyer26dd21b2014-11-06 09:33:02 -060082Multi-Node Lab
83--------------
Dean Troyer63baba22014-10-29 21:57:31 -050084
Dean Troyer26dd21b2014-11-06 09:33:02 -060085Setup a :doc:`multi-node cluster <guides/multinode-lab>` with dedicated VLANs for VMs & Management.
86:doc:`[Read] <guides/multinode-lab>`
Dean Troyer63baba22014-10-29 21:57:31 -050087
Sean M. Collins34296012014-10-27 11:57:20 -040088DevStack with Neutron Networking
89--------------------------------
90
91Building a DevStack cluster with :doc:`Neutron Networking <guides/neutron>`.
92This guide is meant for building lab environments with a dedicated
93control node and multiple compute nodes.
94
Dean Troyer26dd21b2014-11-06 09:33:02 -060095DevStack Documentation
96======================
Sean M. Collins09e550c2014-10-21 11:40:08 -040097
98Overview
99--------
100
Dean Troyerd224ae12014-11-06 09:33:02 -0600101:doc:`An overview of DevStack goals and priorities <overview>`
Sean M. Collins09e550c2014-10-21 11:40:08 -0400102
103Configuration
104-------------
105
Dean Troyerd224ae12014-11-06 09:33:02 -0600106:doc:`Configuring and customizing the stack <configuration>`
Sean M. Collins09e550c2014-10-21 11:40:08 -0400107
108Plugins
109-------
110
Dean Troyerd224ae12014-11-06 09:33:02 -0600111:doc:`Extending DevStack with new features <plugins>`
Sean M. Collins09e550c2014-10-21 11:40:08 -0400112
113Recent Changes
114--------------
115
Dean Troyerd224ae12014-11-06 09:33:02 -0600116:doc:`An incomplete summary of recent changes <changes>`
Sean M. Collins09e550c2014-10-21 11:40:08 -0400117
118FAQ
119---
120
Dean Troyerd224ae12014-11-06 09:33:02 -0600121:doc:`The DevStack FAQ <faq>`
Sean M. Collins09e550c2014-10-21 11:40:08 -0400122
123Contributing
124------------
125
Dean Troyerd224ae12014-11-06 09:33:02 -0600126:doc:`Pitching in to make DevStack a better place <contributing>`
Sean M. Collins09e550c2014-10-21 11:40:08 -0400127
Dean Troyer63baba22014-10-29 21:57:31 -0500128Code
129====
Sean M. Collins09e550c2014-10-21 11:40:08 -0400130
Dean Troyer26dd21b2014-11-06 09:33:02 -0600131*A look at the bits that make it all go*
Dean Troyer63baba22014-10-29 21:57:31 -0500132
133Scripts
134-------
135
Dean Troyer26dd21b2014-11-06 09:33:02 -0600136* `stack.sh <stack.sh.html>`__ - The main script
137* `functions <functions.html>`__ - DevStack-specific functions
138* `functions-common <functions-common.html>`__ - Functions shared with other projects
139* `lib/apache <lib/apache.html>`__
140* `lib/baremetal <lib/baremetal.html>`__
141* `lib/ceilometer <lib/ceilometer.html>`__
142* `lib/ceph <lib/ceph.html>`__
143* `lib/cinder <lib/cinder.html>`__
144* `lib/config <lib/config.html>`__
145* `lib/database <lib/database.html>`__
146* `lib/dib <lib/dib.html>`__
147* `lib/dstat <lib/dstat.html>`__
148* `lib/glance <lib/glance.html>`__
149* `lib/heat <lib/heat.html>`__
150* `lib/horizon <lib/horizon.html>`__
151* `lib/infra <lib/infra.html>`__
152* `lib/ironic <lib/ironic.html>`__
153* `lib/keystone <lib/keystone.html>`__
154* `lib/ldap <lib/ldap.html>`__
155* `lib/neutron <lib/neutron.html>`__
156* `lib/nova <lib/nova.html>`__
157* `lib/opendaylight <lib/opendaylight.html>`__
158* `lib/oslo <lib/oslo.html>`__
159* `lib/rpc\_backend <lib/rpc_backend.html>`__
160* `lib/sahara <lib/sahara.html>`__
161* `lib/stackforge <lib/stackforge.html>`__
162* `lib/swift <lib/swift.html>`__
163* `lib/tempest <lib/tempest.html>`__
164* `lib/tls <lib/tls.html>`__
165* `lib/trove <lib/trove.html>`__
166* `lib/zaqar <lib/zaqar.html>`__
167* `unstack.sh <unstack.sh.html>`__
168* `clean.sh <clean.sh.html>`__
169* `run\_tests.sh <run_tests.sh.html>`__
Sean M. Collins09e550c2014-10-21 11:40:08 -0400170
Dean Troyer26dd21b2014-11-06 09:33:02 -0600171* `extras.d/40-dib.sh <extras.d/40-dib.sh.html>`__
172* `extras.d/50-ironic.sh <extras.d/50-ironic.sh.html>`__
173* `extras.d/60-ceph.sh <extras.d/60-ceph.sh.html>`__
174* `extras.d/70-sahara.sh <extras.d/70-sahara.sh.html>`__
175* `extras.d/70-trove.sh <extras.d/70-trove.sh.html>`__
176* `extras.d/70-zaqar.sh <extras.d/70-zaqar.sh.html>`__
177* `extras.d/80-opendaylight.sh <extras.d/80-opendaylight.sh.html>`__
178* `extras.d/80-tempest.sh <extras.d/80-tempest.sh.html>`__
Sean M. Collins09e550c2014-10-21 11:40:08 -0400179
Dean Troyer63baba22014-10-29 21:57:31 -0500180Configuration
181-------------
Sean M. Collins09e550c2014-10-21 11:40:08 -0400182
Dean Troyer63baba22014-10-29 21:57:31 -0500183.. toctree::
184 :glob:
185 :maxdepth: 1
186
Dean Troyer26dd21b2014-11-06 09:33:02 -0600187 local.conf
188 stackrc
189 openrc
190 exerciserc
191 eucarc
192
193Tools
194-----
195
196* `tools/build\_docs.sh <tools/build_docs.sh.html>`__
197* `tools/create-stack-user.sh <tools/create-stack-user.sh.html>`__
198* `tools/create\_userrc.sh <tools/create_userrc.sh.html>`__
199* `tools/fixup\_stuff.sh <tools/fixup_stuff.sh.html>`__
200* `tools/info.sh <tools/info.sh.html>`__
201* `tools/install\_pip.sh <tools/install_pip.sh.html>`__
202* `tools/install\_prereqs.sh <tools/install_prereqs.sh.html>`__
203* `tools/make\_cert.sh <tools/make_cert.sh.html>`__
204* `tools/upload\_image.sh <tools/upload_image.sh.html>`__
205
206Samples
207-------
208
209* `local.sh <samples/local.sh.html>`__
210
211Exercises
212---------
213
214* `exercise.sh <exercise.sh.html>`__
215* `exercises/aggregates.sh <exercises/aggregates.sh.html>`__
216* `exercises/boot\_from\_volume.sh <exercises/boot_from_volume.sh.html>`__
217* `exercises/bundle.sh <exercises/bundle.sh.html>`__
218* `exercises/client-args.sh <exercises/client-args.sh.html>`__
219* `exercises/client-env.sh <exercises/client-env.sh.html>`__
220* `exercises/euca.sh <exercises/euca.sh.html>`__
221* `exercises/floating\_ips.sh <exercises/floating_ips.sh.html>`__
222* `exercises/horizon.sh <exercises/horizon.sh.html>`__
223* `exercises/neutron-adv-test.sh <exercises/neutron-adv-test.sh.html>`__
224* `exercises/sahara.sh <exercises/sahara.sh.html>`__
225* `exercises/sec\_groups.sh <exercises/sec_groups.sh.html>`__
226* `exercises/swift.sh <exercises/swift.sh.html>`__
227* `exercises/trove.sh <exercises/trove.sh.html>`__
228* `exercises/volumes.sh <exercises/volumes.sh.html>`__
229* `exercises/zaqar.sh <exercises/zaqar.sh.html>`__