From 980a0dd00e6b5fb17913a22d9d55a3d304ab99b7 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 10 Feb 2021 15:56:15 +0100 Subject: [PATCH] rolling_update: update specific pacific task update the 'require-osd-release' task. Signed-off-by: Guillaume Abrioux --- infrastructure-playbooks/rolling_update.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure-playbooks/rolling_update.yml b/infrastructure-playbooks/rolling_update.yml index 76b80f590..96440f0f9 100644 --- a/infrastructure-playbooks/rolling_update.yml +++ b/infrastructure-playbooks/rolling_update.yml @@ -880,16 +880,16 @@ name: ceph-facts tasks_from: container_binary.yml - - name: container | disallow pre-quincy OSDs and enable all new quincy-only functionality - command: "{{ container_binary }} exec ceph-mon-{{ hostvars[groups[mon_group_name][0]]['ansible_hostname'] }} ceph --cluster {{ cluster }} osd require-osd-release quincy" + - name: container | disallow pre-pacific OSDs and enable all new pacific-only functionality + command: "{{ container_binary }} exec ceph-mon-{{ hostvars[groups[mon_group_name][0]]['ansible_hostname'] }} ceph --cluster {{ cluster }} osd require-osd-release pacific" delegate_to: "{{ groups[mon_group_name][0] }}" run_once: True when: - containerized_deployment | bool - groups.get(mon_group_name, []) | length > 0 - - name: non container | disallow pre-quincy OSDs and enable all new quincy-only functionality - command: "ceph --cluster {{ cluster }} osd require-osd-release quincy" + - name: non container | disallow pre-pacific OSDs and enable all new pacific-only functionality + command: "ceph --cluster {{ cluster }} osd require-osd-release pacific" delegate_to: "{{ groups[mon_group_name][0] }}" run_once: True when: -- 2.39.5