Manage a pool of nodes for a distributed test infrastructure
Go to file
Monty Taylor 6f2168ffca Ignore hacking warnings
Some of us have hacking installed global, which means nodepool flake8
produces a lot of spurious warnings. Suppress them.

Change-Id: Ie869a92fa423dc022c5c37c102f5a9071ccaf1b0
2013-09-13 11:09:15 -05:00
nodepool Merge "Fix HOLD state" 2013-09-10 22:25:24 +00: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 Add a nodepool command 2013-09-03 09:27:04 -07:00
setup.cfg Add a nodepool command 2013-09-03 09:27:04 -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 Ignore hacking warnings 2013-09-13 11:09:15 -05:00

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;