Jump to: navigation, search

Difference between revisions of "Getting The Code"

Line 13: Line 13:
  
 
You can also get stable releases of the code from the OpenStack projects on Launchpad, for example:
 
You can also get stable releases of the code from the OpenStack projects on Launchpad, for example:
* [https://launchpad.net/nova/havana/2013.2.2/+download/nova-2013.2.2.tar.gz Openstack Compute] ([https://launchpad.net/nova/havana/2013.2.2/+download/nova-2013.2.2.tar.gz/+md5 md5],[https://launchpad.net/nova/havana/2013.2.2/+download/nova-2013.2.2.tar.gz.asc sig])
+
 
* [https://launchpad.net/swift/havana/1.10.0/+download/swift-1.10.0.tar.gz OpenStack Object Storage] ([https://launchpad.net/swift/havana/1.10.0/+download/swift-1.10.0.tar.gz/+md5 md5],[https://launchpad.net/swift/havana/1.10.0/+download/swift-1.10.0.tar.gz.asc sig])
+
* [https://launchpad.net/nova/icehouse/2014.1 Compute (Nova)]
* [https://launchpad.net/glance/havana/2013.2.2/+download/glance-2013.2.2.tar.gz OpenStack Image Service] ([https://launchpad.net/glance/havana/2013.2.2/+download/glance-2013.2.2.tar.gz/+md5 md5],[https://launchpad.net/glance/havana/2013.2.2/+download/glance-2013.2.2.tar.gz.asc sig])
+
* [https://launchpad.net/swift/icehouse/1.13.1 Object Storage (Swift)]  
* [https://launchpad.net/neutron/havana/2013.2.2/+download/neutron-2013.2.2.tar.gz OpenStack Networking] ([https://launchpad.net/neutron/havana/2013.2.2/+download/neutron-2013.2.2.tar.gz/+md5 md5],[https://launchpad.net/neutron/havana/2013.2.2/+download/neutron-2013.2.2.tar.gz.asc sig])
+
* [https://launchpad.net/glance/icehouse/2014.1 Image Service (Glance)]  
* [https://launchpad.net/cinder/havana/2013.2.2/+download/cinder-2013.2.2.tar.gz OpenStack Block Storage] ([https://launchpad.net/cinder/havana/2013.2.2/+download/cinder-2013.2.2.tar.gz/+md5 md5],[https://launchpad.net/cinder/havana/2013.2.2/+download/cinder-2013.2.2.tar.gz.asc sig])
+
* [https://launchpad.net/neutron/icehouse/2014.1 Networking (Neutron)]  
* [https://launchpad.net/keystone/havana/2013.2.2/+download/keystone-2013.2.2.tar.gz OpenStack Identity] ([https://launchpad.net/keystone/havana/2013.2.2/+download/keystone-2013.2.2.tar.gz/+md5 md5],[https://launchpad.net/keystone/havana/2013.2.2/+download/keystone-2013.2.2.tar.gz.asc sig])
+
* [https://launchpad.net/cinder/icehouse/2014.1 Block Storage (Cinder)]
* [https://launchpad.net/horizon/havana/2013.2.2/+download/horizon-2013.2.2.tar.gz OpenStack Dashboard] ([https://launchpad.net/horizon/havana/2013.2.2/+download/horizon-2013.2.2.tar.gz/+md5 md5],[https://launchpad.net/horizon/havana/2013.2.2/+download/horizon-2013.2.2.tar.gz.asc sig])
+
* [https://launchpad.net/keystone/icehouse/2014.1 Identity (Keystone)]
 +
* [https://launchpad.net/horizon/icehouse/2014.1 Dashboard (Horizon)]
 +
* [https://launchpad.net/ceilometer/icehouse/2014.1 Telemetry (Ceilometer)]
 +
* [https://launchpad.net/heat/icehouse/2014.1 Orchestration (Heat)]
 +
* [https://launchpad.net/trove/icehouse/2014.1 Database Service (Trove)]
  
 
= Getting dependencies =
 
= Getting dependencies =

Revision as of 17:52, 17 April 2014

Getting the source code

OpenStack manages source code in git using a code review tool called Gerrit. The workflow for working with Gerrit is described at GerritWorkflow. Git repositories are mirrored to git.openstack.org and Github.

To get a copy of an OpenStack project, you can clone a repo from git.openstack.org and browse the source code at git.openstack.org/cgit. For instance, to clone the Swift repo:

git clone git://git.openstack.org/openstack/swift

Alternatively, you can use the Github mirror to clone repos and browse code. The git.openstack.org and GitHub mirrors are maintained the same way and contain the same code, so you can use either one, with the difference being that git.openstack.org is hosted by the OpenStack organization.

You can also get stable releases of the code from the OpenStack projects on Launchpad, for example:

Getting dependencies

See DevStack.