From 0629c4fe22ce02aefde7ee9a18ef75a2687bee01 Mon Sep 17 00:00:00 2001 From: Sylvain Bauza Date: Thu, 10 Aug 2017 15:34:29 +0200 Subject: [PATCH] Remove DiskFilter and RamFilter from Nova scheduling defaults In Ocata, we replaced the verification logic for CPU, RAM and disk by calling the Placement API instead of using those legacy scheduler filters, it's time to remove them from the default list of filters that are run, especially since Nova now removes them from the conf opt defaults thanks to Ibe1cee1cb2642f61a8d6bf9c3f6bbee4f2c2f414 Change-Id: I2e81f1bbce7476d63e84e70dcdd59a1163f89f09 Related-Bug: #1709328 --- lib/nova | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nova b/lib/nova index 8311a54930..f1be7ce41d 100644 --- a/lib/nova +++ b/lib/nova @@ -101,7 +101,7 @@ SCHEDULER=${SCHEDULER:-filter_scheduler} # The following FILTERS contains SameHostFilter and DifferentHostFilter with # the default filters. -FILTERS="RetryFilter,AvailabilityZoneFilter,RamFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,SameHostFilter,DifferentHostFilter" +FILTERS="RetryFilter,AvailabilityZoneFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,SameHostFilter,DifferentHostFilter" QEMU_CONF=/etc/libvirt/qemu.conf