mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6929: HAPlanner (SkipHeuresticsPlanner) gets added into the list of regular planners currently, add it in the exclude list. Also create allocator order list
(cherry picked from commit 6fca4eb0f1)
This commit is contained in:
parent
5be7fa23b4
commit
b65ce7e756
|
|
@ -75,6 +75,7 @@
|
|||
<property name="orderConfigDefault"
|
||||
value="FirstFitPlanner,UserDispersingPlanner,UserConcentratedPodPlanner,ImplicitDedicationPlanner,BareMetalPlanner" />
|
||||
<property name="excludeKey" value="deployment.planners.exclude" />
|
||||
<property name="excludeDefault" value="SkipHeuresticsPlanner" />
|
||||
</bean>
|
||||
|
||||
<bean id="haPlannersRegistry"
|
||||
|
|
@ -89,6 +90,8 @@
|
|||
|
||||
<bean id="hostAllocatorsRegistry"
|
||||
class="org.apache.cloudstack.spring.lifecycle.registry.ExtensionRegistry">
|
||||
<property name="orderConfigKey" value="host.allocators.order" />
|
||||
<property name="orderConfigDefault" value="FirstFitRouting" />
|
||||
<property name="excludeKey" value="host.allocators.exclude" />
|
||||
<property name="excludeDefault"
|
||||
value="RandomAllocator,TestingAllocator,FirstFitAllocator,RecreateHostAllocator" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue