summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/release-test-os2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/release-test-os b/scripts/release-test-os
index b0ea3c4a..3db27e11 100755
--- a/scripts/release-test-os
+++ b/scripts/release-test-os
@@ -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',