blob: baee40080680ebf2ea0cb0d06210d8c66b4c208a [file] [log] [blame]
Dean Troyer54b97322014-06-20 17:53:55 -05001<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>DevStack - Overview</title>
6 <meta name="description" content="">
7 <meta name="author" content="">
8
9 <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
10 <!--[if lt IE 9]>
11 <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
12 <![endif]-->
13
14 <!-- Le styles -->
15 <link href="assets/css/bootstrap.css" rel="stylesheet">
16 <link href="assets/css/local.css" rel="stylesheet">
17 <style type="text/css">
18 body { padding-top: 60px; }
19 dd { padding: 10px; }
20 </style>
21
22 <!-- Le javascripts -->
23 <script src="assets/js/jquery-1.7.1.min.js" type="text/javascript" charset="utf-8"></script>
24 <script src="assets/js/bootstrap.js" type="text/javascript" charset="utf-8"></script>
25 </head>
26
27 <body>
28
29 <div class="navbar navbar-fixed-top">
30 <div class="navbar-inner">
31 <div class="container">
32 <a class="brand" href="/">DevStack</a>
33 <ul class="nav pull-right">
34 <li><a href="overview.html">Overview</a></li>
35 <li><a href="changes.html">Changes</a></li>
36 <li><a href="faq.html">FAQ</a></li>
37 <li><a href="http://github.com/openstack-dev/devstack">GitHub</a></li>
38 <li><a href="https://review.openstack.org/#/q/status:open+project:openstack-dev/devstack,n,z">Gerrit</a></li>
39 </ul>
40 </div>
41 </div>
42 </div>
43
44 <div class="container" id="home">
45
46 <section id="overview" class="span12">
47
48 <div class='row pull-left'>
49 <h2>Overview <small>DevStack from a cloud-height view</small></h2>
Dean Troyer1c425992014-07-28 17:51:13 -050050 <p>DevStack has evolved to support a large number of configuration options and alternative platforms and support services. That evolution has grown well beyond what was originally intended and the majority of configuration combinations are rarely, if ever, tested. DevStack is not a general OpenStack installer and was never meant to be everything to everyone..</p>
51 <p>Below is a list of what is specifically is supported (read that as "tested") going forward.</p>
Dean Troyer54b97322014-06-20 17:53:55 -050052
53 <h2>Supported Components</h2>
54
55 <h3>Base OS</h3>
56 <p><em>The OpenStack Technical Committee (TC) has defined the current CI strategy to include the latest Ubuntu release and the latest RHEL release (for Python 2.6 testing).</em></p>
57 <ul>
58 <li>Ubuntu: current LTS release plus current development release</li>
59 <li>Fedora: current release plus previous release</li>
60 <li>RHEL: current major release</li>
61 <li>Other OS platforms may continue to be included but the maintenance of those platforms shall not be assumed simply due to their presence. Having a listed point-of-contact for each additional OS will greatly increase its chance of being well-maintained.</li>
62 <li>Patches for Ubuntu and/or Fedora will not be held up due to side-effects on other OS platforms.</li>
63 </ul>
64
65 <h3>Databases</h3>
66 <p><em>As packaged by the host OS</em></p>
67 <ul>
68 <li>MySQL</li>
69 <li>PostgreSQL</li>
70 </ul>
71
72 <h3>Queues</h3>
73 <p><em>As packaged by the host OS</em></p>
74 <ul>
75 <li>Rabbit</li>
76 <li>Qpid</li>
77<!--
78 <li>ZeroMQ</li>
79-->
80 </ul>
81
82 <h3>Web Server</h3>
83 <p><em>As packaged by the host OS</em></p>
84 <ul>
85 <li>Apache</li>
86 </ul>
87
88 <h3>OpenStack Network</h3>
89 <p><em>Default to Nova Network, optionally use Neutron</em></p>
90 <ul>
91 <li>Nova Network: FlatDHCP</li>
92 <li>Neutron: A basic configuration approximating the original FlatDHCP mode using linuxbridge or OpenVSwitch.</li>
93 </ul>
94
95 <h3>Services</h3>
Dean Troyer1c425992014-07-28 17:51:13 -050096 <p>The default services configured by DevStack are Identity (Keystone), Object Storage (Swift), Image Storage (Glance), Block Storage (Cinder), Compute (Nova), Network (Nova), Dashboard (Horizon), Orchestration (Heat)</p>
Dean Troyer54b97322014-06-20 17:53:55 -050097 <p>Additional services not included directly in DevStack can be tied in to <code>stack.sh</code> using the <a href="plugins.html">plugin mechanism</a> to call scripts that perform the configuration and startup of the service.</p>
98
99 <h3>Node Configurations</h3>
100 <ul>
101 <li>single node</li>
102 <li>multi-node is not tested regularly by the core team, and even then only minimal configurations are reviewed</li>
103 </ul>
104
105 <h3>Exercises</h3>
Dean Troyer1c425992014-07-28 17:51:13 -0500106 <p>The DevStack exercise scripts are no longer used as integration and gate testing as that job has transitioned to Tempest. They are still maintained as a demonstrations of using OpenStack from the command line and for quick operational testing.</p>
Dean Troyer54b97322014-06-20 17:53:55 -0500107
108 </div>
109
110 </section>
111
112 <footer>
113 <p>&copy; Openstack Foundation 2011-2014 &mdash; An <a href="https://www.openstack.org/">OpenStack</a> <a href="https://wiki.openstack.org/wiki/Programs">program</a></p>
114 </footer>
115
116 </div> <!-- /container -->
117 </body>
118</html>