mirror of https://github.com/ceph/ceph-ansible.git
rolling_update: add variable to upgrade ceph
My stupid self removed this crucial variable here: 217ce3ca
thinking it
was another hard coded variable import where this is actually the
trigger for the upgrade.
Closes: #1071
Signed-off-by: Sébastien Han <seb@redhat.com>
pull/1073/head
parent
85b766034b
commit
991341f525
|
@ -67,6 +67,7 @@
|
||||||
restapi_group_name: restapis
|
restapi_group_name: restapis
|
||||||
health_mon_check_retries: 5
|
health_mon_check_retries: 5
|
||||||
health_mon_check_delay: 10
|
health_mon_check_delay: 10
|
||||||
|
upgrade_ceph_packages: True
|
||||||
|
|
||||||
hosts:
|
hosts:
|
||||||
- "{{ mon_group_name }}"
|
- "{{ mon_group_name }}"
|
||||||
|
@ -130,6 +131,7 @@
|
||||||
osd_group_name: osds
|
osd_group_name: osds
|
||||||
health_osd_check_retries: 10
|
health_osd_check_retries: 10
|
||||||
health_osd_check_delay: 10
|
health_osd_check_delay: 10
|
||||||
|
upgrade_ceph_packages: True
|
||||||
|
|
||||||
hosts:
|
hosts:
|
||||||
- "{{ osd_group_name }}"
|
- "{{ osd_group_name }}"
|
||||||
|
@ -212,6 +214,7 @@
|
||||||
|
|
||||||
vars:
|
vars:
|
||||||
mds_group_name: mdss
|
mds_group_name: mdss
|
||||||
|
upgrade_ceph_packages: True
|
||||||
|
|
||||||
hosts:
|
hosts:
|
||||||
- "{{ mds_group_name }}"
|
- "{{ mds_group_name }}"
|
||||||
|
@ -257,6 +260,7 @@
|
||||||
|
|
||||||
vars:
|
vars:
|
||||||
rgw_group_name: rgws
|
rgw_group_name: rgws
|
||||||
|
upgrade_ceph_packages: True
|
||||||
|
|
||||||
hosts:
|
hosts:
|
||||||
- "{{ rgw_group_name }}"
|
- "{{ rgw_group_name }}"
|
||||||
|
|
Loading…
Reference in New Issue