You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
James E. Blair a208dcc340 Add .gitreview config file for gerrit.
The CI team is developing a new tool, git-review:

https://github.com/openstack-ci/git-review

which is intendend to replace rfc.sh. This adds a .gitreview file
so that it can automatically determine the canonical gerrit location
for the repository when first run. Later, rfc.sh will be updated to
indicate it is deprecated, and then eventually removed.

Change-Id: I9f1be3e80aa40732ec500d329d31d3e880427a8a
13 years ago
exercises permissions 13 years ago
files Merge pull request #184 from chmouel/install-packages-only-for-services-distros 13 years ago
tools Add .gitreview config file for gerrit. 13 years ago
.gitignore Update gitignore to ignore log files and localrc 13 years ago
.gitreview Add .gitreview config file for gerrit. 13 years ago
README.md changing dash to horizon 13 years ago
exercise.sh Source stackrc in exercises. 13 years ago
openrc RUNNING_TIMEOUT = BOOT_TIMEOUT + ACTIVE_TIMEOUT 13 years ago
stack.sh Merge pull request #201 from cloudbuilders/fix_noprime_again 13 years ago
stackrc Merge pull request #170 from cloudbuilders/ci-tests 13 years ago

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?