From: Neha Ojha Date: Tue, 7 Apr 2020 18:42:12 +0000 (+0000) Subject: pybind/mgr/balancer/module.py: turn on balancer in upmap mode by default X-Git-Tag: v17.0.0~2616^2~5 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=d4fbaf7ea959fd945857abd327271a97fb1da631;p=ceph.git pybind/mgr/balancer/module.py: turn on balancer in upmap mode by default Signed-off-by: Neha Ojha --- diff --git a/src/pybind/mgr/balancer/module.py b/src/pybind/mgr/balancer/module.py index 36e0213f92e8c..75d451c951453 100644 --- a/src/pybind/mgr/balancer/module.py +++ b/src/pybind/mgr/balancer/module.py @@ -216,7 +216,7 @@ class Module(MgrModule): { 'name': 'active', 'type': 'bool', - 'default': False, + 'default': True, 'desc': 'automatically balance PGs across cluster', 'runtime': True, }, @@ -293,7 +293,7 @@ class Module(MgrModule): { 'name': 'mode', 'desc': 'Balancer mode', - 'default': 'none', + 'default': 'upmap', 'enum_allowed': ['none', 'crush-compat', 'upmap'], 'runtime': True, },