-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
28 lines (14 loc) · 1.03 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module for installing openstack testing/development environment
this module currently only works on Ubuntu Precise.
It should likely add support for running on Mac reasonably soon!
## Summary
This script supports installing 3 seperate componets:
### installing openstack testing environment
to install, simply run the command:
> export install_test_env=true;export github_user_login=XXXX;export github_user_password=XXXXXXX;bash -c "$(curl -fsS https://raw.github.com/bodepd/puppet-openstack_test/master/install.sh)"
(of coarse, you should replace XXX with your github username and password if you intend to use operations that write to
github.
### Installing a Jenkins server
> export install_jenkins_server=true;bash -c "$(curl -fsS https://raw.github.com/bodepd/puppet-openstack_test/master/install.sh)"
### Installing a jenkins agent
> export install_jenkins_agent=true;export jenkins_server=XXXXXX;export ssh_password=jenkins123;bash -c "$(curl -fsS https://raw.github.com/bodepd/puppet-openstack_test/master/install.sh)"