From: Sébastien Han Date: Fri, 4 Nov 2016 16:31:02 +0000 (+0100) Subject: rolling_update: add variable to upgrade ceph X-Git-Tag: v2.0~12^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=991341f525e17f0652dc6cbfffb691d73337cf8e;p=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 --- diff --git a/infrastructure-playbooks/rolling_update.yml b/infrastructure-playbooks/rolling_update.yml index e652a06f6..f6c16886a 100644 --- a/infrastructure-playbooks/rolling_update.yml +++ b/infrastructure-playbooks/rolling_update.yml @@ -63,10 +63,11 @@ - name: upgrade ceph mon cluster vars: - mon_group_name: mons + mon_group_name: mons restapi_group_name: restapis health_mon_check_retries: 5 health_mon_check_delay: 10 + upgrade_ceph_packages: True hosts: - "{{ mon_group_name }}" @@ -130,6 +131,7 @@ osd_group_name: osds health_osd_check_retries: 10 health_osd_check_delay: 10 + upgrade_ceph_packages: True hosts: - "{{ osd_group_name }}" @@ -212,6 +214,7 @@ vars: mds_group_name: mdss + upgrade_ceph_packages: True hosts: - "{{ mds_group_name }}" @@ -257,6 +260,7 @@ vars: rgw_group_name: rgws + upgrade_ceph_packages: True hosts: - "{{ rgw_group_name }}"