Manage a pool of nodes for a distributed test infrastructure
Go to file
Monty Taylor 1e190f5d57 Change use of error numbers to errno
The errno constants are more readble in the code.

Change-Id: I6cb4b61f4cf59f50969a7fc27cad35d9c90755f8
2013-08-28 14:56:06 -07:00
nodepool Change use of error numbers to errno 2013-08-28 14:56:06 -07: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;