summaryrefslogtreecommitdiffstats
path: root/examples/demo.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/demo.py')
-rw-r--r--examples/demo.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/demo.py b/examples/demo.py
index 108bdc0..faf6459 100644
--- a/examples/demo.py
+++ b/examples/demo.py
@@ -13,10 +13,11 @@ os_creds = OSCreds(username='admin', password='cable123', auth_url='http://192.1
# Images
-from snaps.openstack.create_image import ImageSettings, OpenStackImage
+from snaps.openstack.create_image import OpenStackImage
+from snaps.config.image import ImageConfig
-image_settings = ImageSettings(name='cirros-test', image_user='cirros', img_format='qcow2',
- url='http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img')
+image_settings = ImageConfig(name='cirros-test', image_user='cirros', img_format='qcow2',
+ url='http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img')
image = OpenStackImage(os_creds, image_settings)
image.create()