8 lines
232 B
Python
8 lines
232 B
Python
import openstack.cloud
|
|
openstack.cloud.simple_logging()
|
|
|
|
cloud = openstack.cloud.openstack_cloud(cloud='fuga', region_name='cystack')
|
|
cloud.pprint([
|
|
image for image in cloud.list_images()
|
|
if 'ubuntu' in image.name.lower()])
|