mirror of https://github.com/ceph/ceph-ansible.git
update: move a set_fact
ceph-facts roles makes decisions based on the fact `rolling_update` so
it must be called before we run this role.
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2014304
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit e5edcc4214
)
pull/6999/head
parent
8f648269ec
commit
19dadc98da
|
@ -91,6 +91,10 @@
|
||||||
run_once: true
|
run_once: true
|
||||||
when: delegate_facts_host | bool
|
when: delegate_facts_host | bool
|
||||||
|
|
||||||
|
- name: set_fact rolling_update
|
||||||
|
set_fact:
|
||||||
|
rolling_update: true
|
||||||
|
|
||||||
- import_role:
|
- import_role:
|
||||||
name: ceph-facts
|
name: ceph-facts
|
||||||
|
|
||||||
|
@ -131,9 +135,6 @@
|
||||||
msg: "This version of ceph-ansible is intended for upgrading to Ceph Pacific only."
|
msg: "This version of ceph-ansible is intended for upgrading to Ceph Pacific only."
|
||||||
when: "'pacific' not in ceph_version.stdout.split()"
|
when: "'pacific' not in ceph_version.stdout.split()"
|
||||||
|
|
||||||
- name: set_fact rolling_update
|
|
||||||
set_fact:
|
|
||||||
rolling_update: true
|
|
||||||
|
|
||||||
- name: upgrade ceph mon cluster
|
- name: upgrade ceph mon cluster
|
||||||
tags: mons
|
tags: mons
|
||||||
|
|
Loading…
Reference in New Issue