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 logger.error("Error [create_flavor(nova_client, '%s', '%s', '%s', "
240 "'%s')]: %s" % (flavor_name, ram, disk, vcpus, e))
245 def create_instance(flavor_name,
248 instance_name="functest-vm",
254 nova_client = get_nova_client()
256 flavor = nova_client.flavors.find(name=flavor_name)
258 flavors = nova_client.flavors.list()
259 logger.error("Error: Flavor '%s' not found. Available flavors are: "
260 "\n%s" % (flavor_name, flavors))
262 if fixed_ip is not None:
263 nics = {"net-id": network_id, "v4-fixed-ip": fixed_ip}
265 nics = {"net-id": network_id}
267 instance = nova_client.servers.create(
272 availability_zone=av_zone,
276 instance = nova_client.servers.create(
281 config_drive=confdrive,
283 availability_zone=av_zone,
289 def create_instance_and_wait_for_active(flavor_name,
299 VM_BOOT_TIMEOUT = 180
300 nova_client = get_nova_client()
301 instance = create_instance(flavor_name,
310 count = VM_BOOT_TIMEOUT / SLEEP
311 for n in range(count, -1, -1):
312 status = get_instance_status(nova_client, instance)
313 if status.lower() == "active":
315 elif status.lower() == "error":
316 logger.error("The instance %s went to ERROR status."
320 logger.error("Timeout booting the instance %s." % instance_name)
324 def create_floating_ip(neutron_client):
325 extnet_id = get_external_net_id(neutron_client)
326 props = {'floating_network_id': extnet_id}
328 ip_json = neutron_client.create_floatingip({'floatingip': props})
329 fip_addr = ip_json['floatingip']['floating_ip_address']
330 fip_id = ip_json['floatingip']['id']
332 logger.error("Error [create_floating_ip(neutron_client)]: %s" % e)
334 return {'fip_addr': fip_addr, 'fip_id': fip_id}
337 def add_floating_ip(nova_client, server_id, floatingip_id):
339 nova_client.servers.add_floating_ip(server_id, floatingip_id)
342 logger.error("Error [add_floating_ip(nova_client, '%s', '%s')]: %s"
343 % (server_id, floatingip_id, e))
347 def delete_instance(nova_client, instance_id):
349 nova_client.servers.force_delete(instance_id)
352 logger.error("Error [delete_instance(nova_client, '%s')]: %s"
357 def delete_floating_ip(nova_client, floatingip_id):
359 nova_client.floating_ips.delete(floatingip_id)
362 logger.error("Error [delete_floating_ip(nova_client, '%s')]:"
363 % (floatingip_id, e))
367 # *********************************************
369 # *********************************************
370 def get_network_list(neutron_client):
371 network_list = neutron_client.list_networks()['networks']
372 if len(network_list) == 0:
378 def get_router_list(neutron_client):
379 router_list = neutron_client.list_routers()['routers']
380 if len(router_list) == 0:
386 def get_port_list(neutron_client):
387 port_list = neutron_client.list_ports()['ports']
388 if len(port_list) == 0:
394 def get_network_id(neutron_client, network_name):
395 networks = neutron_client.list_networks()['networks']
398 if n['name'] == network_name:
404 def get_subnet_id(neutron_client, subnet_name):
405 subnets = neutron_client.list_subnets()['subnets']
408 if s['name'] == subnet_name:
414 def get_router_id(neutron_client, router_name):
415 routers = neutron_client.list_routers()['routers']
418 if r['name'] == router_name:
424 def get_private_net(neutron_client):
425 # Checks if there is an existing shared private network
426 networks = neutron_client.list_networks()['networks']
427 if len(networks) == 0:
430 if (net['router:external'] is False) and (net['shared'] is True):
435 def get_external_net(neutron_client):
436 for network in neutron_client.list_networks()['networks']:
437 if network['router:external']:
438 return network['name']
442 def get_external_net_id(neutron_client):
443 for network in neutron_client.list_networks()['networks']:
444 if network['router:external']:
449 def check_neutron_net(neutron_client, net_name):
450 for network in neutron_client.list_networks()['networks']:
451 if network['name'] == net_name:
452 for subnet in network['subnets']:
457 def create_neutron_net(neutron_client, name):
458 json_body = {'network': {'name': name,
459 'admin_state_up': True}}
461 network = neutron_client.create_network(body=json_body)
462 network_dict = network['network']
463 return network_dict['id']
465 logger.error("Error [create_neutron_net(neutron_client, '%s')]: %s"
470 def create_neutron_subnet(neutron_client, name, cidr, net_id):
471 json_body = {'subnets': [{'name': name, 'cidr': cidr,
472 'ip_version': 4, 'network_id': net_id}]}
474 subnet = neutron_client.create_subnet(body=json_body)
475 return subnet['subnets'][0]['id']
477 logger.error("Error [create_neutron_subnet(neutron_client, '%s', "
478 "'%s', '%s')]: %s" % (name, cidr, net_id, e))
482 def create_neutron_router(neutron_client, name):
483 json_body = {'router': {'name': name, 'admin_state_up': True}}
485 router = neutron_client.create_router(json_body)
486 return router['router']['id']
488 logger.error("Error [create_neutron_router(neutron_client, '%s')]: %s"
493 def create_neutron_port(neutron_client, name, network_id, ip):
494 json_body = {'port': {
495 'admin_state_up': True,
497 'network_id': network_id,
498 'fixed_ips': [{"ip_address": ip}]
501 port = neutron_client.create_port(body=json_body)
502 return port['port']['id']
504 logger.error("Error [create_neutron_port(neutron_client, '%s', '%s', "
505 "'%s')]: %s" % (name, network_id, ip, e))
509 def update_neutron_net(neutron_client, network_id, shared=False):
510 json_body = {'network': {'shared': shared}}
512 neutron_client.update_network(network_id, body=json_body)
515 logger.error("Error [update_neutron_net(neutron_client, '%s', '%s')]: "
516 "%s" % (network_id, str(shared), e))
520 def update_neutron_port(neutron_client, port_id, device_owner):
521 json_body = {'port': {
522 'device_owner': device_owner,
525 port = neutron_client.update_port(port=port_id,
527 return port['port']['id']
529 logger.error("Error [update_neutron_port(neutron_client, '%s', '%s')]:"
530 " %s" % (port_id, device_owner, e))
534 def add_interface_router(neutron_client, router_id, subnet_id):
535 json_body = {"subnet_id": subnet_id}
537 neutron_client.add_interface_router(router=router_id, body=json_body)
540 logger.error("Error [add_interface_router(neutron_client, '%s', "
541 "'%s')]: %s" % (router_id, subnet_id, e))
545 def add_gateway_router(neutron_client, router_id):
546 ext_net_id = get_external_net_id(neutron_client)
547 router_dict = {'network_id': ext_net_id}
549 neutron_client.add_gateway_router(router_id, router_dict)
552 logger.error("Error [add_gateway_router(neutron_client, '%s')]: %s"
557 def delete_neutron_net(neutron_client, network_id):
559 neutron_client.delete_network(network_id)
562 logger.error("Error [delete_neutron_net(neutron_client, '%s')]: %s"
567 def delete_neutron_subnet(neutron_client, subnet_id):
569 neutron_client.delete_subnet(subnet_id)
572 logger.error("Error [delete_neutron_subnet(neutron_client, '%s')]: %s"
577 def delete_neutron_router(neutron_client, router_id):
579 neutron_client.delete_router(router=router_id)
582 logger.error("Error [delete_neutron_router(neutron_client, '%s')]: %s"
587 def delete_neutron_port(neutron_client, port_id):
589 neutron_client.delete_port(port_id)
592 logger.error("Error [delete_neutron_port(neutron_client, '%s')]: %s"
597 def remove_interface_router(neutron_client, router_id, subnet_id):
598 json_body = {"subnet_id": subnet_id}
600 neutron_client.remove_interface_router(router=router_id,
604 logger.error("Error [remove_interface_router(neutron_client, '%s', "
605 "'%s')]: %s" % (router_id, subnet_id, e))
609 def remove_gateway_router(neutron_client, router_id):
611 neutron_client.remove_gateway_router(router_id)
614 logger.error("Error [remove_gateway_router(neutron_client, '%s')]: %s"
619 def create_network_full(neutron_client,
625 # Check if the network already exists
626 network_id = get_network_id(neutron_client, net_name)
627 subnet_id = get_subnet_id(neutron_client, subnet_name)
628 router_id = get_router_id(neutron_client, router_name)
630 if network_id != '' and subnet_id != '' and router_id != '':
631 logger.info("A network with name '%s' already exists..." % net_name)
633 neutron_client.format = 'json'
634 logger.info('Creating neutron network %s...' % net_name)
635 network_id = create_neutron_net(neutron_client, net_name)
640 logger.debug("Network '%s' created successfully" % network_id)
641 logger.debug('Creating Subnet....')
642 subnet_id = create_neutron_subnet(neutron_client, subnet_name,
647 logger.debug("Subnet '%s' created successfully" % subnet_id)
648 logger.debug('Creating Router...')
649 router_id = create_neutron_router(neutron_client, router_name)
654 logger.debug("Router '%s' created successfully" % router_id)
655 logger.debug('Adding router to subnet...')
657 if not add_interface_router(neutron_client, router_id, subnet_id):
660 logger.debug("Interface added successfully.")
662 logger.debug('Adding gateway to router...')
663 if not add_gateway_router(neutron_client, router_id):
666 logger.debug("Gateway added successfully.")
668 network_dic = {'net_id': network_id,
669 'subnet_id': subnet_id,
670 'router_id': router_id}
674 def create_shared_network_full(net_name, subnt_name, router_name, subnet_cidr):
675 neutron_client = get_neutron_client()
677 network_dic = create_network_full(neutron_client,
683 if not update_neutron_net(neutron_client,
684 network_dic['net_id'],
686 logger.error("Failed to update network %s..." % net_name)
689 logger.debug("Network '%s' is available..." % net_name)
691 logger.error("Network %s creation failed" % net_name)
696 def create_bgpvpn(neutron_client, **kwargs):
697 # route_distinguishers
699 json_body = {"bgpvpn": kwargs}
700 return neutron_client.create_bgpvpn(json_body)
703 def create_network_association(neutron_client, bgpvpn_id, neutron_network_id):
704 json_body = {"network_association": {"network_id": neutron_network_id}}
705 return neutron_client.create_network_association(bgpvpn_id, json_body)
708 def create_router_association(neutron_client, bgpvpn_id, router_id):
709 json_body = {"router_association": {"router_id": router_id}}
710 return neutron_client.create_router_association(bgpvpn_id, json_body)
713 def update_bgpvpn(neutron_client, bgpvpn_id, **kwargs):
714 json_body = {"bgpvpn": kwargs}
715 return neutron_client.update_bgpvpn(bgpvpn_id, json_body)
718 def delete_bgpvpn(neutron_client, bgpvpn_id):
719 return neutron_client.delete_bgpvpn(bgpvpn_id)
721 # *********************************************
723 # *********************************************
726 def get_security_groups(neutron_client):
728 security_groups = neutron_client.list_security_groups()[
730 return security_groups
732 logger.error("Error [get_security_groups(neutron_client)]: %s" % e)
736 def get_security_group_id(neutron_client, sg_name):
737 security_groups = get_security_groups(neutron_client)
739 for sg in security_groups:
740 if sg['name'] == sg_name:
746 def create_security_group(neutron_client, sg_name, sg_description):
747 json_body = {'security_group': {'name': sg_name,
748 'description': sg_description}}
750 secgroup = neutron_client.create_security_group(json_body)
751 return secgroup['security_group']
753 logger.error("Error [create_security_group(neutron_client, '%s', "
754 "'%s')]: %s" % (sg_name, sg_description, e))
758 def create_secgroup_rule(neutron_client, sg_id, direction, protocol,
759 port_range_min=None, port_range_max=None):
760 if port_range_min is None and port_range_max is None:
761 json_body = {'security_group_rule': {'direction': direction,
762 'security_group_id': sg_id,
763 'protocol': protocol}}
764 elif port_range_min is not None and port_range_max is not None:
765 json_body = {'security_group_rule': {'direction': direction,
766 'security_group_id': sg_id,
767 'port_range_min': port_range_min,
768 'port_range_max': port_range_max,
769 'protocol': protocol}}
771 logger.error("Error [create_secgroup_rule(neutron_client, '%s', '%s', "
772 "'%s', '%s', '%s', '%s')]:" % (neutron_client,
777 " Invalid values for port_range_min, port_range_max")
780 neutron_client.create_security_group_rule(json_body)
783 logger.error("Error [create_secgroup_rule(neutron_client, '%s', '%s', "
784 "'%s', '%s', '%s', '%s')]: %s" % (neutron_client,
793 def create_security_group_full(neutron_client,
794 sg_name, sg_description):
795 sg_id = get_security_group_id(neutron_client, sg_name)
797 logger.info("Using existing security group '%s'..." % sg_name)
799 logger.info("Creating security group '%s'..." % sg_name)
800 SECGROUP = create_security_group(neutron_client,
804 logger.error("Failed to create the security group...")
807 sg_id = SECGROUP['id']
809 logger.debug("Security group '%s' with ID=%s created successfully."
810 % (SECGROUP['name'], sg_id))
812 logger.debug("Adding ICMP rules in security group '%s'..."
814 if not create_secgroup_rule(neutron_client, sg_id,
816 logger.error("Failed to create the security group rule...")
819 logger.debug("Adding SSH rules in security group '%s'..."
821 if not create_secgroup_rule(
822 neutron_client, sg_id, 'ingress', 'tcp', '22', '22'):
823 logger.error("Failed to create the security group rule...")
826 if not create_secgroup_rule(
827 neutron_client, sg_id, 'egress', 'tcp', '22', '22'):
828 logger.error("Failed to create the security group rule...")
833 def add_secgroup_to_instance(nova_client, instance_id, secgroup_id):
835 nova_client.servers.add_security_group(instance_id, secgroup_id)
838 logger.error("Error [add_secgroup_to_instance(nova_client, '%s', "
839 "'%s')]: %s" % (instance_id, secgroup_id, e))
843 def update_sg_quota(neutron_client, tenant_id, sg_quota, sg_rule_quota):
844 json_body = {"quota": {
845 "security_group": sg_quota,
846 "security_group_rule": sg_rule_quota
850 neutron_client.update_quota(tenant_id=tenant_id,
854 logger.error("Error [update_sg_quota(neutron_client, '%s', '%s', "
855 "'%s')]: %s" % (tenant_id, sg_quota, sg_rule_quota, e))
859 def delete_security_group(neutron_client, secgroup_id):
861 neutron_client.delete_security_group(secgroup_id)
864 logger.error("Error [delete_security_group(neutron_client, '%s')]: %s"
869 # *********************************************
871 # *********************************************
872 def get_images(nova_client):
874 images = nova_client.images.list()
877 logger.error("Error [get_images]: %s" % e)
881 def get_image_id(glance_client, image_name):
882 images = glance_client.images.list()
885 if i.name == image_name:
891 def create_glance_image(glance_client, image_name, file_path, disk="qcow2",
892 container="bare", public=True):
893 if not os.path.isfile(file_path):
894 logger.error("Error: file %s does not exist." % file_path)
897 image_id = get_image_id(glance_client, image_name)
900 logger.info("Image %s already exists." % image_name)
903 logger.info("Creating image '%s' from '%s'..." % (image_name,
905 with open(file_path) as fimage:
906 image = glance_client.images.create(name=image_name,
909 container_format=container,
914 logger.error("Error [create_glance_image(glance_client, '%s', '%s', "
915 "'%s')]: %s" % (image_name, file_path, str(public), e))
919 def get_or_create_image(name, path, format):
921 glance_client = get_glance_client()
923 image_id = get_image_id(glance_client, name)
925 logger.info("Using existing image '%s'..." % name)
928 logger.info("Creating image '%s' from '%s'..." % (name, path))
929 image_id = create_glance_image(glance_client, name, path, format)
931 logger.error("Failed to create a Glance image...")
933 logger.debug("Image '%s' with ID=%s created successfully."
936 return image_exists, image_id
939 def delete_glance_image(nova_client, image_id):
941 nova_client.images.delete(image_id)
944 logger.error("Error [delete_glance_image(nova_client, '%s')]: %s"
949 # *********************************************
951 # *********************************************
952 def get_volumes(cinder_client):
954 volumes = cinder_client.volumes.list(search_opts={'all_tenants': 1})
957 logger.error("Error [get_volumes(cinder_client)]: %s" % e)
961 def list_volume_types(cinder_client, public=True, private=True):
963 volume_types = cinder_client.volume_types.list()
965 volume_types = [vt for vt in volume_types if not vt.is_public]
967 volume_types = [vt for vt in volume_types if vt.is_public]
970 logger.error("Error [list_volume_types(cinder_client)]: %s" % e)
974 def create_volume_type(cinder_client, name):
976 volume_type = cinder_client.volume_types.create(name)
979 logger.error("Error [create_volume_type(cinder_client, '%s')]: %s"
984 def update_cinder_quota(cinder_client, tenant_id, vols_quota,
985 snapshots_quota, gigabytes_quota):
986 quotas_values = {"volumes": vols_quota,
987 "snapshots": snapshots_quota,
988 "gigabytes": gigabytes_quota}
991 cinder_client.quotas.update(tenant_id, **quotas_values)
994 logger.error("Error [update_cinder_quota(cinder_client, '%s', '%s', "
995 "'%s' '%s')]: %s" % (tenant_id, vols_quota,
996 snapshots_quota, gigabytes_quota, e))
1000 def delete_volume(cinder_client, volume_id, forced=False):
1004 cinder_client.volumes.detach(volume_id)
1006 logger.error(sys.exc_info()[0])
1007 cinder_client.volumes.force_delete(volume_id)
1009 cinder_client.volumes.delete(volume_id)
1011 except Exception, e:
1012 logger.error("Error [delete_volume(cinder_client, '%s', '%s')]: %s"
1013 % (volume_id, str(forced), e))
1017 def delete_volume_type(cinder_client, volume_type):
1019 cinder_client.volume_types.delete(volume_type)
1021 except Exception, e:
1022 logger.error("Error [delete_volume_type(cinder_client, '%s')]: %s"
1027 # *********************************************
1029 # *********************************************
1030 def get_tenants(keystone_client):
1032 tenants = keystone_client.tenants.list()
1034 except Exception, e:
1035 logger.error("Error [get_tenants(keystone_client)]: %s" % e)
1039 def get_users(keystone_client):
1041 users = keystone_client.users.list()
1043 except Exception, e:
1044 logger.error("Error [get_users(keystone_client)]: %s" % e)
1048 def get_tenant_id(keystone_client, tenant_name):
1049 tenants = keystone_client.tenants.list()
1052 if t.name == tenant_name:
1058 def get_user_id(keystone_client, user_name):
1059 users = keystone_client.users.list()
1062 if u.name == user_name:
1068 def get_role_id(keystone_client, role_name):
1069 roles = keystone_client.roles.list()
1072 if r.name == role_name:
1078 def create_tenant(keystone_client, tenant_name, tenant_description):
1080 tenant = keystone_client.tenants.create(tenant_name,
1084 except Exception, e:
1085 logger.error("Error [create_tenant(keystone_client, '%s', '%s')]: %s"
1086 % (tenant_name, tenant_description, e))
1090 def create_user(keystone_client, user_name, user_password,
1091 user_email, tenant_id):
1093 user = keystone_client.users.create(user_name, user_password,
1094 user_email, tenant_id,
1097 except Exception, e:
1098 logger.error("Error [create_user(keystone_client, '%s', '%s', '%s'"
1099 "'%s')]: %s" % (user_name, user_password,
1100 user_email, tenant_id, e))
1104 def add_role_user(keystone_client, user_id, role_id, tenant_id):
1106 keystone_client.roles.add_user_role(user_id, role_id, tenant_id)
1108 except Exception, e:
1109 logger.error("Error [add_role_user(keystone_client, '%s', '%s'"
1110 "'%s')]: %s " % (user_id, role_id, tenant_id, e))
1114 def delete_tenant(keystone_client, tenant_id):
1116 keystone_client.tenants.delete(tenant_id)
1118 except Exception, e:
1119 logger.error("Error [delete_tenant(keystone_client, '%s')]: %s"
1124 def delete_user(keystone_client, user_id):
1126 keystone_client.users.delete(user_id)
1128 except Exception, e:
1129 logger.error("Error [delete_user(keystone_client, '%s')]: %s"