|
...
|
...
|
@@ -6,6 +6,7 @@ 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
|
10
|
|
|
10
|
11
|
Read more at http://devstack.org (built from the gh-pages branch)
|
|
11
|
12
|
|
|
...
|
...
|
@@ -13,13 +14,19 @@ IMPORTANT: Be sure to carefully read stack.sh and any other scripts you execute
|
|
13
|
13
|
|
|
14
|
14
|
# Versions
|
|
15
|
15
|
|
|
16
|
|
-The devstack master branch generally points to trunk versions of OpenStack components. For older, stable versions, look for branches named stable/[mil
|
|
17
|
|
-estone]. For example, you can do the following to create a diablo OpenStack cloud:
|
|
|
16
|
+The devstack master branch generally points to trunk versions of OpenStack components. For older, stable versions, look for branches named stable/[release]. For example, you can do the following to create a diablo OpenStack cloud:
|
|
18
|
17
|
|
|
19
|
18
|
git checkout stable/diablo
|
|
20
|
19
|
./stack.sh
|
|
21
|
20
|
|
|
22
|
|
-# To start a dev cloud (Installing in a dedicated, disposable vm is safer than installing on your dev machine!):
|
|
|
21
|
+Milestone builds are also available in this manner:
|
|
|
22
|
+
|
|
|
23
|
+ git checkout essex-3
|
|
|
24
|
+ ./stack.sh
|
|
|
25
|
+
|
|
|
26
|
+# Start A Dev Cloud
|
|
|
27
|
+
|
|
|
28
|
+Installing in a dedicated disposable vm is safer than installing on your dev machine! To start a dev cloud:
|
|
23
|
29
|
|
|
24
|
30
|
./stack.sh
|
|
25
|
31
|
|