System for quickly installing an OpenStack cloud from upstream git for testing and development.
Go to file
Jesse Andrews f75d848ece openrc should use same variables as stack.sh 2011-10-24 13:38:52 -07:00
files fix whitespace 2011-10-20 10:08:20 -07:00
tools Add comment about why the sleep is there 2011-10-24 12:59:29 -07:00
.gitignore make stackrc source localrc 2011-09-28 17:04:01 -05:00
README.md move readme to markdown 2011-10-13 10:37:45 -07:00
exercise.sh documentation on exercise 2011-10-24 11:29:08 -07:00
openrc openrc should use same variables as stack.sh 2011-10-24 13:38:52 -07:00
stack.sh Merge pull request #85 from cloudbuilders/n-vol 2011-10-21 11:32:25 -07:00
stackrc change to git:// from https:// remotes 2011-10-24 11:09:07 -07:00

README.md

Tool to quickly deploy openstack dev environments.

Goals

  • To quickly build dev openstack environments in clean natty environments
  • To describe working configurations of openstack (which code branches work together? what do config files look like for those branches?)
  • 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
  • To make it easy to prototype cross-project features

Read more at http://devstack.org (built from the gh-pages branch)

Be sure to carefully read these scripts before you run them as they install software and may alter your networking configuration.

To start a dev cloud on your local machine (installing on a dedicated vm is safer!):

./stack.sh

If working correctly, you should be able to access openstack endpoints, like:

To start a dev cloud in an lxc container:

./build_lxc.sh

You will need to configure a bridge and network on your host machine (by default br0) before starting build_lxc.sh. A sample host-only network configuration can be found in lxc_network_hostonlyplusnat.sh.

Customizing

You can tweak environment variables by creating file name 'localrc' should you need to override defaults. 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.

Todo

  • Add python-novaclient cli support
  • syslog
  • Add volume support
  • Add quantum support

Future

  • idea: move from screen to tmux?
  • idea: create a live-cd / vmware preview image using this?