Manage a pool of nodes for a distributed test infrastructure
Go to file
Paul Belanger eb65d8b378 Pass correct server_id when adding public IP
Change-Id: I0e287aa14f3f3f792757de19340d831484d59523
Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
2013-10-04 16:46:29 -04:00
nodepool Pass correct server_id when adding public IP 2013-10-04 16:46:29 -04:00
tools Make jenkins username and private key path configurable 2013-08-22 16:16:28 -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;