mirror of https://github.com/ceph/ceph-ansible.git
purge: stop rgw instances by iteration
It looks like that the service module doesn't support wildcard anymore
for stopping/disabling multiple services.
fatal: [rgw0]: FAILED! => changed=false
msg: 'This module does not currently support using glob patterns,
found ''*'' in service name: ceph-radosgw@*'
...ignoring
Instead we should iterate over the rgw_instances list.
Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
(cherry picked from commit 9d3b49293d
)
pull/5113/head
parent
eb2fba79fc
commit
e037e99bd2
|
@ -296,13 +296,20 @@
|
|||
become: true
|
||||
|
||||
tasks:
|
||||
- import_role:
|
||||
name: ceph-defaults
|
||||
|
||||
- import_role:
|
||||
name: ceph-facts
|
||||
tasks_from: set_radosgw_address
|
||||
|
||||
- name: stop ceph rgws with systemd
|
||||
service:
|
||||
name: ceph-radosgw@rgw.*
|
||||
name: "ceph-radosgw@rgw.{{ ansible_hostname }}.{{ item.instance_name }}"
|
||||
state: stopped
|
||||
enabled: no
|
||||
failed_when: false
|
||||
with_items: "{{ rgw_instances }}"
|
||||
|
||||
|
||||
- name: purge ceph rbd-mirror cluster
|
||||
|
|
|
@ -193,13 +193,20 @@
|
|||
become: true
|
||||
|
||||
tasks:
|
||||
- import_role:
|
||||
name: ceph-defaults
|
||||
|
||||
- import_role:
|
||||
name: ceph-facts
|
||||
tasks_from: set_radosgw_address
|
||||
|
||||
- name: disable ceph rgw service
|
||||
service:
|
||||
name: "ceph-radosgw@*"
|
||||
name: "ceph-radosgw@rgw.{{ ansible_hostname }}.{{ item.instance_name }}"
|
||||
state: stopped
|
||||
enabled: no
|
||||
ignore_errors: true
|
||||
failed_when: false
|
||||
with_items: "{{ rgw_instances }}"
|
||||
|
||||
- name: remove ceph rgw service
|
||||
file:
|
||||
|
|
|
@ -331,12 +331,6 @@
|
|||
import_tasks: set_radosgw_address.yml
|
||||
when: inventory_hostname in groups.get(rgw_group_name, [])
|
||||
|
||||
- name: set_fact rgw_instances
|
||||
set_fact:
|
||||
rgw_instances: "{{ rgw_instances|default([]) | union([{'instance_name': 'rgw' + item|string, 'radosgw_address': _radosgw_address, 'radosgw_frontend_port': radosgw_frontend_port|int + item|int}]) }}"
|
||||
with_sequence: start=0 end={{ radosgw_num_instances|int - 1 }}
|
||||
when: inventory_hostname in groups.get(rgw_group_name, [])
|
||||
|
||||
- name: set ntp service name depending on OS family
|
||||
block:
|
||||
- name: set ntp service name for Debian family
|
||||
|
|
|
@ -41,3 +41,8 @@
|
|||
set_fact:
|
||||
_radosgw_address: "{{ hostvars[inventory_hostname][_interface][ip_version][0]['address'] }}"
|
||||
when: ip_version == 'ipv6'
|
||||
|
||||
- name: set_fact rgw_instances
|
||||
set_fact:
|
||||
rgw_instances: "{{ rgw_instances|default([]) | union([{'instance_name': 'rgw' + item|string, 'radosgw_address': _radosgw_address, 'radosgw_frontend_port': radosgw_frontend_port|int + item|int}]) }}"
|
||||
with_sequence: start=0 end={{ radosgw_num_instances|int - 1 }}
|
||||
|
|
|
@ -6,5 +6,6 @@
|
|||
|
||||
- name: restart rgw
|
||||
service:
|
||||
name: ceph-radosgw@*
|
||||
name: "ceph-radosgw@rgw.{{ ansible_hostname }}.{{ item.instance_name }}"
|
||||
state: restarted
|
||||
with_items: "{{ rgw_instances }}"
|
||||
|
|
Loading…
Reference in New Issue