Browse code

Fix typos and thinkos in docs

Updates for the new major features and some clarification

Partial-Bug: #1235626

Change-Id: If2da63e62a14894e498b4163b5052d9b2b2069ed

Dean Troyer authored on 2013/10/18 02:03:55
Showing 4 changed files
... ...
@@ -5,10 +5,10 @@ Contributing to DevStack
5 5
 General
6 6
 -------
7 7
 
8
-DevStack is written in POSIX shell script.  This choice was made because
9
-it best illustrates the configuration steps that this implementation takes
10
-on setting up and interacting with OpenStack components.  DevStack specifically
11
-uses Bash and is compatible with Bash 3.
8
+DevStack is written in UNIX shell script.  It uses a number of bash-isms
9
+and so is limited to Bash (version 3 and up) and compatible shells.
10
+Shell script was chosen because it best illustrates the steps used to
11
+set up and interact with OpenStack components.
12 12
 
13 13
 DevStack's official repository is located on GitHub at
14 14
 https://github.com/openstack-dev/devstack.git.  Besides the master branch that
... ...
@@ -54,14 +54,14 @@ Sometimes the script needs to know the location of the DevStack install director
54 54
 ``TOP_DIR`` should always point there, even if the script itself is located in
55 55
 a subdirectory::
56 56
 
57
-    # Keep track of the current devstack directory.
57
+    # Keep track of the current DevStack directory.
58 58
     TOP_DIR=$(cd $(dirname "$0") && pwd)
59 59
 
60 60
 Many scripts will utilize shared functions from the ``functions`` file.  There are
61 61
 also rc files (``stackrc`` and ``openrc``) that are often included to set the primary
62 62
 configuration of the user environment::
63 63
 
64
-    # Keep track of the current devstack directory.
64
+    # Keep track of the current DevStack directory.
65 65
     TOP_DIR=$(cd $(dirname "$0") && pwd)
66 66
 
67 67
     # Import common functions
... ...
@@ -100,13 +100,14 @@ stackrc
100 100
 -------
101 101
 
102 102
 ``stackrc`` is the global configuration file for DevStack.  It is responsible for
103
-calling ``localrc`` if it exists so configuration can be overridden by the user.
103
+calling ``local.conf`` (or ``localrc`` if it exists) so local user configuration
104
+is recognized.
104 105
 
105 106
 The criteria for what belongs in ``stackrc`` can be vaguely summarized as
106 107
 follows:
107 108
 
108
-* All project respositories and branches (for historical reasons)
109
-* Global configuration that may be referenced in ``localrc``, i.e. ``DEST``, ``DATA_DIR``
109
+* All project repositories and branches handled directly in ``stack.sh``
110
+* Global configuration that may be referenced in ``local.conf``, i.e. ``DEST``, ``DATA_DIR``
110 111
 * Global service configuration like ``ENABLED_SERVICES``
111 112
 * Variables used by multiple services that do not have a clear owner, i.e.
112 113
   ``VOLUME_BACKING_FILE_SIZE`` (nova-volumes and cinder) or ``PUBLIC_NETWORK_NAME``
... ...
@@ -116,8 +117,9 @@ follows:
116 116
   not be changed for other reasons but the earlier file needs to dereference a
117 117
   variable set in the later file.  This should be rare.
118 118
 
119
-Also, variable declarations in ``stackrc`` do NOT allow overriding (the form
120
-``FOO=${FOO:-baz}``); if they did then they can already be changed in ``localrc``
119
+Also, variable declarations in ``stackrc`` before ``local.conf`` is sourced
120
+do NOT allow overriding (the form
121
+``FOO=${FOO:-baz}``); if they did then they can already be changed in ``local.conf``
121 122
 and can stay in the project file.
122 123
 
123 124
 
... ...
@@ -139,7 +141,9 @@ verbose in the comments _ABOVE_ the code they pertain to.  Shocco also supports
139 139
 Markdown formatting in the comments; use it sparingly.  Specifically, ``stack.sh``
140 140
 uses Markdown headers to divide the script into logical sections.
141 141
 
142
-.. _shocco: http://rtomayko.github.com/shocco/
142
+.. _shocco: https://github.com/dtroyer/shocco/tree/rst_support
143
+
144
+The script used to drive <code>shocco</code> is <code>tools/build_docs.sh</code>.
143 145
 
144 146
 
145 147
 Exercises
... ...
@@ -6,35 +6,39 @@ DevStack is a set of scripts and utilities to quickly deploy an OpenStack cloud.
6 6
 * To describe working configurations of OpenStack (which code branches work together?  what do config files look like for those branches?)
7 7
 * To make it easier for developers to dive into OpenStack so that they can productively contribute without having to understand every part of the system at once
8 8
 * To make it easy to prototype cross-project features
9
-* To sanity-check OpenStack builds (used in gating commits to the primary repos)
9
+* To provide an environment for the OpenStack CI testing on every commit to the projects
10 10
 
11
-Read more at http://devstack.org (built from the gh-pages branch)
11
+Read more at http://devstack.org.
12 12
 
13
-IMPORTANT: Be sure to carefully read `stack.sh` and any other scripts you execute before you run them, as they install software and may alter your networking configuration.  We strongly recommend that you run `stack.sh` in a clean and disposable vm when you are first getting started.
14
-
15
-# DevStack on Xenserver
16
-
17
-If you would like to use Xenserver as the hypervisor, please refer to the instructions in `./tools/xen/README.md`.
18
-
19
-# DevStack on Docker
20
-
21
-If you would like to use Docker as the hypervisor, please refer to the instructions in `./tools/docker/README.md`.
13
+IMPORTANT: Be sure to carefully read `stack.sh` and any other scripts you
14
+execute before you run them, as they install software and will alter your
15
+networking configuration.  We strongly recommend that you run `stack.sh`
16
+in a clean and disposable vm when you are first getting started.
22 17
 
23 18
 # Versions
24 19
 
25
-The devstack master branch generally points to trunk versions of OpenStack components.  For older, stable versions, look for branches named stable/[release] in the DevStack repo.  For example, you can do the following to create a diablo OpenStack cloud:
20
+The DevStack master branch generally points to trunk versions of OpenStack
21
+components.  For older, stable versions, look for branches named
22
+stable/[release] in the DevStack repo.  For example, you can do the
23
+following to create a grizzly OpenStack cloud:
26 24
 
27
-    git checkout stable/diablo
25
+    git checkout stable/grizzly
28 26
     ./stack.sh
29 27
 
30
-You can also pick specific OpenStack project releases by setting the appropriate `*_BRANCH` variables in `localrc` (look in `stackrc` for the default set).  Usually just before a release there will be milestone-proposed branches that need to be tested::
28
+You can also pick specific OpenStack project releases by setting the appropriate
29
+`*_BRANCH` variables in the ``localrc`` section of `local.conf` (look in
30
+`stackrc` for the default set).  Usually just before a release there will be
31
+milestone-proposed branches that need to be tested::
31 32
 
32 33
     GLANCE_REPO=https://github.com/openstack/glance.git
33 34
     GLANCE_BRANCH=milestone-proposed
34 35
 
35 36
 # Start A Dev Cloud
36 37
 
37
-Installing in a dedicated disposable vm is safer than installing on your dev machine!  Plus you can pick one of the supported Linux distros for your VM.  To start a dev cloud run the following NOT AS ROOT (see below for more):
38
+Installing in a dedicated disposable VM is safer than installing on your
39
+dev machine!  Plus you can pick one of the supported Linux distros for
40
+your VM.  To start a dev cloud run the following NOT AS ROOT (see
41
+**DevStack Execution Environment** below for more on user accounts):
38 42
 
39 43
     ./stack.sh
40 44
 
... ...
@@ -45,7 +49,7 @@ When the script finishes executing, you should be able to access OpenStack endpo
45 45
 
46 46
 We also provide an environment file that you can use to interact with your cloud via CLI:
47 47
 
48
-    # source openrc file to load your environment with osapi and ec2 creds
48
+    # source openrc file to load your environment with OpenStack CLI creds
49 49
     . openrc
50 50
     # list instances
51 51
     nova list
... ...
@@ -61,16 +65,37 @@ If the EC2 API is your cup-o-tea, you can create credentials and use euca2ools:
61 61
 
62 62
 DevStack runs rampant over the system it runs on, installing things and uninstalling other things.  Running this on a system you care about is a recipe for disappointment, or worse.  Alas, we're all in the virtualization business here, so run it in a VM.  And take advantage of the snapshot capabilities of your hypervisor of choice to reduce testing cycle times.  You might even save enough time to write one more feature before the next feature freeze...
63 63
 
64
-``stack.sh`` needs to have root access for a lot of tasks, but it also needs to have not-root permissions for most of its work and for all of the OpenStack services.  So ``stack.sh`` specifically does not run if you are root. This is a recent change (Oct 2013) from the previous behaviour of automatically creating a ``stack`` user.  Automatically creating a user account is not always the right response to running as root, so that bit is now an explicit step using ``tools/create-stack-user.sh``.  Run that (as root!) if you do not want to just use your normal login here, which works perfectly fine.
64
+``stack.sh`` needs to have root access for a lot of tasks, but uses ``sudo``
65
+for all of those tasks.  However, it needs to be not-root for most of its
66
+work and for all of the OpenStack services.  ``stack.sh`` specifically
67
+does not run if started as root.
68
+
69
+This is a recent change (Oct 2013) from the previous behaviour of
70
+automatically creating a ``stack`` user.  Automatically creating
71
+user accounts is not the right response to running as root, so
72
+that bit is now an explicit step using ``tools/create-stack-user.sh``. 
73
+Run that (as root!) or just check it out to see what DevStack's
74
+expectations are for the account it runs under.  Many people simply
75
+use their usual login (the default 'ubuntu' login on a UEC image
76
+for example).
65 77
 
66 78
 # Customizing
67 79
 
68
-You can override environment variables used in `stack.sh` by creating file name `localrc`.  It is likely that you will need to do this to tweak your networking configuration should you need to access your cloud from a different host.
80
+You can override environment variables used in `stack.sh` by creating file
81
+name `local.conf` with a ``locarc`` section as shown below.  It is likely
82
+that you will need to do this to tweak your networking configuration should
83
+you need to access your cloud from a different host.
84
+
85
+    [[local|localrc]]
86
+    VARIABLE=value
87
+
88
+See the **Local Configuration** section below for more details.
69 89
 
70 90
 # Database Backend
71 91
 
72 92
 Multiple database backends are available. The available databases are defined in the lib/databases directory.
73
-`mysql` is the default database, choose a different one by putting the following in `localrc`:
93
+`mysql` is the default database, choose a different one by putting the
94
+following in the `localrc` section:
74 95
 
75 96
     disable_service mysql
76 97
     enable_service postgresql
... ...
@@ -81,7 +106,7 @@ Multiple database backends are available. The available databases are defined in
81 81
 
82 82
 Multiple RPC backends are available. Currently, this
83 83
 includes RabbitMQ (default), Qpid, and ZeroMQ. Your backend of
84
-choice may be selected via the `localrc`.
84
+choice may be selected via the `localrc` section.
85 85
 
86 86
 Note that selecting more than one RPC backend will result in a failure.
87 87
 
... ...
@@ -95,9 +120,10 @@ Example (Qpid):
95 95
 
96 96
 # Apache Frontend
97 97
 
98
-Apache web server is enabled for wsgi services by setting `APACHE_ENABLED_SERVICES` in your localrc. But remember to enable these services at first as above.
98
+Apache web server is enabled for wsgi services by setting
99
+`APACHE_ENABLED_SERVICES` in your ``localrc`` section.  Remember to
100
+enable these services at first as above.
99 101
 
100
-Example:
101 102
     APACHE_ENABLED_SERVICES+=keystone,swift
102 103
 
103 104
 # Swift
... ...
@@ -108,23 +134,23 @@ vm. When running with only one replica the account, container and
108 108
 object services will run directly in screen. The others services like
109 109
 replicator, updaters or auditor runs in background.
110 110
 
111
-If you would like to enable Swift you can add this to your `localrc` :
111
+If you would like to enable Swift you can add this to your `localrc` section:
112 112
 
113 113
     enable_service s-proxy s-object s-container s-account
114 114
 
115 115
 If you want a minimal Swift install with only Swift and Keystone you
116
-can have this instead in your `localrc`:
116
+can have this instead in your `localrc` section:
117 117
 
118 118
     disable_all_services
119 119
     enable_service key mysql s-proxy s-object s-container s-account
120 120
 
121 121
 If you only want to do some testing of a real normal swift cluster
122 122
 with multiple replicas you can do so by customizing the variable
123
-`SWIFT_REPLICAS` in your `localrc` (usually to 3).
123
+`SWIFT_REPLICAS` in your `localrc` section (usually to 3).
124 124
 
125 125
 # Swift S3
126 126
 
127
-If you are enabling `swift3` in `ENABLED_SERVICES` devstack will
127
+If you are enabling `swift3` in `ENABLED_SERVICES` DevStack will
128 128
 install the swift3 middleware emulation. Swift will be configured to
129 129
 act as a S3 endpoint for Keystone so effectively replacing the
130 130
 `nova-objectstore`.
... ...
@@ -137,7 +163,7 @@ services are started in background and managed by `swift-init` tool.
137 137
 Basic Setup
138 138
 
139 139
 In order to enable Neutron a single node setup, you'll need the
140
-following settings in your `localrc` :
140
+following settings in your `localrc` section:
141 141
 
142 142
     disable_service n-net
143 143
     enable_service q-svc
... ...
@@ -146,12 +172,15 @@ following settings in your `localrc` :
146 146
     enable_service q-l3
147 147
     enable_service q-meta
148 148
     enable_service neutron
149
-    # Optional, to enable tempest configuration as part of devstack
149
+    # Optional, to enable tempest configuration as part of DevStack
150 150
     enable_service tempest
151 151
 
152 152
 Then run `stack.sh` as normal.
153 153
 
154
-devstack supports adding specific Neutron configuration flags to the service, Open vSwitch plugin and LinuxBridge plugin configuration files. To make use of this feature, the following variables are defined and can be configured in your `localrc` file:
154
+DevStack supports setting specific Neutron configuration flags to the
155
+service, Open vSwitch plugin and LinuxBridge plugin configuration files.
156
+To make use of this feature, the following variables are defined and can
157
+be configured in your `localrc` section:
155 158
 
156 159
     Variable Name             Config File  Section Modified
157 160
     -------------------------------------------------------------------------------------
... ...
@@ -160,12 +189,14 @@ devstack supports adding specific Neutron configuration flags to the service, Op
160 160
     Q_AGENT_EXTRA_SRV_OPTS    Plugin       `OVS` (for Open Vswitch) or `LINUX_BRIDGE` (for LinuxBridge)
161 161
     Q_SRV_EXTRA_DEFAULT_OPTS  Service      DEFAULT
162 162
 
163
-An example of using the variables in your `localrc` is below:
163
+An example of using the variables in your `localrc` section is below:
164 164
 
165 165
     Q_AGENT_EXTRA_AGENT_OPTS=(tunnel_type=vxlan vxlan_udp_port=8472)
166 166
     Q_SRV_EXTRA_OPTS=(tenant_network_type=vxlan)
167 167
 
168
-devstack also supports configuring the Neutron ML2 plugin. The ML2 plugin can run with the OVS, LinuxBridge, or Hyper-V agents on compute hosts. A simple way to configure the ml2 plugin is shown below:
168
+DevStack also supports configuring the Neutron ML2 plugin. The ML2 plugin
169
+can run with the OVS, LinuxBridge, or Hyper-V agents on compute hosts. A
170
+simple way to configure the ml2 plugin is shown below:
169 171
 
170 172
     # VLAN configuration
171 173
     Q_PLUGIN=ml2
... ...
@@ -179,7 +210,9 @@ devstack also supports configuring the Neutron ML2 plugin. The ML2 plugin can ru
179 179
     Q_PLUGIN=ml2
180 180
     Q_ML2_TENANT_NETWORK_TYPE=vxlan
181 181
 
182
-The above will default in devstack to using the OVS on each compute host. To change this, set the `Q_AGENT` variable to the agent you want to run (e.g. linuxbridge).
182
+The above will default in DevStack to using the OVS on each compute host.
183
+To change this, set the `Q_AGENT` variable to the agent you want to run
184
+(e.g. linuxbridge).
183 185
 
184 186
     Variable Name                    Notes
185 187
     -------------------------------------------------------------------------------------
... ...
@@ -194,13 +227,13 @@ The above will default in devstack to using the OVS on each compute host. To cha
194 194
 # Heat
195 195
 
196 196
 Heat is disabled by default. To enable it you'll need the following settings
197
-in your `localrc` :
197
+in your `localrc` section:
198 198
 
199 199
     enable_service heat h-api h-api-cfn h-api-cw h-eng
200 200
 
201 201
 Heat can also run in standalone mode, and be configured to orchestrate
202 202
 on an external OpenStack cloud. To launch only Heat in standalone mode
203
-you'll need the following settings in your `localrc` :
203
+you'll need the following settings in your `localrc` section:
204 204
 
205 205
     disable_all_services
206 206
     enable_service rabbit mysql heat h-api h-api-cfn h-api-cw h-eng
... ...
@@ -215,9 +248,23 @@ If tempest has been successfully configured, a basic set of smoke tests can be r
215 215
     $ cd /opt/stack/tempest
216 216
     $ nosetests tempest/scenario/test_network_basic_ops.py
217 217
 
218
+# DevStack on Xenserver
219
+
220
+If you would like to use Xenserver as the hypervisor, please refer to the instructions in `./tools/xen/README.md`.
221
+
222
+# DevStack on Docker
223
+
224
+If you would like to use Docker as the hypervisor, please refer to the instructions in `./tools/docker/README.md`.
225
+
218 226
 # Additional Projects
219 227
 
220
-DevStack has a hook mechanism to call out to a dispatch script at specific points in the execution if `stack.sh`, `unstack.sh` and `clean.sh`.  This allows higher-level projects, especially those that the lower level projects have no dependency on, to be added to DevStack without modifying the scripts.  Tempest is built this way as an example of how to structure the dispatch script, see `extras.d/80-tempest.sh`.  See `extras.d/README.md` for more information.
228
+DevStack has a hook mechanism to call out to a dispatch script at specific
229
+points in the execution of `stack.sh`, `unstack.sh` and `clean.sh`.  This
230
+allows upper-layer projects, especially those that the lower layer projects
231
+have no dependency on, to be added to DevStack without modifying the core
232
+scripts.  Tempest is built this way as an example of how to structure the
233
+dispatch script, see `extras.d/80-tempest.sh`.  See `extras.d/README.md`
234
+for more information.
221 235
 
222 236
 # Multi-Node Setup
223 237
 
... ...
@@ -232,7 +279,8 @@ You should run at least one "controller node", which should have a `stackrc` tha
232 232
     enable_service q-meta
233 233
     enable_service neutron
234 234
 
235
-You likely want to change your `localrc` to run a scheduler that will balance VMs across hosts:
235
+You likely want to change your `localrc` section to run a scheduler that
236
+will balance VMs across hosts:
236 237
 
237 238
     SCHEDULER=nova.scheduler.simple.SimpleScheduler
238 239
 
... ...
@@ -249,7 +297,7 @@ You can then run many compute nodes, each of which should have a `stackrc` which
249 249
 
250 250
 Cells is a new scaling option with a full spec at http://wiki.openstack.org/blueprint-nova-compute-cells.
251 251
 
252
-To setup a cells environment add the following to your `localrc`:
252
+To setup a cells environment add the following to your `localrc` section:
253 253
 
254 254
     enable_service n-cell
255 255
 
... ...
@@ -264,32 +312,41 @@ Historically DevStack has used ``localrc`` to contain all local configuration an
264 264
 
265 265
 The new config file ``local.conf`` is an extended-INI format that introduces a new meta-section header that provides some additional information such as a phase name and destination config filename:
266 266
 
267
-  [[ <phase> | <filename> ]]
267
+    [[ <phase> | <config-file-name> ]]
268 268
 
269
-where <phase> is one of a set of phase names defined by ``stack.sh`` and <filename> is the project config filename.  The filename is eval'ed in the stack.sh context so all environment variables are available and may be used.  Using the project config file variables in the header is strongly suggested (see example of NOVA_CONF below).  If the path of the config file does not exist it is skipped.
269
+where ``<phase>`` is one of a set of phase names defined by ``stack.sh``
270
+and ``<config-file-name>`` is the configuration filename.  The filename is
271
+eval'ed in the ``stack.sh`` context so all environment variables are
272
+available and may be used.  Using the project config file variables in
273
+the header is strongly suggested (see the ``NOVA_CONF`` example below).
274
+If the path of the config file does not exist it is skipped.
270 275
 
271 276
 The defined phases are:
272 277
 
273
-* local - extracts ``localrc`` from ``local.conf`` before ``stackrc`` is sourced
274
-* post-config - runs after the layer 2 services are configured and before they are started
275
-* extra - runs after services are started and before any files in ``extra.d`` are executes
278
+* **local** - extracts ``localrc`` from ``local.conf`` before ``stackrc`` is sourced
279
+* **post-config** - runs after the layer 2 services are configured and before they are started
280
+* **extra** - runs after services are started and before any files in ``extra.d`` are executed
276 281
 
277 282
 The file is processed strictly in sequence; meta-sections may be specified more than once but if any settings are duplicated the last to appear in the file will be used.
278 283
 
279
-  [[post-config|$NOVA_CONF]]
280
-  [DEFAULT]
281
-  use_syslog = True
284
+    [[post-config|$NOVA_CONF]]
285
+    [DEFAULT]
286
+    use_syslog = True
282 287
 
283
-  [osapi_v3]
284
-  enabled = False
288
+    [osapi_v3]
289
+    enabled = False
285 290
 
286
-A specific meta-section ``local:localrc`` is used to provide a default localrc file.  This allows all custom settings for DevStack to be contained in a single file.  ``localrc`` is not overwritten if it exists to preserve compatability.
291
+A specific meta-section ``local|localrc`` is used to provide a default
292
+``localrc`` file (actually ``.localrc.auto``).  This allows all custom
293
+settings for DevStack to be contained in a single file.  If ``localrc``
294
+exists it will be used instead to preserve backward-compatibility.
287 295
 
288
-  [[local|localrc]]
289
-  FIXED_RANGE=10.254.1.0/24
290
-  ADMIN_PASSWORD=speciale
291
-  LOGFILE=$DEST/logs/stack.sh.log
296
+    [[local|localrc]]
297
+    FIXED_RANGE=10.254.1.0/24
298
+    ADMIN_PASSWORD=speciale
299
+    LOGFILE=$DEST/logs/stack.sh.log
292 300
 
293
-Note that ``Q_PLUGIN_CONF_FILE`` is unique in that it is assumed to _NOT_ start with a ``/`` (slash) character.  A slash will need to be added:
301
+Note that ``Q_PLUGIN_CONF_FILE`` is unique in that it is assumed to *NOT*
302
+start with a ``/`` (slash) character.  A slash will need to be added:
294 303
 
295
-  [[post-config|/$Q_PLUGIN_CONF_FILE]]
304
+    [[post-config|/$Q_PLUGIN_CONF_FILE]]
... ...
@@ -10,12 +10,11 @@ that end with `.sh`.  To control the order that the scripts are sourced their
10 10
 names start with a two digit sequence number.  DevStack reserves the sequence
11 11
 numbers 00 through 09 and 90 through 99 for its own use.
12 12
 
13
-The scripts are sourced at each hook point so they should not declare anything
14
-at the top level that would cause a problem, specifically, functions.  This does
15
-allow the entire `stack.sh` variable space to be available.  The scripts are
13
+The scripts are sourced at the beginning of each script that calls them. The
14
+entire `stack.sh` variable space is available.  The scripts are
16 15
 sourced with one or more arguments, the first of which defines the hook phase:
17 16
 
18
-arg 1: source | stack | unstack | clean
17
+    source | stack | unstack | clean
19 18
 
20 19
     source: always called first in any of the scripts, used to set the
21 20
         initial defaults in a lib/* script or similar
... ...
@@ -53,7 +53,7 @@ if [[ -r $TOP_DIR/local.conf ]]; then
53 53
             if [[ -r $TOP_DIR/localrc ]]; then
54 54
                 warn $LINENO "localrc and local.conf:[[local]] both exist, using localrc"
55 55
             else
56
-                echo "# Generated file, do not exit" >$TOP_DIR/.localrc.auto
56
+                echo "# Generated file, do not edit" >$TOP_DIR/.localrc.auto
57 57
                 get_meta_section $TOP_DIR/local.conf local $lfile >>$TOP_DIR/.localrc.auto
58 58
             fi
59 59
         fi