blob: 61119e97967758e41b89507618b541589e918f52 [file] [log] [blame]
Anthony Young63987872011-09-30 11:34:43 -07001Tool to quickly deploy openstack dev environments.
2
3# Goals
4
5* To quickly build dev openstack environments in clean natty environments
6* To describe working configurations of openstack (which code branches work together? what do config files look like for those branches?)
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* To make it easy to prototype cross-project features
Jesse Andrewsba23cc72011-09-11 03:22:13 -07009
Anthony Young0e65abf2011-09-30 09:24:00 -070010Be sure to carefully read these scripts before you run them as they install software and may alter your networking configuration.
11
12# To start a dev cloud on your local machine (installing on a dedicated vm is safer!):
13
14 ./stack.sh
15
Anthony Young63987872011-09-30 11:34:43 -070016If working correctly, you should be able to access openstack endpoints, like:
17
18* Dashboard: http://myhost/
19* Keystone: http://myhost:5000/v2.0/
20
Anthony Young0e65abf2011-09-30 09:24:00 -070021# To start a dev cloud in an lxc container:
22
23 ./build_lxc.sh
24
25You 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.
26
Anthony Young63987872011-09-30 11:34:43 -070027# Customizing
28
29You 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.
30
Jesse Andrewsaec8fa42011-09-12 16:41:23 -070031# Todo
Jesse Andrews2caf8fd2011-09-12 16:15:11 -070032
Jesse Andrews2caf8fd2011-09-12 16:15:11 -070033* Add python-novaclient cli support
Jesse Andrews710eeec2011-09-13 00:04:24 -070034* syslog
Jesse Andrews710eeec2011-09-13 00:04:24 -070035* allow rabbit connection to be specified via environment variables with sensible defaults
Jesse Andrews1c1d1502011-09-12 19:29:56 -070036* Add volume support
Jesse Andrews1c1d1502011-09-12 19:29:56 -070037* Add quantum support
Jesse Andrews1c1d1502011-09-12 19:29:56 -070038
Jesse Andrews2caf8fd2011-09-12 16:15:11 -070039# Future
40
Jesse Andrews04ab3ae2011-09-12 16:29:14 -070041* idea: move from screen to tmux?
Jesse Andrewsba23cc72011-09-11 03:22:13 -070042* idea: create a live-cd / vmware preview image using this?