summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorjuraj.linkes <jlinkes@cisco.com>2016-09-12 13:27:05 +0200
committerjuraj.linkes <jlinkes@cisco.com>2016-09-12 13:27:05 +0200
commit20a2b8d2451c5f026deda8197ecc6e6aa0b83d38 (patch)
tree6732aaff48fbec7ce1b9883f291f9b79d0b01c81 /utils
parent67963822fde10ee7e7b1ec46aa8dcce45e463b1d (diff)
Added support for creating images and flavors with hugepages for fdio scenarios
Change-Id: Idb1cb3a6b71e6de9343a07b14731ae506a44567e Signed-off-by: juraj.linkes <jlinkes@cisco.com>
Diffstat (limited to 'utils')
-rwxr-xr-xutils/openstack_utils.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/utils/openstack_utils.py b/utils/openstack_utils.py
index ff9b54a58..03279f63d 100755
--- a/utils/openstack_utils.py
+++ b/utils/openstack_utils.py
@@ -235,6 +235,11 @@ def get_hypervisors(nova_client):
def create_flavor(nova_client, flavor_name, ram, disk, vcpus):
try:
flavor = nova_client.flavors.create(flavor_name, ram, vcpus, disk)
+ extra_specs = {}
+ deploy_scenario = os.environ.get('DEPLOY_SCENARIO')
+ if deploy_scenario is not None and 'fdio' in deploy_scenario:
+ extra_specs['hw:mem_page_size'] = 'large'
+ flavor.update(extra_specs)
except Exception, e:
logger.error("Error [create_flavor(nova_client, '%s', '%s', '%s', "
"'%s')]: %s" % (flavor_name, ram, disk, vcpus, e))
@@ -902,11 +907,16 @@ def create_glance_image(glance_client, image_name, file_path, disk="qcow2",
if logger:
logger.info("Creating image '%s' from '%s'..." % (image_name,
file_path))
+ properties = {}
+ deploy_scenario = os.environ.get('DEPLOY_SCENARIO')
+ if deploy_scenario is not None and 'fdio' in deploy_scenario:
+ properties['hw_mem_page_size'] = 'large'
with open(file_path) as fimage:
image = glance_client.images.create(name=image_name,
is_public=public,
disk_format=disk,
container_format=container,
+ properties=properties,
data=fimage)
image_id = image.id
return image_id