From a6b54afc23ffe26547da9df38b029ff00a734f27 Mon Sep 17 00:00:00 2001 From: Logan V Date: Thu, 28 Jun 2018 15:18:05 -0500 Subject: [PATCH] Enable AggregateInstanceExtraSpecs nova scheduler filter --- openstack_deploy/user_variables.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/openstack_deploy/user_variables.yml b/openstack_deploy/user_variables.yml index f02842f..f58bd00 100644 --- a/openstack_deploy/user_variables.yml +++ b/openstack_deploy/user_variables.yml @@ -50,6 +50,26 @@ nova_cpu_allocation_ratio: 10 nova_disk_allocation_ratio: 5 nova_ram_allocation_ratio: 1.2 +# Enable extra Nova scheduler filters +# This list is all of the OSA defaults + AggregateInstanceExtraSpecsFilter +nova_scheduler_default_filters: >- + RetryFilter, + AvailabilityZoneFilter, + RamFilter, + AggregateRamFilter, + ComputeFilter, + AggregateCoreFilter, + DiskFilter, + AggregateDiskFilter, + AggregateNumInstancesFilter, + AggregateIoOpsFilter, + ComputeCapabilitiesFilter, + ImagePropertiesFilter, + ServerGroupAntiAffinityFilter, + ServerGroupAffinityFilter, + NUMATopologyFilter, + AggregateInstanceExtraSpecsFilter + ## Ceph cluster fsid (must be generated before first run) ## Generate a uuid using: python -c 'import uuid; print(str(uuid.uuid4()))' generate_fsid: false