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>pull/3389/head
parent
741ef74629
commit
ebc901c6af
|
@ -4,6 +4,7 @@
|
||||||
src: "{{ item.0 }}"
|
src: "{{ item.0 }}"
|
||||||
dest: "{{ fetch_directory }}/{{ fsid }}/{{ item.0 }}"
|
dest: "{{ fetch_directory }}/{{ fsid }}/{{ item.0 }}"
|
||||||
flat: yes
|
flat: yes
|
||||||
|
fail_on_missing: "{{ 'no' if rolling_update else 'yes' }}"
|
||||||
with_together:
|
with_together:
|
||||||
- "{{ ceph_config_keys }}"
|
- "{{ ceph_config_keys }}"
|
||||||
- "{{ statconfig.results }}"
|
- "{{ statconfig.results }}"
|
||||||
|
|
Loading…
Reference in New Issue