summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xopenstack/tester2
1 files changed, 2 insertions, 0 deletions
diff --git a/openstack/tester b/openstack/tester
index 89a32a1..1cfaf34 100755
--- a/openstack/tester
+++ b/openstack/tester
@@ -188,6 +188,7 @@ class Deployment(object):
hostname = str(uuid.uuid4())
# Deploy the image to openstack
+ # TODO: Ensure this is cleaned up when something raises an exception
args = ['glance', 'image-create',
'--name', hostname,
'--disk-format', 'raw',
@@ -203,6 +204,7 @@ class Deployment(object):
os.environ['OS_AUTH_URL'])
# Boot an instance from the image
+ # TODO: Ensure this is cleaned up when something raises an exception
# TODO: use python-novaclient
args = ['nova', 'boot',
'--flavor', 'm1.medium',