3 # jose.lausuch@ericsson.com
4 # valentin.boucher@orange.com
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
17 from cinderclient import client as cinderclient
18 import functest.utils.functest_logger as ft_logger
19 from glanceclient import client as glanceclient
20 from keystoneclient.v2_0 import client as keystoneclient
21 from neutronclient.v2_0 import client as neutronclient
22 from novaclient import client as novaclient
24 logger = ft_logger.Logger("openstack_utils").getLogger()
27 # *********************************************
29 # *********************************************
30 def check_credentials():
32 Check if the OpenStack credentials (openrc) are sourced
34 env_vars = ['OS_AUTH_URL', 'OS_USERNAME', 'OS_PASSWORD', 'OS_TENANT_NAME']
35 return all(map(lambda v: v in os.environ and os.environ[v], env_vars))
38 def get_credentials(service):
39 """Returns a creds dictionary filled with the following keys:
41 * password/api_key (depending on the service)
42 * tenant_name/project_id (depending on the service)
44 :param service: a string indicating the name of the service
45 requesting the credentials.
49 # Check that the env vars exists:
50 envvars = ('OS_USERNAME', 'OS_PASSWORD', 'OS_AUTH_URL', 'OS_TENANT_NAME')
51 for envvar in envvars:
52 if os.getenv(envvar) is None:
53 logger.error("'%s' is not exported as an env variable." % envvar)
56 # Unfortunately, each of the OpenStack client will request slightly
57 # different entries in their credentials dict.
58 if service.lower() in ("nova", "cinder"):
63 tenant = "tenant_name"
65 # The most common way to pass these info to the script is to do it through
66 # environment variables.
68 "username": os.environ.get("OS_USERNAME"),
69 password: os.environ.get("OS_PASSWORD"),
70 "auth_url": os.environ.get("OS_AUTH_URL"),
71 tenant: os.environ.get("OS_TENANT_NAME")
73 if os.getenv('OS_ENDPOINT_TYPE') is not None:
75 "endpoint_type": os.environ.get("OS_ENDPOINT_TYPE")
77 if os.getenv('OS_REGION_NAME') is not None:
79 "region_name": os.environ.get("OS_REGION_NAME")
81 cacert = os.environ.get("OS_CACERT")
82 if cacert is not None:
83 # each openstack client uses differnt kwargs for this
84 creds.update({"cacert": cacert,
86 "https_ca_cert": cacert,
87 "https_cacert": cacert,
89 creds.update({"insecure": "True", "https_insecure": "True"})
90 if not os.path.isfile(cacert):
91 logger.info("WARNING: The 'OS_CACERT' environment variable is "
92 "set to %s but the file does not exist." % cacert)
96 def source_credentials(rc_file):
97 pipe = subprocess.Popen(". %s; env" % rc_file, stdout=subprocess.PIPE,
99 output = pipe.communicate()[0]
100 env = dict((line.split("=", 1) for line in output.splitlines()))
101 os.environ.update(env)
105 def get_credentials_for_rally():
106 creds = get_credentials("keystone")
107 admin_keys = ['username', 'tenant_name', 'password']
108 endpoint_types = [('internalURL', 'internal'),
109 ('publicURL', 'public'), ('adminURL', 'admin')]
110 if 'endpoint_type' in creds.keys():
111 for k, v in endpoint_types:
112 if creds['endpoint_type'] == k:
113 creds['endpoint_type'] = v
114 rally_conf = {"type": "ExistingCloud", "admin": {}}
116 if key in admin_keys:
117 rally_conf['admin'][key] = creds[key]
119 rally_conf[key] = creds[key]
123 # *********************************************
125 # *********************************************
126 def get_keystone_client():
127 creds_keystone = get_credentials("keystone")
128 return keystoneclient.Client(**creds_keystone)
131 def get_nova_client():
132 creds_nova = get_credentials("nova")
133 return novaclient.Client('2', **creds_nova)
136 def get_cinder_client():
137 creds_cinder = get_credentials("cinder")
138 creds_cinder.update({
139 "service_type": "volume"
141 return cinderclient.Client('2', **creds_cinder)
144 def get_neutron_client():
145 creds_neutron = get_credentials("neutron")
146 return neutronclient.Client(**creds_neutron)
149 def get_glance_client():
150 keystone_client = get_keystone_client()
151 glance_endpoint_type = 'publicURL'
152 os_endpoint_type = os.getenv('OS_ENDPOINT_TYPE')
153 if os_endpoint_type is not None:
154 glance_endpoint_type = os_endpoint_type
155 glance_endpoint = keystone_client.service_catalog.url_for(
156 service_type='image', endpoint_type=glance_endpoint_type)
157 return glanceclient.Client(1, glance_endpoint,
158 token=keystone_client.auth_token)
160 # *********************************************
162 # *********************************************
165 def get_instances(nova_client):
167 instances = nova_client.servers.list(search_opts={'all_tenants': 1})
170 logger.error("Error [get_instances(nova_client)]: %s" % e)
174 def get_instance_status(nova_client, instance):
176 instance = nova_client.servers.get(instance.id)
177 return instance.status
179 logger.error("Error [get_instance_status(nova_client)]: %s" % e)
183 def get_instance_by_name(nova_client, instance_name):
185 instance = nova_client.servers.find(name=instance_name)
188 logger.error("Error [get_instance_by_name(nova_client, '%s')]: %s"
189 % (instance_name, e))
193 def get_flavor_id(nova_client, flavor_name):
194 flavors = nova_client.flavors.list(detailed=True)
197 if f.name == flavor_name:
203 def get_flavor_id_by_ram_range(nova_client, min_ram, max_ram):
204 flavors = nova_client.flavors.list(detailed=True)
207 if min_ram <= f.ram and f.ram <= max_ram:
213 def get_floating_ips(nova_client):
215 floating_ips = nova_client.floating_ips.list()
218 logger.error("Error [get_floating_ips(nova_client)]: %s" % e)
222 def get_hypervisors(nova_client):
225 hypervisors = nova_client.hypervisors.list()
226 for hypervisor in hypervisors:
227 if hypervisor.state == "up":
228 nodes.append(hypervisor.hypervisor_hostname)
231 logger.error("Error [get_hypervisors(nova_client)]: %s" % e)
235 def create_flavor(nova_client, flavor_name, ram, disk, vcpus):
237 flavor = nova_client.flavors.create(flavor_name, ram, vcpus, disk)
239 deploy_scenario = os.environ.get('DEPLOY_SCENARIO')
240 if deploy_scenario is not None and 'fdio' in deploy_scenario:
241 extra_specs['hw:mem_page_size'] = 'large'
242 flavor.update(extra_specs)
244 logger.error("Error [create_flavor(nova_client, '%s', '%s', '%s', "
245 "'%s')]: %s" % (flavor_name, ram, disk, vcpus, e))
250 def create_instance(flavor_name,
253 instance_name="functest-vm",
259 nova_client = get_nova_client()
261 flavor = nova_client.flavors.find(name=flavor_name)
263 flavors = nova_client.flavors.list()
264 logger.error("Error: Flavor '%s' not found. Available flavors are: "
265 "\n%s" % (flavor_name, flavors))
267 if fixed_ip is not None:
268 nics = {"net-id": network_id, "v4-fixed-ip": fixed_ip}
270 nics = {"net-id": network_id}
272 instance = nova_client.servers.create(
277 availability_zone=av_zone,
281 instance = nova_client.servers.create(
286 config_drive=confdrive,
288 availability_zone=av_zone,
294 def create_instance_and_wait_for_active(flavor_name,
304 VM_BOOT_TIMEOUT = 180
305 nova_client = get_nova_client()
306 instance = create_instance(flavor_name,
315 count = VM_BOOT_TIMEOUT / SLEEP
316 for n in range(count, -1, -1):
317 status = get_instance_status(nova_client, instance)
318 if status.lower() == "active":
320 elif status.lower() == "error":
321 logger.error("The instance %s went to ERROR status."
325 logger.error("Timeout booting the instance %s." % instance_name)
329 def create_floating_ip(neutron_client):
330 extnet_id = get_external_net_id(neutron_client)
331 props = {'floating_network_id': extnet_id}
333 ip_json = neutron_client.create_floatingip({'floatingip': props})
334 fip_addr = ip_json['floatingip']['floating_ip_address']
335 fip_id = ip_json['floatingip']['id']
337 logger.error("Error [create_floating_ip(neutron_client)]: %s" % e)
339 return {'fip_addr': fip_addr, 'fip_id': fip_id}
342 def add_floating_ip(nova_client, server_id, floatingip_id):
344 nova_client.servers.add_floating_ip(server_id, floatingip_id)
347 logger.error("Error [add_floating_ip(nova_client, '%s', '%s')]: %s"
348 % (server_id, floatingip_id, e))
352 def delete_instance(nova_client, instance_id):
354 nova_client.servers.force_delete(instance_id)
357 logger.error("Error [delete_instance(nova_client, '%s')]: %s"
362 def delete_floating_ip(nova_client, floatingip_id):
364 nova_client.floating_ips.delete(floatingip_id)
367 logger.error("Error [delete_floating_ip(nova_client, '%s')]:"
368 % (floatingip_id, e))
372 # *********************************************
374 # *********************************************
375 def get_network_list(neutron_client):
376 network_list = neutron_client.list_networks()['networks']
377 if len(network_list) == 0:
383 def get_router_list(neutron_client):
384 router_list = neutron_client.list_routers()['routers']
385 if len(router_list) == 0:
391 def get_port_list(neutron_client):
392 port_list = neutron_client.list_ports()['ports']
393 if len(port_list) == 0:
399 def get_network_id(neutron_client, network_name):
400 networks = neutron_client.list_networks()['networks']
403 if n['name'] == network_name:
409 def get_subnet_id(neutron_client, subnet_name):
410 subnets = neutron_client.list_subnets()['subnets']
413 if s['name'] == subnet_name:
419 def get_router_id(neutron_client, router_name):
420 routers = neutron_client.list_routers()['routers']
423 if r['name'] == router_name:
429 def get_private_net(neutron_client):
430 # Checks if there is an existing shared private network
431 networks = neutron_client.list_networks()['networks']
432 if len(networks) == 0:
435 if (net['router:external'] is False) and (net['shared'] is True):
440 def get_external_net(neutron_client):
441 for network in neutron_client.list_networks()['networks']:
442 if network['router:external']:
443 return network['name']
447 def get_external_net_id(neutron_client):
448 for network in neutron_client.list_networks()['networks']:
449 if network['router:external']:
454 def check_neutron_net(neutron_client, net_name):
455 for network in neutron_client.list_networks()['networks']:
456 if network['name'] == net_name:
457 for subnet in network['subnets']:
462 def create_neutron_net(neutron_client, name):
463 json_body = {'network': {'name': name,
464 'admin_state_up': True}}
466 network = neutron_client.create_network(body=json_body)
467 network_dict = network['network']
468 return network_dict['id']
470 logger.error("Error [create_neutron_net(neutron_client, '%s')]: %s"
475 def create_neutron_subnet(neutron_client, name, cidr, net_id):
476 json_body = {'subnets': [{'name': name, 'cidr': cidr,
477 'ip_version': 4, 'network_id': net_id}]}
479 subnet = neutron_client.create_subnet(body=json_body)
480 return subnet['subnets'][0]['id']
482 logger.error("Error [create_neutron_subnet(neutron_client, '%s', "
483 "'%s', '%s')]: %s" % (name, cidr, net_id, e))
487 def create_neutron_router(neutron_client, name):
488 json_body = {'router': {'name': name, 'admin_state_up': True}}
490 router = neutron_client.create_router(json_body)
491 return router['router']['id']
493 logger.error("Error [create_neutron_router(neutron_client, '%s')]: %s"
498 def create_neutron_port(neutron_client, name, network_id, ip):
499 json_body = {'port': {
500 'admin_state_up': True,
502 'network_id': network_id,
503 'fixed_ips': [{"ip_address": ip}]
506 port = neutron_client.create_port(body=json_body)
507 return port['port']['id']
509 logger.error("Error [create_neutron_port(neutron_client, '%s', '%s', "
510 "'%s')]: %s" % (name, network_id, ip, e))
514 def update_neutron_net(neutron_client, network_id, shared=False):
515 json_body = {'network': {'shared': shared}}
517 neutron_client.update_network(network_id, body=json_body)
520 logger.error("Error [update_neutron_net(neutron_client, '%s', '%s')]: "
521 "%s" % (network_id, str(shared), e))
525 def update_neutron_port(neutron_client, port_id, device_owner):
526 json_body = {'port': {
527 'device_owner': device_owner,
530 port = neutron_client.update_port(port=port_id,
532 return port['port']['id']
534 logger.error("Error [update_neutron_port(neutron_client, '%s', '%s')]:"
535 " %s" % (port_id, device_owner, e))
539 def add_interface_router(neutron_client, router_id, subnet_id):
540 json_body = {"subnet_id": subnet_id}
542 neutron_client.add_interface_router(router=router_id, body=json_body)
545 logger.error("Error [add_interface_router(neutron_client, '%s', "
546 "'%s')]: %s" % (router_id, subnet_id, e))
550 def add_gateway_router(neutron_client, router_id):
551 ext_net_id = get_external_net_id(neutron_client)
552 router_dict = {'network_id': ext_net_id}
554 neutron_client.add_gateway_router(router_id, router_dict)
557 logger.error("Error [add_gateway_router(neutron_client, '%s')]: %s"
562 def delete_neutron_net(neutron_client, network_id):
564 neutron_client.delete_network(network_id)
567 logger.error("Error [delete_neutron_net(neutron_client, '%s')]: %s"
572 def delete_neutron_subnet(neutron_client, subnet_id):
574 neutron_client.delete_subnet(subnet_id)
577 logger.error("Error [delete_neutron_subnet(neutron_client, '%s')]: %s"
582 def delete_neutron_router(neutron_client, router_id):
584 neutron_client.delete_router(router=router_id)
587 logger.error("Error [delete_neutron_router(neutron_client, '%s')]: %s"
592 def delete_neutron_port(neutron_client, port_id):
594 neutron_client.delete_port(port_id)
597 logger.error("Error [delete_neutron_port(neutron_client, '%s')]: %s"
602 def remove_interface_router(neutron_client, router_id, subnet_id):
603 json_body = {"subnet_id": subnet_id}
605 neutron_client.remove_interface_router(router=router_id,
609 logger.error("Error [remove_interface_router(neutron_client, '%s', "
610 "'%s')]: %s" % (router_id, subnet_id, e))
614 def remove_gateway_router(neutron_client, router_id):
616 neutron_client.remove_gateway_router(router_id)
619 logger.error("Error [remove_gateway_router(neutron_client, '%s')]: %s"
624 def create_network_full(neutron_client,
630 # Check if the network already exists
631 network_id = get_network_id(neutron_client, net_name)
632 subnet_id = get_subnet_id(neutron_client, subnet_name)
633 router_id = get_router_id(neutron_client, router_name)
635 if network_id != '' and subnet_id != '' and router_id != '':
636 logger.info("A network with name '%s' already exists..." % net_name)
638 neutron_client.format = 'json'
639 logger.info('Creating neutron network %s...' % net_name)
640 network_id = create_neutron_net(neutron_client, net_name)
645 logger.debug("Network '%s' created successfully" % network_id)
646 logger.debug('Creating Subnet....')
647 subnet_id = create_neutron_subnet(neutron_client, subnet_name,
652 logger.debug("Subnet '%s' created successfully" % subnet_id)
653 logger.debug('Creating Router...')
654 router_id = create_neutron_router(neutron_client, router_name)
659 logger.debug("Router '%s' created successfully" % router_id)
660 logger.debug('Adding router to subnet...')
662 if not add_interface_router(neutron_client, router_id, subnet_id):
665 logger.debug("Interface added successfully.")
667 logger.debug('Adding gateway to router...')
668 if not add_gateway_router(neutron_client, router_id):
671 logger.debug("Gateway added successfully.")
673 network_dic = {'net_id': network_id,
674 'subnet_id': subnet_id,
675 'router_id': router_id}
679 def create_shared_network_full(net_name, subnt_name, router_name, subnet_cidr):
680 neutron_client = get_neutron_client()
682 network_dic = create_network_full(neutron_client,
688 if not update_neutron_net(neutron_client,
689 network_dic['net_id'],
691 logger.error("Failed to update network %s..." % net_name)
694 logger.debug("Network '%s' is available..." % net_name)
696 logger.error("Network %s creation failed" % net_name)
701 def create_bgpvpn(neutron_client, **kwargs):
702 # route_distinguishers
704 json_body = {"bgpvpn": kwargs}
705 return neutron_client.create_bgpvpn(json_body)
708 def create_network_association(neutron_client, bgpvpn_id, neutron_network_id):
709 json_body = {"network_association": {"network_id": neutron_network_id}}
710 return neutron_client.create_network_association(bgpvpn_id, json_body)
713 def create_router_association(neutron_client, bgpvpn_id, router_id):
714 json_body = {"router_association": {"router_id": router_id}}
715 return neutron_client.create_router_association(bgpvpn_id, json_body)
718 def update_bgpvpn(neutron_client, bgpvpn_id, **kwargs):
719 json_body = {"bgpvpn": kwargs}
720 return neutron_client.update_bgpvpn(bgpvpn_id, json_body)
723 def delete_bgpvpn(neutron_client, bgpvpn_id):
724 return neutron_client.delete_bgpvpn(bgpvpn_id)
726 # *********************************************
728 # *********************************************
731 def get_security_groups(neutron_client):
733 security_groups = neutron_client.list_security_groups()[
735 return security_groups
737 logger.error("Error [get_security_groups(neutron_client)]: %s" % e)
741 def get_security_group_id(neutron_client, sg_name):
742 security_groups = get_security_groups(neutron_client)
744 for sg in security_groups:
745 if sg['name'] == sg_name:
751 def create_security_group(neutron_client, sg_name, sg_description):
752 json_body = {'security_group': {'name': sg_name,
753 'description': sg_description}}
755 secgroup = neutron_client.create_security_group(json_body)
756 return secgroup['security_group']
758 logger.error("Error [create_security_group(neutron_client, '%s', "
759 "'%s')]: %s" % (sg_name, sg_description, e))
763 def create_secgroup_rule(neutron_client, sg_id, direction, protocol,
764 port_range_min=None, port_range_max=None):
765 if port_range_min is None and port_range_max is None:
766 json_body = {'security_group_rule': {'direction': direction,
767 'security_group_id': sg_id,
768 'protocol': protocol}}
769 elif port_range_min is not None and port_range_max is not None:
770 json_body = {'security_group_rule': {'direction': direction,
771 'security_group_id': sg_id,
772 'port_range_min': port_range_min,
773 'port_range_max': port_range_max,
774 'protocol': protocol}}
776 logger.error("Error [create_secgroup_rule(neutron_client, '%s', '%s', "
777 "'%s', '%s', '%s', '%s')]:" % (neutron_client,
782 " Invalid values for port_range_min, port_range_max")
785 neutron_client.create_security_group_rule(json_body)
788 logger.error("Error [create_secgroup_rule(neutron_client, '%s', '%s', "
789 "'%s', '%s', '%s', '%s')]: %s" % (neutron_client,
798 def create_security_group_full(neutron_client,
799 sg_name, sg_description):
800 sg_id = get_security_group_id(neutron_client, sg_name)
802 logger.info("Using existing security group '%s'..." % sg_name)
804 logger.info("Creating security group '%s'..." % sg_name)
805 SECGROUP = create_security_group(neutron_client,
809 logger.error("Failed to create the security group...")
812 sg_id = SECGROUP['id']
814 logger.debug("Security group '%s' with ID=%s created successfully."
815 % (SECGROUP['name'], sg_id))
817 logger.debug("Adding ICMP rules in security group '%s'..."
819 if not create_secgroup_rule(neutron_client, sg_id,
821 logger.error("Failed to create the security group rule...")
824 logger.debug("Adding SSH rules in security group '%s'..."
826 if not create_secgroup_rule(
827 neutron_client, sg_id, 'ingress', 'tcp', '22', '22'):
828 logger.error("Failed to create the security group rule...")
831 if not create_secgroup_rule(
832 neutron_client, sg_id, 'egress', 'tcp', '22', '22'):
833 logger.error("Failed to create the security group rule...")
838 def add_secgroup_to_instance(nova_client, instance_id, secgroup_id):
840 nova_client.servers.add_security_group(instance_id, secgroup_id)
843 logger.error("Error [add_secgroup_to_instance(nova_client, '%s', "
844 "'%s')]: %s" % (instance_id, secgroup_id, e))
848 def update_sg_quota(neutron_client, tenant_id, sg_quota, sg_rule_quota):
849 json_body = {"quota": {
850 "security_group": sg_quota,
851 "security_group_rule": sg_rule_quota
855 neutron_client.update_quota(tenant_id=tenant_id,
859 logger.error("Error [update_sg_quota(neutron_client, '%s', '%s', "
860 "'%s')]: %s" % (tenant_id, sg_quota, sg_rule_quota, e))
864 def delete_security_group(neutron_client, secgroup_id):
866 neutron_client.delete_security_group(secgroup_id)
869 logger.error("Error [delete_security_group(neutron_client, '%s')]: %s"
874 # *********************************************
876 # *********************************************
877 def get_images(nova_client):
879 images = nova_client.images.list()
882 logger.error("Error [get_images]: %s" % e)
886 def get_image_id(glance_client, image_name):
887 images = glance_client.images.list()
890 if i.name == image_name:
896 def create_glance_image(glance_client, image_name, file_path, disk="qcow2",
897 container="bare", public=True):
898 if not os.path.isfile(file_path):
899 logger.error("Error: file %s does not exist." % file_path)
902 image_id = get_image_id(glance_client, image_name)
905 logger.info("Image %s already exists." % image_name)
908 logger.info("Creating image '%s' from '%s'..." % (image_name,
911 deploy_scenario = os.environ.get('DEPLOY_SCENARIO')
912 if deploy_scenario is not None and 'fdio' in deploy_scenario:
913 properties['hw_mem_page_size'] = 'large'
914 with open(file_path) as fimage:
915 image = glance_client.images.create(name=image_name,
918 container_format=container,
919 properties=properties,
924 logger.error("Error [create_glance_image(glance_client, '%s', '%s', "
925 "'%s')]: %s" % (image_name, file_path, str(public), e))
929 def get_or_create_image(name, path, format):
931 glance_client = get_glance_client()
933 image_id = get_image_id(glance_client, name)
935 logger.info("Using existing image '%s'..." % name)
938 logger.info("Creating image '%s' from '%s'..." % (name, path))
939 image_id = create_glance_image(glance_client, name, path, format)
941 logger.error("Failed to create a Glance image...")
943 logger.debug("Image '%s' with ID=%s created successfully."
946 return image_exists, image_id
949 def delete_glance_image(nova_client, image_id):
951 nova_client.images.delete(image_id)
954 logger.error("Error [delete_glance_image(nova_client, '%s')]: %s"
959 # *********************************************
961 # *********************************************
962 def get_volumes(cinder_client):
964 volumes = cinder_client.volumes.list(search_opts={'all_tenants': 1})
967 logger.error("Error [get_volumes(cinder_client)]: %s" % e)
971 def list_volume_types(cinder_client, public=True, private=True):
973 volume_types = cinder_client.volume_types.list()
975 volume_types = [vt for vt in volume_types if not vt.is_public]
977 volume_types = [vt for vt in volume_types if vt.is_public]
980 logger.error("Error [list_volume_types(cinder_client)]: %s" % e)
984 def create_volume_type(cinder_client, name):
986 volume_type = cinder_client.volume_types.create(name)
989 logger.error("Error [create_volume_type(cinder_client, '%s')]: %s"
994 def update_cinder_quota(cinder_client, tenant_id, vols_quota,
995 snapshots_quota, gigabytes_quota):
996 quotas_values = {"volumes": vols_quota,
997 "snapshots": snapshots_quota,
998 "gigabytes": gigabytes_quota}
1001 cinder_client.quotas.update(tenant_id, **quotas_values)
1003 except Exception, e:
1004 logger.error("Error [update_cinder_quota(cinder_client, '%s', '%s', "
1005 "'%s' '%s')]: %s" % (tenant_id, vols_quota,
1006 snapshots_quota, gigabytes_quota, e))
1010 def delete_volume(cinder_client, volume_id, forced=False):
1014 cinder_client.volumes.detach(volume_id)
1016 logger.error(sys.exc_info()[0])
1017 cinder_client.volumes.force_delete(volume_id)
1019 cinder_client.volumes.delete(volume_id)
1021 except Exception, e:
1022 logger.error("Error [delete_volume(cinder_client, '%s', '%s')]: %s"
1023 % (volume_id, str(forced), e))
1027 def delete_volume_type(cinder_client, volume_type):
1029 cinder_client.volume_types.delete(volume_type)
1031 except Exception, e:
1032 logger.error("Error [delete_volume_type(cinder_client, '%s')]: %s"
1037 # *********************************************
1039 # *********************************************
1040 def get_tenants(keystone_client):
1042 tenants = keystone_client.tenants.list()
1044 except Exception, e:
1045 logger.error("Error [get_tenants(keystone_client)]: %s" % e)
1049 def get_users(keystone_client):
1051 users = keystone_client.users.list()
1053 except Exception, e:
1054 logger.error("Error [get_users(keystone_client)]: %s" % e)
1058 def get_tenant_id(keystone_client, tenant_name):
1059 tenants = keystone_client.tenants.list()
1062 if t.name == tenant_name:
1068 def get_user_id(keystone_client, user_name):
1069 users = keystone_client.users.list()
1072 if u.name == user_name:
1078 def get_role_id(keystone_client, role_name):
1079 roles = keystone_client.roles.list()
1082 if r.name == role_name:
1088 def create_tenant(keystone_client, tenant_name, tenant_description):
1090 tenant = keystone_client.tenants.create(tenant_name,
1094 except Exception, e:
1095 logger.error("Error [create_tenant(keystone_client, '%s', '%s')]: %s"
1096 % (tenant_name, tenant_description, e))
1100 def create_user(keystone_client, user_name, user_password,
1101 user_email, tenant_id):
1103 user = keystone_client.users.create(user_name, user_password,
1104 user_email, tenant_id,
1107 except Exception, e:
1108 logger.error("Error [create_user(keystone_client, '%s', '%s', '%s'"
1109 "'%s')]: %s" % (user_name, user_password,
1110 user_email, tenant_id, e))
1114 def add_role_user(keystone_client, user_id, role_id, tenant_id):
1116 keystone_client.roles.add_user_role(user_id, role_id, tenant_id)
1118 except Exception, e:
1119 logger.error("Error [add_role_user(keystone_client, '%s', '%s'"
1120 "'%s')]: %s " % (user_id, role_id, tenant_id, e))
1124 def delete_tenant(keystone_client, tenant_id):
1126 keystone_client.tenants.delete(tenant_id)
1128 except Exception, e:
1129 logger.error("Error [delete_tenant(keystone_client, '%s')]: %s"
1134 def delete_user(keystone_client, user_id):
1136 keystone_client.users.delete(user_id)
1138 except Exception, e:
1139 logger.error("Error [delete_user(keystone_client, '%s')]: %s"