mirror of https://github.com/ceph/ceph-ansible.git
switch_to_containers: increase health check values
This commit increases the default values for the following variable
consumed in switch-from-non-containerized-to-containerized-ceph-daemons.yml
playbook.
This also moves these variables in `ceph-defaults` role so the user can
set different values if needed.
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1783223
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit 3700aa5385
)
pull/5063/head
parent
cdc3e10cf3
commit
1d2a395aaf
|
@ -472,6 +472,14 @@ dummy:
|
|||
#handler_health_mgr_check_retries: 5
|
||||
#handler_health_mgr_check_delay: 10
|
||||
|
||||
## health mon/osds check retries/delay:
|
||||
|
||||
#health_mon_check_retries: 20
|
||||
#health_mon_check_delay: 10
|
||||
#health_osd_check_retries: 20
|
||||
#health_osd_check_delay: 10
|
||||
|
||||
|
||||
###############
|
||||
# NFS-GANESHA #
|
||||
###############
|
||||
|
|
|
@ -472,6 +472,14 @@ ceph_iscsi_config_dev: false
|
|||
#handler_health_mgr_check_retries: 5
|
||||
#handler_health_mgr_check_delay: 10
|
||||
|
||||
## health mon/osds check retries/delay:
|
||||
|
||||
#health_mon_check_retries: 20
|
||||
#health_mon_check_delay: 10
|
||||
#health_osd_check_retries: 20
|
||||
#health_osd_check_delay: 10
|
||||
|
||||
|
||||
###############
|
||||
# NFS-GANESHA #
|
||||
###############
|
||||
|
|
|
@ -56,8 +56,6 @@
|
|||
|
||||
- name: switching from non-containerized to containerized ceph mon
|
||||
vars:
|
||||
health_mon_check_retries: 5
|
||||
health_mon_check_delay: 15
|
||||
containerized_deployment: true
|
||||
switch_to_containers: True
|
||||
mon_group_name: mons
|
||||
|
@ -197,8 +195,6 @@
|
|||
- name: switching from non-containerized to containerized ceph osd
|
||||
|
||||
vars:
|
||||
health_osd_check_retries: 5
|
||||
health_osd_check_delay: 15
|
||||
containerized_deployment: true
|
||||
osd_group_name: osds
|
||||
|
||||
|
|
|
@ -464,6 +464,14 @@ handler_health_rbd_mirror_check_delay: 10
|
|||
handler_health_mgr_check_retries: 5
|
||||
handler_health_mgr_check_delay: 10
|
||||
|
||||
## health mon/osds check retries/delay:
|
||||
|
||||
health_mon_check_retries: 20
|
||||
health_mon_check_delay: 10
|
||||
health_osd_check_retries: 20
|
||||
health_osd_check_delay: 10
|
||||
|
||||
|
||||
###############
|
||||
# NFS-GANESHA #
|
||||
###############
|
||||
|
|
Loading…
Reference in New Issue