]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
update: update the osd require-osd-release to squid
authorGuillaume Abrioux <gabrioux@ibm.com>
Tue, 13 Feb 2024 16:55:37 +0000 (17:55 +0100)
committerGuillaume Abrioux <gabrioux@ibm.com>
Wed, 14 Feb 2024 08:54:13 +0000 (09:54 +0100)
This updates the `osd require-osd-release` call with `squid`
instead of `reef`.

Signed-off-by: Guillaume Abrioux <gabrioux@ibm.com>
infrastructure-playbooks/rolling_update.yml

index b6e4c097da85aef9003915c32ee96ab39102e9f4..40fb29932728faa45dd0b8c8409a04b9bc863d54 100644 (file)
         tasks_from: container_binary.yml
 
     - name: container | disallow pre-reef OSDs and enable all new reef-only functionality
-      command: "{{ container_binary }} exec ceph-mon-{{ hostvars[groups[mon_group_name][0]]['ansible_facts']['hostname'] }} ceph --cluster {{ cluster }} osd require-osd-release reef"
+      command: "{{ container_binary }} exec ceph-mon-{{ hostvars[groups[mon_group_name][0]]['ansible_facts']['hostname'] }} ceph --cluster {{ cluster }} osd require-osd-release squid"
       delegate_to: "{{ groups[mon_group_name][0] }}"
       run_once: True
       when:
         - groups.get(mon_group_name, []) | length > 0
 
     - name: non container | disallow pre-reef OSDs and enable all new reef-only functionality
-      command: "ceph --cluster {{ cluster }} osd require-osd-release reef"
+      command: "ceph --cluster {{ cluster }} osd require-osd-release squid"
       delegate_to: "{{ groups[mon_group_name][0] }}"
       run_once: True
       when: