rolling_update: fix mon+rgw/multisite collocation

When monitors and rgw are collocated with multisite enabled, the
rolling_update playbook fails because during the workflow, we run some
radosgw-admin commands very early on the first mon even though this is
the monitor being upgraded, it means the container doesn't exist since
it was stopped.

This block is relevant only for scaling out rgw daemons or initial
deployment. In rolling_update workflow, it is not needed so let's skip
it.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1970232

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit f7166cccbf)
pull/6588/head
Guillaume Abrioux 2021-06-10 20:09:55 +02:00
parent 17f9780274
commit 9b57f33e78
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@
- name: rgw multi-instances related tasks - name: rgw multi-instances related tasks
when: when:
- not docker2podman | default(false) | bool - not docker2podman | default(false) | bool
- not rolling_update | default(false) | bool
- inventory_hostname in groups.get(rgw_group_name, []) - inventory_hostname in groups.get(rgw_group_name, [])
- handler_rgw_status | bool - handler_rgw_status | bool
block: block: