From: Sébastien Han Date: Fri, 12 May 2017 13:59:52 +0000 (+0200) Subject: rolling_update: nicer way to set osd flags X-Git-Tag: v3.0.0rc4~6^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=0205f6d6456cf9c4c8bf4ca79c009542146c10cc;p=ceph-ansible.git rolling_update: nicer way to set osd flags Prior to this patch, we were applying the osd flags like this: " General pre tasks Set flags Upgrade OSDs on a host Unset flags <-- this triggers pending scrub to start Set flags Upgrade OSDs on a hosts Unset flags <-- this triggers pending scrub to start . . . General post tasks " Now instead, we apply the flag once before starting the OSD update and unset them once the last OSD is finished. " General pre tasks Set flags and wait for any scrubs to finish Upgrade OSDs on a host Upgrade OSDs on a host . . . Unset flags General post tasks " Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1450754 Signed-off-by: Sébastien Han Co-Authored-by: Guillaume Abrioux --- diff --git a/infrastructure-playbooks/rolling_update.yml b/infrastructure-playbooks/rolling_update.yml index e54012f52..535c2201d 100644 --- a/infrastructure-playbooks/rolling_update.yml +++ b/infrastructure-playbooks/rolling_update.yml @@ -165,21 +165,6 @@ delegate_to: "{{ mon_host }}" when: containerized_deployment - -- name: upgrade ceph osds cluster - - vars: - health_osd_check_retries: 40 - health_osd_check_delay: 30 - upgrade_ceph_packages: True - - hosts: - - "{{ osd_group_name|default('osds') }}" - - serial: 1 - become: True - - pre_tasks: - name: set osd flags command: ceph osd set {{ item }} --cluster {{ cluster }} with_items: @@ -199,6 +184,21 @@ delegate_to: "{{ groups[mon_group_name][0] }}" when: containerized_deployment + +- name: upgrade ceph osds cluster + + vars: + health_osd_check_retries: 40 + health_osd_check_delay: 30 + upgrade_ceph_packages: True + + hosts: + - "{{ osd_group_name|default('osds') }}" + + serial: 1 + become: True + + pre_tasks: - name: get osd numbers shell: "if [ -d /var/lib/ceph/osd ] ; then ls /var/lib/ceph/osd | sed 's/.*-//' ; fi" register: osd_ids @@ -312,6 +312,18 @@ - containerized_deployment - container_num_pgs.stdout != "0" + +- name: unset osd flags + + hosts: + - "{{ mon_group_name|default('mons') }}" + + become: True + + roles: + - ceph-defaults + + tasks: - name: unset osd flags command: ceph osd unset {{ item }} --cluster {{ cluster }} with_items: