mirror of https://github.com/ceph/ceph-ansible.git
rolling_update: support multiple rgw instance
1ac94c048f
introduced the support of
multiple rgw instances on a single host but somehow has missed to
implement this feature in rolling_update.
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
pull/3522/head
parent
877979c787
commit
edfdc49488
|
@ -624,10 +624,11 @@
|
||||||
|
|
||||||
- name: restart containerized ceph rgw
|
- name: restart containerized ceph rgw
|
||||||
systemd:
|
systemd:
|
||||||
name: ceph-radosgw@rgw.{{ ansible_hostname }}
|
name: ceph-radosgw@rgw.{{ ansible_hostname }}.{{ item.instance_name }}
|
||||||
state: restarted
|
state: restarted
|
||||||
enabled: yes
|
enabled: yes
|
||||||
daemon_reload: yes
|
daemon_reload: yes
|
||||||
|
with_items: "{{ rgw_instances }}"
|
||||||
when:
|
when:
|
||||||
- containerized_deployment
|
- containerized_deployment
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue