mirror of https://github.com/ceph/ceph-ansible.git
rolling_update: do not fail on missing keys
We don't want to fail on key that are not present since they will get
created after the mons are updated. They will be created by the task
"create potentially missing keys (rbd and rbd-mirror)".
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1650572
Signed-off-by: Sébastien Han <seb@redhat.com>
(cherry picked from commit ebc901c6af
)
pull/3411/head
v3.2.0rc7
parent
e8b10f47dc
commit
729744c6a8
|
@ -4,6 +4,7 @@
|
|||
src: "{{ item.0 }}"
|
||||
dest: "{{ fetch_directory }}/{{ fsid }}/{{ item.0 }}"
|
||||
flat: yes
|
||||
fail_on_missing: "{{ 'no' if rolling_update else 'yes' }}"
|
||||
with_together:
|
||||
- "{{ ceph_config_keys }}"
|
||||
- "{{ statconfig.results }}"
|
||||
|
|
Loading…
Reference in New Issue