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
|
become: true
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
|
- import_role:
|
||||||
|
name: ceph-defaults
|
||||||
|
|
||||||
|
- import_role:
|
||||||
|
name: ceph-facts
|
||||||
|
tasks_from: set_radosgw_address
|
||||||
|
|
||||||
- name: stop ceph rgws with systemd
|
- name: stop ceph rgws with systemd
|
||||||
service:
|
service:
|
||||||
name: ceph-radosgw@rgw.*
|
name: "ceph-radosgw@rgw.{{ ansible_hostname }}.{{ item.instance_name }}"
|
||||||
state: stopped
|
state: stopped
|
||||||
enabled: no
|
enabled: no
|
||||||
failed_when: false
|
failed_when: false
|
||||||
|
with_items: "{{ rgw_instances }}"
|
||||||
|
|
||||||
|
|
||||||
- name: purge ceph rbd-mirror cluster
|
- name: purge ceph rbd-mirror cluster
|
||||||
|
|
|
@ -193,13 +193,20 @@
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
|
- import_role:
|
||||||
|
name: ceph-defaults
|
||||||
|
|
||||||
|
- import_role:
|
||||||
|
name: ceph-facts
|
||||||
|
tasks_from: set_radosgw_address
|
||||||
|
|
||||||
- name: disable ceph rgw service
|
- name: disable ceph rgw service
|
||||||
service:
|
service:
|
||||||
name: "ceph-radosgw@*"
|
name: "ceph-radosgw@rgw.{{ ansible_hostname }}.{{ item.instance_name }}"
|
||||||
state: stopped
|
state: stopped
|
||||||
enabled: no
|
enabled: no
|
||||||
ignore_errors: true
|
failed_when: false
|
||||||
|
with_items: "{{ rgw_instances }}"
|
||||||
|
|
||||||
- name: remove ceph rgw service
|
- name: remove ceph rgw service
|
||||||
file:
|
file:
|
||||||
|
|
|
@ -273,12 +273,6 @@
|
||||||
import_tasks: set_radosgw_address.yml
|
import_tasks: set_radosgw_address.yml
|
||||||
when: inventory_hostname in groups.get(rgw_group_name, [])
|
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
|
- name: set_fact use_new_ceph_iscsi package or old ceph-iscsi-config/cli
|
||||||
set_fact:
|
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) }}"
|
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:
|
set_fact:
|
||||||
_radosgw_address: "{{ hostvars[inventory_hostname][_interface][ip_version][0]['address'] }}"
|
_radosgw_address: "{{ hostvars[inventory_hostname][_interface][ip_version][0]['address'] }}"
|
||||||
when: ip_version == 'ipv6'
|
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
|
- name: restart rgw
|
||||||
service:
|
service:
|
||||||
name: ceph-radosgw@*
|
name: "ceph-radosgw@rgw.{{ ansible_hostname }}.{{ item.instance_name }}"
|
||||||
state: restarted
|
state: restarted
|
||||||
|
with_items: "{{ rgw_instances }}"
|
||||||
|
|
Loading…
Reference in New Issue