mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #1274 from ceph/skip-check
common: ability to disable handler osd health checkpull/1276/head
commit
788858b0cf
|
@ -353,6 +353,7 @@ dummy:
|
|||
#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 #
|
||||
|
|
|
@ -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 #
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue