Browse code

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

Sylvain Bauza authored on 2017/08/10 22:34:29
Showing 1 changed files
... ...
@@ -101,7 +101,7 @@ SCHEDULER=${SCHEDULER:-filter_scheduler}
101 101
 
102 102
 # The following FILTERS contains SameHostFilter and DifferentHostFilter with
103 103
 # the default filters.
104
-FILTERS="RetryFilter,AvailabilityZoneFilter,RamFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,SameHostFilter,DifferentHostFilter"
104
+FILTERS="RetryFilter,AvailabilityZoneFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,SameHostFilter,DifferentHostFilter"
105 105
 
106 106
 QEMU_CONF=/etc/libvirt/qemu.conf
107 107