mirror of https://github.com/ceph/ceph-ansible.git
ceph_pool: improve pg_autoscaler support
This commit modifies how the `pg_autoscaler` feature is handled by the ceph_pool module. 1/ If a pool has the pg_autoscaler feature enabled, we shouldn't try to update pg/pgp. 2/ Make it more readable Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>pull/5886/head
parent
787878f0c3
commit
740df379b7
|
@ -674,9 +674,18 @@ def run_module():
|
|||
user_pool_config['pg_placement_num'] = {'value': str(running_pool_details[2]['pg_placement_num']), 'cli_set_opt': 'pgp_num'} # noqa: E501
|
||||
delta = compare_pool_config(user_pool_config,
|
||||
running_pool_details[2])
|
||||
if (len(delta) > 0 and
|
||||
running_pool_details[2]['erasure_code_profile'] == "" and
|
||||
'size' not in delta.keys()):
|
||||
if len(delta) > 0:
|
||||
keys = list(delta.keys())
|
||||
details = running_pool_details[2]
|
||||
if details['erasure_code_profile'] and 'size' in keys:
|
||||
del delta['size']
|
||||
if details['pg_autoscale_mode'] == 'on':
|
||||
delta.pop('pg_num', None)
|
||||
delta.pop('pgp_num', None)
|
||||
|
||||
if len(delta) == 0:
|
||||
out = "Skipping pool {}.\nUpdating either 'size' on an erasure-coded pool or 'pg_num'/'pgp_num' on a pg autoscaled pool is incompatible".format(name) # noqa: E501
|
||||
else:
|
||||
rc, cmd, out, err = update_pool(module,
|
||||
cluster,
|
||||
name,
|
||||
|
|
Loading…
Reference in New Issue