Manage a pool of nodes for a distributed test infrastructure
Go to file
James E. Blair 0ec2246514 Add JenkinsManager
Same idea as a ProviderManager: serialize changes to each jenkins
server (with a rate limit).

Change-Id: I631d50dcfd13c29d2802c192d6e1ac7889256a90
2013-08-22 10:43:33 -07:00
nodepool Add JenkinsManager 2013-08-22 10:43:33 -07:00
tools Use a sensible SQLAlchemy session model 2013-08-16 20:21:33 -07:00
.gitignore Initial commit 2013-08-15 09:47:23 -07:00
.gitreview Added .gitreview 2013-08-13 17:10:06 +00:00
README Use a sensible SQLAlchemy session model 2013-08-16 20:21:33 -07:00
README.rst Initial commit 2013-08-15 09:47:23 -07:00
requirements.txt Use MySQL 2013-08-15 17:49:41 -07:00
setup.cfg Initial commit 2013-08-15 09:47:23 -07:00
setup.py Initial commit 2013-08-15 09:47:23 -07:00
test-requirements.txt Initial commit 2013-08-15 09:47:23 -07:00
tox.ini Initial commit 2013-08-15 09:47:23 -07:00

README

Developer setup:

mysql -u root

mysql> create database nodepool;
mysql> GRANT ALL ON nodepool.* TO 'nodepool'@'localhost';
mysql> flush privileges;

nodepool -d -c tools/fake.yaml

After each run (the fake nova provider is only in-memory):

mysql> delete from snapshot_image; delete from node;