Anthony Young | 6398787 | 2011-09-30 11:34:43 -0700 | [diff] [blame] | 1 | Tool to quickly deploy openstack dev environments. |
| 2 | |
| 3 | # Goals |
| 4 | |
Jesse Andrews | 38df122 | 2011-11-20 09:55:44 -0800 | [diff] [blame] | 5 | * To quickly build dev openstack environments in clean oneiric environments |
Anthony Young | 6398787 | 2011-09-30 11:34:43 -0700 | [diff] [blame] | 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 Andrews | ba23cc7 | 2011-09-11 03:22:13 -0700 | [diff] [blame] | 9 | |
Jesse Andrews | b69d6ce | 2011-10-13 10:36:00 -0700 | [diff] [blame] | 10 | Read more at http://devstack.org (built from the gh-pages branch) |
| 11 | |
Anthony Young | 0e65abf | 2011-09-30 09:24:00 -0700 | [diff] [blame] | 12 | Be sure to carefully read these scripts before you run them as they install software and may alter your networking configuration. |
| 13 | |
| 14 | # To start a dev cloud on your local machine (installing on a dedicated vm is safer!): |
| 15 | |
| 16 | ./stack.sh |
| 17 | |
Anthony Young | 6398787 | 2011-09-30 11:34:43 -0700 | [diff] [blame] | 18 | If working correctly, you should be able to access openstack endpoints, like: |
| 19 | |
Tres Henry | ca85b79 | 2011-10-28 14:00:21 -0700 | [diff] [blame] | 20 | * Horizon: http://myhost/ |
Anthony Young | 6398787 | 2011-09-30 11:34:43 -0700 | [diff] [blame] | 21 | * Keystone: http://myhost:5000/v2.0/ |
| 22 | |
Anthony Young | 6398787 | 2011-09-30 11:34:43 -0700 | [diff] [blame] | 23 | # Customizing |
| 24 | |
| 25 | 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. |
| 26 | |
Jesse Andrews | aec8fa4 | 2011-09-12 16:41:23 -0700 | [diff] [blame] | 27 | # Todo |
Jesse Andrews | 2caf8fd | 2011-09-12 16:15:11 -0700 | [diff] [blame] | 28 | |
Jesse Andrews | 2caf8fd | 2011-09-12 16:15:11 -0700 | [diff] [blame] | 29 | * Add python-novaclient cli support |
Jesse Andrews | 710eeec | 2011-09-13 00:04:24 -0700 | [diff] [blame] | 30 | * syslog |
Jesse Andrews | 1c1d150 | 2011-09-12 19:29:56 -0700 | [diff] [blame] | 31 | * Add volume support |
Jesse Andrews | 1c1d150 | 2011-09-12 19:29:56 -0700 | [diff] [blame] | 32 | * Add quantum support |
Jesse Andrews | 1c1d150 | 2011-09-12 19:29:56 -0700 | [diff] [blame] | 33 | |
Jesse Andrews | 2caf8fd | 2011-09-12 16:15:11 -0700 | [diff] [blame] | 34 | # Future |
| 35 | |
Jesse Andrews | 04ab3ae | 2011-09-12 16:29:14 -0700 | [diff] [blame] | 36 | * idea: move from screen to tmux? |
Jesse Andrews | ba23cc7 | 2011-09-11 03:22:13 -0700 | [diff] [blame] | 37 | * idea: create a live-cd / vmware preview image using this? |