From: Sébastien Han Date: Thu, 2 Feb 2017 10:22:55 +0000 (+0100) Subject: common: ability to disable handler osd health check X-Git-Tag: v2.2.10~42 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=40752c54029da27e4a347f98bb8db5b441d2ce8e;p=ceph-ansible.git common: ability to disable handler osd health check Signed-off-by: Sébastien Han --- diff --git a/defaults/main.yml b/defaults/main.yml index 43515bd13..7de9e9d83 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -345,6 +345,7 @@ handler_health_mon_check_retries: 5 handler_health_mon_check_delay: 10 handler_health_osd_check_retries: 40 handler_health_osd_check_delay: 30 +handler_health_osd_check: true ################### # CONFIG OVERRIDE # diff --git a/handlers/validate-osd.yml b/handlers/validate-osd.yml index b83d0952d..99d1c2f87 100644 --- a/handlers/validate-osd.yml +++ b/handlers/validate-osd.yml @@ -17,3 +17,4 @@ retries: "{{ handler_health_osd_check_retries }}" delay: "{{ handler_health_osd_check_delay }}" delegate_to: "{{ groups[mon_group_name][0] }}" + when: handler_health_osd_check