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>pull/5116/head
parent
90b1fc8fe9
commit
9d3b49293d
|
@ -296,13 +296,20 @@
|
|||
become: true
|
||||
|
||||
tasks:
|
||||
- import_role:
|
||||
name: ceph-defaults
|
||||
|
||||
- name: stop ceph rgws with systemd
|
||||
service:
|
||||
name: ceph-radosgw@rgw.*
|
||||
state: stopped
|
||||
enabled: no
|
||||
failed_when: false
|
||||
- import_role:
|
||||
name: ceph-facts
|
||||
tasks_from: set_radosgw_address
|
||||
|
||||
- name: stop ceph rgws with systemd
|
||||
service:
|
||||
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,18 +193,25 @@
|
|||
become: true
|
||||
|
||||
tasks:
|
||||
- import_role:
|
||||
name: ceph-defaults
|
||||
|
||||
- name: disable ceph rgw service
|
||||
service:
|
||||
name: "ceph-radosgw@*"
|
||||
state: stopped
|
||||
enabled: no
|
||||
ignore_errors: true
|
||||
- import_role:
|
||||
name: ceph-facts
|
||||
tasks_from: set_radosgw_address
|
||||
|
||||
- name: remove ceph rgw service
|
||||
file:
|
||||
path: /etc/systemd/system/ceph-radosgw@.service
|
||||
state: absent
|
||||
- name: disable ceph rgw service
|
||||
service:
|
||||
name: "ceph-radosgw@rgw.{{ ansible_hostname }}.{{ item.instance_name }}"
|
||||
state: stopped
|
||||
enabled: no
|
||||
failed_when: false
|
||||
with_items: "{{ rgw_instances }}"
|
||||
|
||||
- name: remove ceph rgw service
|
||||
file:
|
||||
path: /etc/systemd/system/ceph-radosgw@.service
|
||||
state: absent
|
||||
|
||||
|
||||
- name: purge ceph rbd-mirror cluster
|
||||
|
|
|
@ -273,12 +273,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_fact use_new_ceph_iscsi package or old ceph-iscsi-config/cli
|
||||
set_fact:
|
||||
use_new_ceph_iscsi: "{{ (gateway_ip_list == '0.0.0.0' and gateway_iqn | length == 0 and client_connections | length == 0 and rbd_devices | length == 0) | bool | ternary(true, false) }}"
|
||||
|
|
|
@ -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