]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
validate: check for reef repository
authorGuillaume Abrioux <gabrioux@ibm.com>
Mon, 11 Mar 2024 18:48:36 +0000 (19:48 +0100)
committerGuillaume Abrioux <gabrioux@ibm.com>
Fri, 15 Mar 2024 23:51:52 +0000 (00:51 +0100)
stable-8.0 is reef so this must check the right value for ceph_stable_release

Signed-off-by: Guillaume Abrioux <gabrioux@ibm.com>
roles/ceph-validate/tasks/check_repository.yml

index 01067dc441514e7026b9ab5e0ecdf182f4891515..516ca81fb86afeaca3d4c6db8cf0413099c3a965 100644 (file)
@@ -12,8 +12,8 @@
 
 - name: Validate ceph_repository_community
   ansible.builtin.fail:
-    msg: "ceph_stable_release must be 'squid'"
+    msg: "ceph_stable_release must be 'reef'"
   when:
     - ceph_origin == 'repository'
     - ceph_repository == 'community'
-    - ceph_stable_release not in ['squid']
+    - ceph_stable_release not in ['reef']